summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/dumps/0003rollback_jump_0.nft
blob: f6f2615852c7aec5834609e90da2ad243b8a1c5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
table ip t {
	set t {
		type ipv4_addr
		elements = { 1.1.1.1 }
	}

	chain c {
		ct state new
		tcp dport { 22222 }
		ip saddr @t drop
		jump other
	}

	chain other {
	}
}