Last active
April 12, 2016 17:15
-
-
Save oko/ba552a0612a60a03f45f to your computer and use it in GitHub Desktop.
ip6tables basic ruleset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*filter | |
:INPUT DROP [0:0] | |
:FORWARD DROP [0:0] | |
:OUTPUT ACCEPT [33:2996] | |
:ICMP - [0:0] | |
:TCP - [0:0] | |
:UDP - [0:0] | |
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT | |
-A INPUT -i lo -j ACCEPT | |
-A INPUT -p icmpv6 -j ICMP | |
-A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -m conntrack --ctstate NEW -j TCP | |
-A INPUT -p udp -m conntrack --ctstate NEW -j UDP | |
-A TCP -p tcp -m tcp --dport 80 -j ACCEPT | |
-A TCP -p tcp -m tcp --dport 443 -j ACCEPT | |
# ICMPv6 per RFC 4890 | |
# - Available --icmpv6-type arguments via `ip6tables -p ipv6-icmp -h` | |
### ICMP6 Error | |
-A ICMP -p icmpv6 --icmpv6-type destination-unreachable -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type packet-too-big -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type time-exceeded -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type parameter-problem -j ACCEPT | |
## ICMP6 Echo | |
-A ICMP -p icmpv6 --icmpv6-type echo-request -m limit --limit 900/sec -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type echo-reply -m limit --limit 900/sec -j ACCEPT | |
## Other ICMPv6 | |
-A ICMP -p icmpv6 --icmpv6-type router-advertisement -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type neighbor-solicitation -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type neighbor-advertisement -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type redirect -m hl --hl-eq 255 -j ACCEPT | |
## Link-Local Multicast | |
-A ICMP -p icmpv6 --icmpv6-type 130 -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type 131 -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type 132 -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type 143 -m hl --hl-eq 255 -j ACCEPT | |
## SEND Cert Path Notification | |
-A ICMP -p icmpv6 --icmpv6-type 141 -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type 142 -m hl --hl-eq 255 -j ACCEPT | |
## Multicast Router Discovery | |
-A ICMP -p icmpv6 --icmpv6-type 151 -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type 152 -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -p icmpv6 --icmpv6-type 153 -m hl --hl-eq 255 -j ACCEPT | |
-A ICMP -j DROP | |
-A TCP -j REJECT --reject-with icmp6-port-unreachable | |
-A UDP -j REJECT --reject-with icmp6-port-unreachable | |
COMMIT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment