summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0041chain_binding_0.nft
blob: 520203d89ca154bacf4583087b0521940894f4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
table inet x {
	chain y {
		type filter hook input priority filter; policy accept;
		meta l4proto { tcp, udp } th dport 53 jump {
			ip saddr { 127.0.0.0/8, 172.23.0.0/16, 192.168.13.0/24 } counter packets 0 bytes 0 accept
			ip6 saddr ::1 counter packets 0 bytes 0 accept
		}
		meta l4proto ipv6-icmp jump {
			counter packets 0 bytes 0 accept
		}
	}
}