pmaports/main/postmarketos-config-nftables/rules/50_ssh.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

8 lines
117 B
Text

#!/usr/sbin/nft -f
table inet filter {
chain input {
# allow ssh
tcp dport 22 accept comment "accept SSH"
}
}