summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/comments/dumps/comments_0.nft
blob: 82ae510bddb3f5794d21a03e9b8d52f74ad35313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
table inet x {
	set y {
		type ipv4_addr
		elements = { 2.2.2.2, 3.3.3.3 }
	}

	chain y {
		icmpv6 type { destination-unreachable, packet-too-big } accept
		icmp type { 1, 2 } accept
		tcp dport { 21, 2121 } counter packets 0 bytes 0 accept
	}
}