pmaports/main/postmarketos-config-nftables/rules/50_vncserver.nft
Raymond Hackley db00e85baf
main/postmarketos-config-nftables: 50_*.nft: drop unused wwan rules (MR 3594)
There is "iifname "wwan*" drop" defined in 01_wwan.nft, which drops
any not "established, related" incoming packet from WWAN.

[ci:skip-build]: already built successfully in CI
2022-11-03 07:48:33 +01:00

7 lines
105 B
Text

#!/usr/sbin/nft -f
table inet filter {
chain input {
tcp dport 5900 accept comment "accept VNC"
}
}