12 lines
241 B
Text
12 lines
241 B
Text
|
#!/usr/sbin/nft -f
|
||
|
|
||
|
table inet filter {
|
||
|
chain input {
|
||
|
|
||
|
# allow DNS from wlan*
|
||
|
iifname "wlan*" tcp dport 53 accept comment "Accept DNS over TCP on wlan*"
|
||
|
iifname "wlan*" udp dport 53 accept comment "Accept DNS over UDP on wlan*"
|
||
|
|
||
|
}
|
||
|
}
|