11 lines
234 B
Text
11 lines
234 B
Text
|
|
#!/usr/sbin/nft -f
|
||
|
|
|
||
|
|
table inet filter {
|
||
|
|
chain input {
|
||
|
|
|
||
|
|
# drop all incoming connections on wwan
|
||
|
|
iifname "wwan*" drop comment "drop all connections on wwan"
|
||
|
|
iifname "qmapmux*" drop comment "drop all connections on qmapmux"
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|