summaryrefslogtreecommitdiffstats
path: root/files/examples/netdev-ingress.nft
blob: 2585d15493885b9a02933618f90b5a58002e42e1 (plain)
1
2
3
4
5
6
7
#!/usr/sbin/nft -f

# mind the NIC, it must exists
table netdev filter {
        chain loinput { type filter hook ingress device lo priority 0; }
}