#!/bin/bash #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 #fi