6e1dd3f820
Co-authored-by: clayton craft <clayton@craftyguy.net>
11 lines
296 B
Text
11 lines
296 B
Text
#!/usr/sbin/nft -f
|
|
|
|
table inet filter {
|
|
chain input {
|
|
# drop VNC from wwan
|
|
iifname "wwan*" tcp dport 5900 drop comment "drop VNC from wwan"
|
|
|
|
# allow vnc
|
|
tcp dport 5900 accept comment "accept VNC"
|
|
}
|
|
}
|