[PC-BSD Commits] r8217 - pcbsd/current/system-overlay/usr/local/share/pcbsd/scripts
svn at pcbsd.org
svn at pcbsd.org
Tue Dec 14 12:34:45 PST 2010
Author: kris
Date: 2010-12-14 12:34:45 -0800 (Tue, 14 Dec 2010)
New Revision: 8217
Modified:
pcbsd/current/system-overlay/usr/local/share/pcbsd/scripts/reset-firewall
Log:
Added port 5353 to opened for avahi / zeroconf
Modified: pcbsd/current/system-overlay/usr/local/share/pcbsd/scripts/reset-firewall
===================================================================
--- pcbsd/current/system-overlay/usr/local/share/pcbsd/scripts/reset-firewall 2010-12-14 19:16:59 UTC (rev 8216)
+++ pcbsd/current/system-overlay/usr/local/share/pcbsd/scripts/reset-firewall 2010-12-14 20:34:45 UTC (rev 8217)
@@ -48,6 +48,7 @@
echo "pass in on $inf proto udp from any to ($inf) port 1110 keep state" >> $pf_rules
echo "pass in on $inf proto udp from any to ($inf) port 2049 keep state" >> $pf_rules
echo "pass in on $inf proto udp from any to ($inf) port 4045 keep state" >> $pf_rules
+ echo "pass in on $inf proto udp from any to ($inf) port 5353 keep state" >> $pf_rules
# Setup the default TCP entries
echo "pass in on $inf proto tcp from any to ($inf) port 445 keep state" >> $pf_rules
@@ -56,6 +57,7 @@
echo "pass in on $inf proto tcp from any to ($inf) port 111 keep state" >> $pf_rules
echo "pass in on $inf proto tcp from any to ($inf) port 1110 keep state" >> $pf_rules
echo "pass in on $inf proto tcp from any to ($inf) port 4045 keep state" >> $pf_rules
+ echo "pass in on $inf proto tcp from any to ($inf) port 5353 keep state" >> $pf_rules
# Check if there are any extra ports to open and do so
if [ ! -z "$@" ]
More information about the Commits
mailing list