19 lines
731 B
Plaintext
19 lines
731 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.*
|
|
ipfirewall addf deny all from 192.114.201.231 to 192.114.208.0/24
|
|
ipfirewall addf deny all from 192.114.201.232 to 192.114.208.0/24
|
|
.....
|
|
ipfirewall 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
|
|
ipfirewall delf deny all from $VIPIP to 192.114.208.0/24
|
|
|
|
# VIP Logout: the guy leaves the system...
|
|
ipfirewall addf deny all from $VIPIP to 192.114.208.0/24
|
|
|
|
#Thats all folks...
|