ping -a 192.168.99.3
does not resolve hostname for vcl.nailit.lab
, but does for other hosts on network like pfsense.nailit.lab
.
nslookup vcl.nailit.lab
and ping vcl.nailit.lab
work correctly. See output:
C:\Users\Administrator.NAILIT>ping -a 192.168.99.3
Pinging 192.168.99.3 with 32 bytes of data:
Reply from 192.168.99.3: bytes=32 time<1ms TTL=64
Ping statistics for 192.168.99.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
C:\Users\Administrator.NAILIT>ping vcl.nailit.lab
Pinging vcl.nailit.lab [192.168.99.3] with 32 bytes of data:
Reply from 192.168.99.3: bytes=32 time<1ms TTL=64
Ping statistics for 192.168.99.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
C:\Users\Administrator.NAILIT>nslookup vcl.nailit.lab
Server: UnKnown
Address: 192.168.99.13
Name: vcl.nailit.lab
Address: 192.168.99.3
C:\Users\Administrator.NAILIT>ping -a 192.168.99.1
Pinging pfsense.nailit.lab [192.168.99.1] with 32 bytes of data:
Reply from 192.168.99.1: bytes=32 time<1ms TTL=64
Ping statistics for 192.168.99.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms**
DNS records seem ok - identical for pfsense and vcl. DNS is on MS Server 2012
How exactly does ping -a resolve the host name? Why is everything except 'ping -a 192.168.99.3' work correctly?