Displaying 1 result from an estimated 1 matches for "arptest".
Did you mean:
aaptest
2017 Jun 05
3
[Bug 1155] New: arp forward filter doesn't work
...o,
I tried to use nftables arp table on forward hook but it doesn't work.
The wiki says arp hooks are input and output but nft doesn't fail when
I add it.
https://wiki.nftables.org/wiki-nftables/index.php/Quick_reference-nftables_in_10_minutes#Chains
Add the table on host1 :
```
table arp arptest {
chain input {
type filter hook input priority 0; policy accept;
counter log prefix "INPUT FILTER ARP: "
}
chain forward {
type filter hook forward priority 0; policy accept;
counter log prefix "FORWARD FILTER ARP: "
}
chain output {
type filter ho...