diff options
author | Florian Westphal <fw@strlen.de> | 2017-08-08 11:02:34 +0200 |
---|---|---|
committer | Florian Westphal <fw@strlen.de> | 2017-08-08 15:37:11 +0200 |
commit | d4227cd205308293ca291d94e7e83069aaf15733 (patch) | |
tree | 841e49342374777bc704185736ece412152cf444 /tests/py/arp | |
parent | 67cc041bd34ac7a3b3f6a3e7e811cf33ca757226 (diff) |
tests: fix arp chain test
The forward chain isn't supported anymore (on kernel side it only worked
if bridge netfilter 'call-arptables' sysctl is on), so this test now fails
with nf-next kernel.
In nftables one can filter/test arp packets in bridge family directly.
Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'tests/py/arp')
-rw-r--r-- | tests/py/arp/chains.t | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/py/arp/chains.t b/tests/py/arp/chains.t index 59647f7f..1ea39f75 100644 --- a/tests/py/arp/chains.t +++ b/tests/py/arp/chains.t @@ -1,6 +1,5 @@ -# filter chains available are: input, output, forward +# filter chains available are: input, output :input;type filter hook input priority 0 -:forward;type filter hook forward priority 0 :output;type filter hook output priority 0 -*arp;test-arp;input,forward,output +*arp;test-arp;input,output |