Created
March 20, 2013 08:58
-
-
Save jmccrohan/5203264 to your computer and use it in GitHub Desktop.
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
# Flush existing entries | |
ip6tables -F | |
# Allow ICMPv6 everywhere | |
ip6tables -A INPUT -p icmpv6 -j ACCEPT | |
ip6tables -I OUTPUT -p icmpv6 -j ACCEPT | |
ip6tables -I FORWARD -p icmpv6 -j ACCEPT | |
# Allow anything on the local loopback link | |
ip6tables -A INPUT -i lo -j ACCEPT | |
ip6tables -A OUTPUT -o lo -j ACCEPT | |
# Allow anything out on the internet | |
ip6tables -A OUTPUT -o br-lan -j ACCEPT | |
# Allow the localnet access us: | |
ip6tables -A INPUT -i br-lan -j ACCEPT | |
ip6tables -A OUTPUT -o br-lan -j ACCEPT | |
# Filter all packets that have RH0 headers: | |
ip6tables -A INPUT -m rt --rt-type 0 -j DROP | |
ip6tables -A FORWARD -m rt --rt-type 0 -j DROP | |
ip6tables -A OUTPUT -m rt --rt-type 0 -j DROP | |
# Allow Link-Local addresses | |
ip6tables -A INPUT -s fe80::/10 -j ACCEPT | |
ip6tables -A OUTPUT -s fe80::/10 -j ACCEPT | |
# Allow multicast | |
ip6tables -A INPUT -s ff00::/8 -j ACCEPT | |
ip6tables -A OUTPUT -s ff00::/8 -j ACCEPT | |
# Allow forwarding | |
ip6tables -A FORWARD -i br-lan -j ACCEPT | |
ip6tables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT | |
# Set the default policy | |
ip6tables -P INPUT DROP | |
ip6tables -P FORWARD DROP | |
ip6tables -P OUTPUT DROP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment