Re: [LARTC] Allowing certain IP to browse

2006-01-19 Thread Jandre Olivier
howdy, iptables will help u here for starters /sbin/iptables -A FORWARD -s 192.168.x.2/32 -p tcp --dport 80 -j ACCEPT /sbin/iptables -A FORWARD -s 192.168.x.2/32 -p tcp --dport 25 -j ACCEPT /sbin/iptables -A FORWARD -s 192.168.x.2/32 -j DROP similiar setup for the rest, this is not very clean t

[LARTC] Allowing certain IP to browse

2006-01-19 Thread andrew . goodluck
Hi all, Need your input of the following: I have a linux box(firewall) -I want to restric some users not to browse but send emails only Example: 192.168.x.2 up to 192.168.X.45 to send emails and browse, while the rest(192.168.X.46 to 192.168.X.254) to send emails only. How do I do that? thanx Andy