freebsd-dev/share/misc/ipfw.samp.scripts
1996-01-31 13:53:01 +00:00

19 lines
701 B
Plaintext

# This file shows how we allow and deny users in runtime
#
# Default settings...They deny anybody , which connected to our
# PPP lines,to access any host on our development network:
# 192.114.207.*
ipfw addf deny all from 192.114.201.231 to 192.114.208.0/24
ipfw addf deny all from 192.114.201.232 to 192.114.208.0/24
.....
ipfw addf deny all from 192.114.201.238 to 192.114.208.0/24
# VIP Login: this option executes when user VIP enters the system.
# His IP is $VIPIP,which is one of our dial-up lines,for example
# 192.114.201.233
ipfw delf deny all from $VIPIP to 192.114.208.0/24
# VIP Logout: the guy leaves the system...
ipfw addf deny all from $VIPIP to 192.114.208.0/24
#Thats all folks...