summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0042chain_variable_0.nft
blob: 12931aadb39fa197fb0695987747e8718fb9b638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
table netdev filter1 {
	chain Main_Ingress1 {
		type filter hook ingress device "lo" priority -500; policy accept;
	}
}
table netdev filter2 {
	chain Main_Ingress2 {
		type filter hook ingress devices = { dummy0, lo } priority -500; policy accept;
	}
}
table netdev filter3 {
	chain Main_Ingress3 {
		type filter hook ingress devices = { dummy0, lo } priority -500; policy accept;
	}
}