summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0009masquerade_jump_1.nft
blob: 4991071159efc61703aca348a143da74c70bd43d (plain)
1
2
3
4
5
6
7
8
9
table ip t {
	chain output {
		type nat hook output priority filter; policy accept;
	}

	chain c1 {
		masquerade
	}
}