summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0019masquerade_jump_1.nft
blob: 81cf9cc79ecdf17fc24b1edccec8604e958af710 (plain)
1
2
3
4
5
6
7
8
9
table ip t {
	chain input {
		type filter hook input priority filter + 4; policy accept;
		ip saddr vmap { 1.1.1.1 : jump c1 }
	}

	chain c1 {
	}
}