#Put any fixed rules you wish here.  Example:

#if [ -f /proc/net/ip_fwchains ]; then
#	#Place the ipchains versions of your rules here
#	/sbin/ipchains -A forward -s 172.16.0.0/24 -j MASQ		#Masquerade from internal lan out
#elif [ -f /proc/net/ip_input ]; then
#	#Place the ipfwadm versions of your rules here.
#	/sbin/ipfwadm -F -a accept -m -S 172.16.0.0/24			#Masquerade from internal lan out
#elif [ -n "`lsmod | grep '^iptables '`" ]; then
#	#Place the iptables versions of your rules here
#	#ipnatctl -I -s 172.16.0.0/24 -b source -m masquerade	#Masquerade from internal lan out - syntax from ipnatctl howto; thanks, Rusty.
#fi
