search for: outside_net

Displaying 1 result from an estimated 1 matches for "outside_net".

2003 Apr 25
2
firewalling help/audit
...take. Thanks a lot in advance. Antoine Here is my ruleset: #!/bin/sh # Firewall Command fwcmd="/sbin/ipfw" # Flush out the list before we begin. ${fwcmd} -f flush # Stop spoofing ${fwcmd} add deny all from 192.168.0.0:255.255.255.0 to any in via tun0 ### ${fwcmd} add deny all from ${outside_net}:${outside_mask} to any in via vr0 ### Disabled --> dynamic @ip # Stop RFC1918 nets on the outside interface ${fwcmd} add deny all from any to 10.0.0.0/8 via tun0 ${fwcmd} add deny all from any to 172.16.0.0/12 via tun0 ${fwcmd} add deny all from any to 192.168.0.0/16 via tun0 ${fwcmd} add den...