diff options
author | Seth Mos <seth.mos@dds.nl> | 2011-03-14 19:24:39 +0100 |
---|---|---|
committer | Seth Mos <seth.mos@dds.nl> | 2011-03-14 19:24:39 +0100 |
commit | a3f1fa81b30c8622391fdbb705241553e77aef9d (patch) | |
tree | 8416b2c76c7d9cf7d0ef1686672942d309dd75a1 /etc | |
parent | a41c5253e367dd0c8d215ff2098dd52b31a15fee (diff) | |
download | pfsense-a3f1fa81b30c8622391fdbb705241553e77aef9d.zip pfsense-a3f1fa81b30c8622391fdbb705241553e77aef9d.tar.gz |
Allow port 547 to the filter rules for DHCP to work
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/filter.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 3364665..7f5775a 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -2313,6 +2313,7 @@ EOD; anchor "dhcpv6server{$oc['descr']}" # We need inet6 icmp for stateless autoconfig and dhcpv6 pass in on \${$oc['descr']} inet6 proto udp from fe80::/10 to ff02::/16 port = 546 label "allow access to DHCPv6 server" +pass in on \${$oc['descr']} inet6 proto udp from fe80::/10 to ff02::/16 port = 547 label "allow access to DHCPv6 server" pass in on \${$oc['descr']} inet6 proto udp from fe80::/10 to {$oc['ipv6']} port = 546 label "allow access to DHCPv6 server" pass out on \${$oc['descr']} inet6 proto udp from {$oc['ipv6']} port = 547 to fe80::/10 label "allow access to DHCPv6 server" |