Adjust the DHCP6 client firewall rules

This commit is contained in:
smos 2012-04-02 12:58:29 +02:00
parent e53ffe8d44
commit dbcddabcdf

View File

@ -2491,7 +2491,8 @@ EOD;
$ipfrules .= <<<EOD
# allow our DHCPv6 client out to the {$oc['descr']}
pass in on \${$oc['descr']} proto udp from any port = 547 to any port = 546 label "allow dhcpv6 client out {$oc['descr']}"
pass in on \${$oc['descr']} proto udp from fe80::/10 port = 546 to fe80::/10 port = 546 label "allow dhcpv6 client in {$oc['descr']}"
pass in on \${$oc['descr']} proto udp from any port = 547 to any port = 546 label "allow dhcpv6 client in {$oc['descr']}"
pass out on \${$oc['descr']} proto udp from any port = 546 to any port = 547 label "allow dhcpv6 client out {$oc['descr']}"
EOD;