1994-10-28 15:17:23 +00:00
|
|
|
# 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.*
|
1996-01-31 13:53:01 +00:00
|
|
|
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
|
1994-10-28 15:17:23 +00:00
|
|
|
.....
|
1996-01-31 13:53:01 +00:00
|
|
|
ipfw addf deny all from 192.114.201.238 to 192.114.208.0/24
|
1994-10-28 15:17:23 +00:00
|
|
|
# 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
|
1996-01-31 13:53:01 +00:00
|
|
|
ipfw delf deny all from $VIPIP to 192.114.208.0/24
|
1994-10-28 15:17:23 +00:00
|
|
|
|
|
|
|
# VIP Logout: the guy leaves the system...
|
1996-01-31 13:53:01 +00:00
|
|
|
ipfw addf deny all from $VIPIP to 192.114.208.0/24
|
1994-10-28 15:17:23 +00:00
|
|
|
|
|
|
|
#Thats all folks...
|