2022-10-13 09:07:50 +00:00
|
|
|
#!/usr/sbin/nft -f
|
|
|
|
|
|
|
|
table inet filter {
|
2022-10-13 20:08:54 +00:00
|
|
|
chain input {
|
|
|
|
iifname "wwan*" udp sport 1900 drop comment "drop SSDP/UPnP replies from wwan"
|
|
|
|
udp sport 1900 accept comment "accept SSDP/UPnP replies"
|
|
|
|
}
|
2022-10-13 09:07:50 +00:00
|
|
|
}
|