07-24-2003 06:35 AM - edited 03-09-2019 04:11 AM
We use a PIX 505E firewall to connect to the Internet. All of our PC's have static ip addresses assigned to them. How can I prevent a single PC with the address (ie. 1.2.3.4) from connecting to a specific web site on the Internet with an address of (ie. 9.8.7.6)?
Solved! Go to Solution.
07-30-2003 12:18 PM
Here's a quick crack at it based on my understanding of what you're looking for:
access-list outbound deny tcp host 1.2.3.4 host 9.8.7.6 eq www
access-list outbound permit ip any any
access-group outbound in interface inside
This is an access list written to the inside interface. Your first entry prevents your internal host from connecting to the external webserver on TCP port 80. The second line is required to permit all other IP traffic outbound. The second line becomes a requirement when you put an access-list on the inside interface.
The access-group command binds the access list "outside" to the inside interface.
Hope this helps.
Chad
07-30-2003 10:14 AM
Using a pix alone you cannot do URL filtering you need Web sense to do it.
07-30-2003 12:18 PM
Here's a quick crack at it based on my understanding of what you're looking for:
access-list outbound deny tcp host 1.2.3.4 host 9.8.7.6 eq www
access-list outbound permit ip any any
access-group outbound in interface inside
This is an access list written to the inside interface. Your first entry prevents your internal host from connecting to the external webserver on TCP port 80. The second line is required to permit all other IP traffic outbound. The second line becomes a requirement when you put an access-list on the inside interface.
The access-group command binds the access list "outside" to the inside interface.
Hope this helps.
Chad
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