Date: Sat, 9 Jan 2010 19:16:27 +0000 (UTC) From: Hajimu UMEMOTO <ume@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r201930 - head/etc Message-ID: <201001091916.o09JGRwd091325@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ume Date: Sat Jan 9 19:16:27 2010 New Revision: 201930 URL: http://svn.freebsd.org/changeset/base/201930 Log: The client type rule allows DHCP, implicitly. Since DHCPv6 uses link-local address unlike with DHCP, we need one more rule to allow the DHCPv6. Reported by: David Horn <dhorn2000__at__gmail.com> Modified: head/etc/rc.firewall Modified: head/etc/rc.firewall ============================================================================== --- head/etc/rc.firewall Sat Jan 9 19:13:56 2010 (r201929) +++ head/etc/rc.firewall Sat Jan 9 19:16:27 2010 (r201930) @@ -220,6 +220,8 @@ case ${firewall_type} in # Allow any link-local multicast traffic ${fwcmd} add pass all from fe80::/10 to ff02::/16 ${fwcmd} add pass all from ${net6} to ff02::/16 + # Allow DHCPv6 + ${fwcmd} add pass udp from fe80::/10 to me6 546 fi # Allow TCP through if setup succeeded
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001091916.o09JGRwd091325>