a2820d9c79
mDNS queries and replies are sent to port 5353. Update firewall rule in order to make it as tight as possible. [ci:skip-build]: already built successfully in CI
7 lines
138 B
Text
7 lines
138 B
Text
#!/usr/sbin/nft -f
|
|
|
|
table inet filter {
|
|
chain input {
|
|
udp sport mdns udp dport mdns accept comment "accept incoming mDNS traffic"
|
|
}
|
|
}
|