31 Jul
2001
31 Jul
'01
07:22
Jonathan Terbio wrote:
Hi Guys,
How to make a rule that DENY a specific ip address something like 192.168.26.xxx ? and how to allow?
(I suppose you mean to deny/accept input) _DENY:_ # Where ppp0 is your interface ipchains -A input -i ppp0 -s 192.168.26.0/255.255.255.0 -j DENY ALLOW: # Where ppp0 is your interface ipchains -A input -i ppp0 -s 192.168.26.0/255.255.255.0 -j ALLOW Bart