7 # Author: Max Kellermann <max@duempel.org>
10 domain ip6 table filter {
15 mod state state INVALID DROP;
16 mod state state (ESTABLISHED RELATED) ACCEPT;
18 # allow local connections
21 # allow ICMP (for neighbor solicitation, like ARP for IPv4)
22 proto ipv6-icmp ACCEPT;
24 # allow SSH connections
25 proto tcp dport ssh ACCEPT;
27 # ident connections are also allowed
28 proto tcp dport auth ACCEPT;
30 # the rest is dropped by the above policy
33 # outgoing connections are not limited
34 chain OUTPUT policy ACCEPT;
36 # this is not a router
37 chain FORWARD policy DROP;