cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
306745
Views
75
Helpful
26
Comments
Magnus Mortensen
Cisco Employee
Cisco Employee

 

Understanding the FQDN ACL Feature

Starting in ASA version 8.4(2) (Feature not available in 8.5(1) code) , ACL entries can contain a new type of object that represents a fully qualified domain-name. This allows administrators to create ACL entries that contain a new object type fqdn that represents a hostname. For this functionality to work, the ASA must be able to resolve these FQDN's to one or more IP addresses. The object then becomes a representation of those IP addess(es).

 

Basic Configuration

Step 1: Define DNS server

Since the ASA has to be able to resolve each hostname to one or more IP addesses, we must define what DNS server the ASA can use.

 

domain-name cisco.com
!
dns domain-lookup inside 
dns server-group DefaultDNS 
 name-server 192.168.1.200 
 domain-name cisco.com

 

Step 2: Create the FQDN object for the host name in question

Similar to creating other object in the 8.3.x code and later, we need to define the fqdn under the object

 

object network obj-hr88.cisco.com
  fqdn hr88.cisco.com

 

Step 3: Add the FQDN Oject to an ACL

Reference the newly created Object in an ACL on the ASA so we can begin to resolve it

 

access-list inside_in deny ip any object obj-hr88.cisco.com
access-list inside_in permit ip any any

Verify the ACL with FQDNs

Once the access-list is applied to the security policy of the ASA, the ASA will resolve the DNS entries to IP addresses, then use those IP addresses in the access-list.

 

ASA# show access-list inside_in
access-list inside_in; 4 elements; name hash: 0xd3a8690b
access-list inside_in line 1 deny ip any object obj-hr88.cisco.com 
 access-list inside_in line 1 deny ip any fqdn hr88.cisco.com (resolved)
 access-list inside_in line 1 deny ip any host 10.32.2.4 (hr88.cisco.com) (hitcnt=10)
 access-list inside_in line 1 deny ip any host 10.32.2.3 (hr88.cisco.com) (hitcnt=35)
access-list inside_in line 2 permit ip any any (hitcnt=12022) 

The 'show dns' command will display the IP to hostname mappings currently active on the ASA

 

ASA# show dns
Name: hr88.cisco.com
  Address: 10.32.2.4           TTL 13:27:02
  Address: 10.32.2.3           TTL 13:27:02

Best Practices

Use a trusted DNS server

Obviously it is important that the DNS server used by the ASA for FQDN resolution is trusted, since the responses from this DNS server will affect the security policy of the ASA. You also want to ensure that your DNS server is stable and has a very low latency since your security policy will rely on the results it recieves.

 

Increase the lifetime for short-lived DNS records

When the ASA receives the response from the DNS server for the ACE hostname resolution, the answer has a Time to Live (TTL) associated with it. The ASA will keep that domain-to-ip mapping active until the TTL expires, at which time the ASA will re-resolve the IP address of the hostname.

 

The output of 'show dns host hostname' will show the TTL of the DNS entry on the ASA:

 

ASA-dns-acl.png

 

In some cases, DNS responses might be extremely short, on the order of a few seconds. Usually, low lifetimes like this are employed by DNS load-balancers and content hosting services where IP addresses change frequently. If many DNS entries are used on the ASA, short TTLs might cause the ASA to re-resolve the IP addresses very frequently, therby causing extra load on the ASA, DNS server, and the network.

 

The ASA can be manually configured to increase the TTL of each response it receives by a set time value, using the command

'dns expire-entry-timer minutes minutes'. For example, to increase the timeout by 60 minutes you would use the following command:

 

 dns expire-entry-timer minutes 60 

Limitations of the Feature

It should be emphasized that this new FQDN ACL feature on the ASA is not a replacement for URL filtering solutions. Administrators attempting to write basic ACL policies that permit or deny traffic to FQDN names outside of their organization might have intermittent success, due to the factors discussed below. The preferred methods for blocking access to certain websites is the use of an external URL filtering server, or by using the application inspection on the ASA to control the access.

 

Sites returning DNS responses with low TTL cause unpredictable access

Some popular websites such as www.facebook.com send back DNS responses with very low Time To Live (TTL) values. The screenshot below is from a packet capture. It shows that the DNS server responded back to the request and indicated that the TTL of the entry was only 20 seconds.

This means that a computer would continue to use the IP 69.171.224.14 for www.facebook.com for 20 seconds, and after 20 seconds it would re-resolve the DNS entry and use the new IP address the DNS server responded with :

 

smallDNSTTLfacebook.png

 

The ASA will behave slightly differently with the TTL indicated in the DNS response. By default (and at a minimum) the ASA always adds one minute to the TTL (due to the default command 'dns expire-entry-timer 1') of the response received to the DNS request, meaning that in this case the ASA would consider the entry valid for one minute and twenty seconds.

 

ASA# show dns
Name: www.facebook.com
  Address: 69.171.224.41                                 TTL 00:01:20
ASA#

The side effect of this is that the inside client will start using a new IP address for www.facebook.com one minute before the ASA updates its own IP to hostname mapping, and during that time the access-list line might not match. This would result in the clients being permitted or denied intermittently when they access www.facebook.com.

 

Multiple hostnames resolve to the same IP address

If two hostnames resolve to the same IP address, the ASA cannot distinguish between the two, since it is essentially blocking or permitting the traffic based on the destination IP address in the packet. Many popular webpages have moved away from hosting thier own content to using content delivery networks like Akamai, Amazon CWS. This means that come FQDN's may resolve to IP addresses used by these content hosting providers and they may host multiple sites worth of content on the same IP. This is also seen with Webhosting companies like GoDaddy, Network Solutions, etc. These providers may use one signle IP to host hundred of websites. The content served to you web-browser is determined based on the URL accessed (and the Host: field in the HTTP request). Let take a simple example of 'URL FIltering' and see how it can go awry. Here is the simplified config:

 

object network obj-superbadwebsite.com
   fqdn superbadwebsite.com
!
access-list inside_in deny ip any object obj-superbadwebsite.com
access-list inside_in permit ip any any

Now lets say that superbadwebsite.com is hosted by HostingCo which also hosts benign websites like catsinsinks.com (benign all-beit a time waster). HostingCo uses webservers at 64.102.67.9 an 64.102.67.10 so now our ACL looks like:

access-list inside_in line 1 deny ip any object obj-superbadwebsite.com 
  access-list inside_in line 1 deny ip any fqdn superbadwebsite.com (resolved) 
  access-list inside_in line 1 deny ip any host 64.102.67.10 (superbadwebsite.com)(hitcnt=5) 
  access-list inside_in line 1 deny ip any host 64.102.67.9 (superbadwebsite.com)(hitcnt=120) 
access-list inside_in line 2 permit ip any any (hitcnt=4423) 

 

If someone in your network wants to browse the site http://catsinsinks.com they will not be able to. This is because catsinsinks.com will resolve to either of the IP's that HostingCo uses, both of which are blocked because they were the A-Records returned when we resolved superbadwebsite.com. This issue can be summed up in the follow way:

 

FQDN functionality in ACLs is not a replacement for HTTP Filtering. It cannot distinguish what content is being sent.

 

Multiple DNS names for the same website

Another reason to stay away from URL filtering using FQDn's... if you were to create an object and use it to block the following fqdn "www.facebook.com" users may still be able to get to "facebook.com". This is because both FQDN's resolve to different IPs. Blocking one FQDN for a website does not always block all the possible was of accessing it:

 

admin@server> host www.facebook.com
www.facebook.com has address 69.171.224.13

admin@server> host facebook.com
facebook.com has address 69.63.181.12 
facebook.com has address 69.63.189.11
facebook.com has address 69.63.189.16
Comments
jlmickens
Level 1
Level 1

Exactly.  The only way to avoid it is to upgrade your ASA IOS to 8.4.2 or higher so you can use the outlook.office365.com as an FQDN object.

phipse_508122
Level 1
Level 1

OK - I've added this on my Firewall and it's working perfectly.  However, how do I get my CORE switches to route to the firewall?

Davysire1
Community Member

Hi:

I suppose that this document is still valid, We have an ASA 5540 using the IOS 9.1(6) and we are facing intermittent access problems. Now my question is, is there any solution or work around for this problem? is it possible to avoid this problem when you are making use of ACLs with FQDN?

Thanks

Collin Clark
VIP Alumni
VIP Alumni

IMO you shouldn't use fqdn's in ACL's. If you want some very basic URL filtering, use regex on the ASA. If you want something more elegant use a true web filtering product like the WSA. Oddly enough you can filter via regex/URI and basic whitelist/blacklist, even within different protocols, with Zone Based Firewall on routers. 

BOB HEATHCOTE
Community Member

Great stuff. This helped me complete the goal. However I really got stuck trying to do this with ASDM. I finally read another post where a guy was stuck because he didn't apply the ACL....  Via CLI(!)

That is what I had to do: I had to add a rule using the FQDN using the CLI. i.e.

access-list inside_in deny ip any object obj-superbadwebsite.com

Then I could add other entries for this object with ASDM and delete the line I put in via CLI (it was any any).

If there is a work around please let me know as I'd rather now have to use the CLI as I don't get in there very often. Maybe this was fixed in a later version as the box is currently on is 8.4(3).

Thought someone might want to know what got stuck on.

Bob

Andy Viar
Level 1
Level 1

Thank you for this post. FYI, network objects containing FQDNs will not apply to ACLs used with WCCP, at least not on software version 9.3(3)7. Here is the error that I received when attempting to apply the ACL:

"[ERROR] access-list xx line xx extended deny ip object xx.xx.com any. Access-list contains user, user-group, security-group or FQDN objects.These are not supported in WCCP command."

Andy

Fabrizio Chessa
Level 1
Level 1

It's not possible on ASA to configure dynamic peer to establish VPN, you can configure a dynamic-map to accept the vpn request from a dynamic peer, but the reverse isn't true

It's possible on router

johnnylingo
Level 5
Level 5

It will work if they're returning multiple IPs in a single query.  For example this works well:

# show dns host test.mydomain.com
Name: test.mydomain.com
  Address: 54.153.174.125                                TTL 00:00:10
  Address: 54.66.173.22                                  TTL 00:00:10
  Address: 54.206.21.233                                 TTL 00:00:10

The problem is when a single rotating IP address is returned.  The ASA has no easy way of discovering all the valid IPs or how long to cache them for, so in this case something application level must be used. 

Olaf Zehrt
Community Member

I guess the question was to have the wildcard for the sub domains and this is not working.

# object network *.mydomain.com
# fqdn *.mydomain.com
ERROR: Invalid FQDN. FQDN must begin and end with a digit/letter. Only letters, digits, and hyphen are allowed as internal characters. Labels are separated by a dot.

So you must know all sub domains you want to allow.

danielmanqui
Level 1
Level 1

Muy bien explicado!, gracias.

fcardoso
Level 1
Level 1

-I  tried to configure the interface tunnel on ASA5545,(Version 9.12(4)54),  side:

DNS server-group DefaultDNS
name-server 8.8.8.8

dns domain-lookup outside

object network obj.example.dnip.com
fqdn example.dnip.xx.com

access-list outside_access_in extended deny ip any object obj.example.dnip.com
access-list outside_access_in extended permit ip any any

interface Tunnel1
nameif xxx
ip address 192.168.0.1 255.255.255.252
tunnel source interface outside
tunnel destination example.dnip.xx.com 
ERROR: % Invalid Hostname"

****verification:

asa#show access-list outside_access_in

access-list outside_access_in line 3 extended deny ip any object obj.example.dnip.com (hitcnt=0)
access-list outside_access_in line 3 extended deny ip any fqdn example.dnip.xx.com (resolved)
access-list outside_access_in line 3 extended deny ip any host xxx.xxx.xxx.xxx (example.dnip.xx.com)

and 

asa#show dns
Name: example.dnip.xx.com
Address: xxx.xxx.xxx.xxx   TTL 00:01:57

- Doing the ping from the ASA5545 to  "example.dnip.xx.com" it resolves the name to the ip xxx.xxx.xxx.xxx and the ping´s work.....

What am I doing wrong or what needs to be done????

 

Thank´s for the help Fernando

 

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: