blob: 1780abb16e39a9da3e29390d48eb4f785348acea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
table ip filter {
chain input {
# Drop all traffic by default.
type filter hook input priority 0; policy drop;
# Allow traffic from established connections.
ct state vmap { established: accept, related: accept, invalid: drop }
# Allow loopback traffic.
iifname lo accept
# Allow 8080 for occasional darkhttpd use.
tcp dport 8080 accept
# Allow 30000 for luanti.
udp dport 30000 accept
}
}
|