access-list 120 deny tcp any host xxx.xxx.xxx.xxx eq 80
...
int eth0
ip access-group 120 in
This will block all HTTP traffic coming from hosts on eth0, destined for host with IP address xxx.xxx.xxx.xxx. Note that you need to know the IP address of the web server. If you know the network the server resides on, but you don't know the particular address of the server, you can use "net-address wildcard-bits" instead of "host xxx.xxx.xxx.xxx".
Cheers!
[This message has been edited by dmaftei (edited 01-08-2001).]
Report this post to a moderator
|