summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/dumps/0002rollback_rule_0.nft
blob: 3fad909057d2396edcb4ba7b7c0e5afafd4c3ad1 (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, 33333 }
		ip saddr @t drop
		jump other
	}

	chain other {
	}
}