Suppose you have a small windows domain configured as follows:
- domain name is
ad.example.com
(as per these guidelines) DC1
is at 10.10.10.3DC2
is at 10.10.10.4DC1
andDC2
are running the AD-integrated DNS and DHCP Server roles- AD DHCP is configured with an address pool from 10.10.10.50-99
- AD DHCP is issuing client leases with the
006 DNS Servers
option set to the addresses ofDC
's running AD-integrated DNS (i.e. 10.10.10.3 and 10.10.10.4) - AD-integrated DNS servers have google's 8.8.8.8 configured as a forwarder
- the 10.10.10.0/24 subnet is connected to the internet via a Cisco ASA with internal address 10.10.10.1
- the ASA is the gateway for the 10.10.10.0/24 network
vpn.example.com
is a public DNS entry that resolves to the external IP address of the ASA- Remote Windows computers connect to the 10.10.10.0/24 network through the ASA using the Cisco IPSec VPN Client pointed at
vpn.example.com
- the Remote Windows computers are issued IP addresses from 10.10.10.200-10.10.10.254
- split-tunneling is enabled such that only 10.10.10.0/24 traffic is tunneled (the highest available upstream bandwidth at this site is only 2Mbps)
For Windows laptops that sometimes connect via VPN, how should their DNS be configured?
If a mobile Windows laptop just accepts a random public DNS server address, it will send DNS queries for _ldap._tcp.site._sites.ad.example.com
to the random public DNS server when the tunnel is not active. Is this standard practice? Somehow that seems like a bad idea.
On the other hand, if a Windows laptop is configured with only the internal DNS servers 10.10.10.3 and 10.10.10.4 (as sternly recommended here) then the VPN Client cannot resolve vpn.example.com
to make the VPN connection -- it's a chicken-and-egg problem.
Is there something fancier that ought to be going on with DNS on the Windows laptops connecting by VPN?
How much control does a VPN client have over Windows DNS lookups? Should DNS split tunneling be enabled?
Enabling DNS split-tunneling seems to mean we're relying on the VPN Client to intercept DNS queries like _ldap._tcp.site._sites.ad.example.com
to prevent them from being sent to the public DNS server. Is the DNS split-tunneling in VPN clients strict and reliable? For that matter, it seems like some applications might just ignore the VPN adapter altogether and attempt to resolve Windows domain addresses using the public DNS server on the physical adapter. Is this something I should be concerned with?
The other option -- sending all DNS lookups through the tunnel to the AD-integrated DNS servers -- seems like a bad idea for two reasons: 1) The tunnel is likely to be much higher latency than a public DNS server when the user is many hops from the ASA. 2) It seems like names will resolve to IP addresses that correspond to servers in close proximity to the ASA rather than the remote computer. If I understand this correctly, that means problems accessing media on CDNs. (Edit: Here's an example of someone experiencing just this problem.)