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

Blocking DNS access on PIX 501

Status
Not open for further replies.

dayron

IS-IT--Management
Jun 3, 2002
22
US
Hello. I am fairly new to pix and these may seem like silly questions.

1)I would like to block DNS resolution traffic from all clients except my internal DNS servers which forward outside requests. HOw do I do this?

2) Also is there a way to block internal DNS traffic to another internal host?

Example: I want to block every 192.168.11.x address from using 192.168.11.60's DNS.
 
Well, no1 the function you are looking for is access-lists. an example for only allowing your internal dns access to other dns servers is :

access-list acl_inside permit udp host 192.168.11.60 any eq 53
access-list acl_inside permit tcp host 192.168.11.60 any eq 53
access-list acl_inside deny udp any any eq 53
access-list acl_inside deny tcp any any eq 53

access-list acl_inside permit ip any any

Apply to interface :

access-group acl_inside in interface inside

As for no2 : No, not in the pix, this would be some dns issue that you setup on your dns server.

Jan

Network Systems Engineer
CCNA/CQS/CCSP
 
THanks for the info. I will give it a try!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top