10-14-2001 08:25 PM - edited 03-01-2019 06:54 PM
I have tried everything in the book but must be doing something wrong I want to block port 80 to outsiders how do you do this on a cisco 800 series router
10-15-2001 12:43 AM
Use IOS access-lists:
If you have a Cisco 805:
interface Serial0
..stuff..
ip access-group 101 in
..stuff..
!
access-list 101 deny tcp any 192.168.1.0 255.255.255.0 eq 80
access-list 101 permit ip any any
First line says:
Deny all TCP port 80 sessions originating from "anywhere" with a destination to 192.168.1.0/24
Second line says:
Permit all IP-traffic originating from "anywhere" with a destination of "anywhere".
Where 192.168.1.0/24 is your Ethernet-subnet.
//Stig
10-26-2001 08:12 AM
The other guy's got the idea right, but you need a wildcard mask instead of a subnet mask.
0.0.0.255
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide