1
0
Fork 0

update `nftables.conf` config

urosm 2024-06-12 00:47:39 +02:00
parent 929109f1c1
commit 6dff24874f
1 changed files with 11 additions and 9 deletions

View File

@ -3,13 +3,15 @@
flush ruleset flush ruleset
table inet filter { table inet filter {
chain input { chain input {
type filter hook input priority filter; policy drop; type filter hook input priority filter; policy drop;
# accept any localhost traffic
iif lo accept iif lo accept comment "Accept localhost traffic"
# accept traffic originated from us ct state invalid drop comment "Drop invalid connections"
ct state established,related accept ct state established,related accept comment "Accept established and related connections"
# accept neighbour discovery otherwise connectivity breaks meta l4proto { icmp, ipv6-icmp } accept comment "Accept ICMP/ICMPv6 traffic"
icmpv6 type { nd-neighbor-solicit, nd-router-advert, nd-neighbor-advert } accept ip protocol igmp accept comment "Accept IGMP traffic"
}
udp dport mdns accept comment "Accept mDNS"
}
} }