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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Blocking Web Address using Access List

Status
Not open for further replies.

PaulHurst

IS-IT--Management
Jul 4, 2003
2
CA
I am new the our PIX Firewall and wish to block access to specific web sites, including launchcast and messenger.hotmail.com for example. Anyone have a suggestion as to the command to enable this.

Thank you
 
If you modify this with the website's IP addresses, this will block HTTP access to them.

access-list 103 deny tcp any host xxx.xxx.xxx.xxx eq 80
access-list 103 permit ip any any
access-group 103 in interface inside
 
I am concerned that the statment
access-list 103 permit ip any any

would remove the function of the PIX
 
This is for outbound only. It would block port 80 for the specific ip, but allow everything else. If the access-list was bound to the outside interface, then it would be for incoming.
 
HI.

The pix can only block/permit by IP addresses and port numbers.

For more granular enforcement of outbound policy, you will need a 3rd party product that can work as a proxy server, or as a URL filter (like N2H2 or Websense).

You can build a low cost solution with:
Linux - OS
SQUID proxy - cache engine
DansGuardian - content filter
webmin - administrator interface

Bye


Yizhar Hurwitz
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top