8 lines
114 B
Text
8 lines
114 B
Text
|
#!/usr/sbin/nft -f
|
||
|
|
||
|
table inet filter {
|
||
|
chain input {
|
||
|
udp sport 5353 accept comment "accept mDNS replies"
|
||
|
}
|
||
|
}
|