[PC-BSD Commits] r5565 - in pcbsd/trunk/system-overlay: etc usr/PCBSD/Scripts
svn at pcbsd.org
svn at pcbsd.org
Fri Dec 11 11:16:59 PST 2009
Author: kris
Date: 2009-12-11 11:16:59 -0800 (Fri, 11 Dec 2009)
New Revision: 5565
Modified:
pcbsd/trunk/system-overlay/etc/rc.conf
pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/reset-firewall
Log:
Enabled ipv6 support in PC-BSD and pf
Modified: pcbsd/trunk/system-overlay/etc/rc.conf
===================================================================
--- pcbsd/trunk/system-overlay/etc/rc.conf 2009-12-11 17:13:07 UTC (rev 5564)
+++ pcbsd/trunk/system-overlay/etc/rc.conf 2009-12-11 19:16:59 UTC (rev 5565)
@@ -74,9 +74,12 @@
# Run the port jail
portjail_enable="YES"
+
+# Added for sound support in the portjail, access to /dev/random, /dev/null, etc.
jail_pcbsd_devfs_enable="YES"
-# Added for sound support in the portjail, access to /dev/random, /dev/null, etc.
# Start the swapmonitor
swapmonitor_enable="YES"
+# Enable IPV6 support
+ipv6_enable="YES"
Modified: pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/reset-firewall
===================================================================
--- pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/reset-firewall 2009-12-11 17:13:07 UTC (rev 5564)
+++ pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/reset-firewall 2009-12-11 19:16:59 UTC (rev 5565)
@@ -24,6 +24,7 @@
echo "pass out keep state" >> $pf_rules
echo 'table <blacklist> persist file "/etc/blacklist"' >> $pf_rules
echo "pass inet proto icmp from any to any" >> $pf_rules
+echo "pass inet6 proto icmp6 from any to any" >> $pf_rules
#############################################################
# Ports from 49152 to 65535 is needed for SMB and other connectivity
echo "pass in proto {tcp,udp} from any to any port 49152:65535 keep state" >> $pf_rules
More information about the Commits
mailing list