mirror of
https://github.com/webmin/webmin.git
synced 2026-05-06 15:20:29 +01:00
Import https://github.com/swelljoe/nftables into the Webmin tree under nftables/ while preserving upstream history.
9 lines
236 B
Plaintext
9 lines
236 B
Plaintext
table inet filter {
|
|
chain input {
|
|
type filter hook input priority 0; policy drop;
|
|
iif "lo" accept
|
|
ip saddr 192.168.1.0/24 tcp dport 22 accept comment "ssh"
|
|
ct state established,related accept
|
|
}
|
|
}
|