Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to block port probes on 1605? 1

Status
Not open for further replies.

CaffieneNnicotine

IS-IT--Management
Jul 17, 2001
64
US
Pretty straight forward question. Frame relay is up and functioning. I have serial0.1 with ip address 216.98.xxx.xxx. And Ethernet0 with 192.168.0.0 subnet. How would I go about blocking port probes and the such. The only thing I want to let in my serial0 is 80 traffic due to a future web server. Thanks very much for you help.

All Complaints Will Be Routed To /dev/null
 
ACL is the best way to go......

1. Nat 192.168.0.0 through router
2. Setup ACL...
access-list 100 permit any host 192.168.0.? eq www
access-list 100 deny ip any any
access-list 100 deny icmp any any
3. Apply access list 100 to the routers S0.1 interface

The last two lines in the ACL are probably not needed but I use them anyway so I know where the others are being blocked. At the end of any ACL there is an implicit deny so you can get away with the last two if you want to.

This is down and dirty, if you need a further explanation let me know.

david e
*end users are just like computers, some you can work with...others just need a simple reBOOTing to fix their problems.*
 
Thanks alot! You're the greatest! All Complaints Will Be Routed To /dev/null
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top