Adding rules for DHCPv6.

This commit is contained in:
Benoît S. 2013-12-13 11:22:27 +01:00
parent 8ed3c722ce
commit ce1d628516
1 changed files with 4 additions and 0 deletions

View File

@ -87,6 +87,10 @@ NTPOK='0.0.0.0/0'
/sbin/ip6tables -A OUTPUT -o $INT -p udp --dport 123 --match state --state NEW -j ACCEPT
/sbin/ip6tables -A OUTPUT -o $INT -p udp --dport 33434:33523 --match state --state NEW -j ACCEPT
# Allow DHCPv6
/sbin/ip6tables -t filter -A INPUT -i $INT -p udp --dport 546 -d fe80::/64 -j ACCEPT
/sbin/ip6tables -t filter -A OUTPUT -o $INT -p udp --dport 547 -j ACCEPT
################### IPv4 Specific rules
# /sbin/iptables ...