DNS reverse lookup IPs are [] for FQDN: <fqdn>DNS is misconfigured for the IP <IP> -> fqdn <fqdn> and ipReverseLookup[]nslookup <fqdn>nslookup <IP-address>/usr/bin/dig <fqdn>/usr/bin/dig -x <IP-address>VMware NSX
NSX uses the dig command to resolve FQDNs. If the output of dig does not include the expected information in an Answer section NSX will be unable to connect to the Compute Manager.
Generally, DNS resolution failure issues typically occur due to one the following reasons:
/usr/bin/dig <fqdn> command, and verify the output in the "Answer" section is correct:
root@edge01:~# /usr/bin/dig <fqdn>
; <<>> DiG 9.18.28-0ubuntu0.22.04.1-Ubuntu <<>> <fqdn>
;; global options: +cmd
;; Got answer:
;; WARNING: .local is reserved for Multicast DNS
;; You are currently testing what happens when an mDNS query is leaked to DNS
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 15328
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4000
;; QUESTION SECTION:
;<fqdn>. IN A
;; ANSWER SECTION:
<fqdn>. 3600 IN A 192.#.#.#
;; Query time: 0 msec
;; SERVER: #.#.#.##53(#.#.#.#) (UDP)
;; WHEN: Thu Feb 20 14:44:32 UTC 2025
;; MSG SIZE rcvd: 67
/usr/bin/dig -x <IP-Address> command, and verify the output in the "Answer" section is correct:
root@edge01:~# /usr/bin/dig -x <IP-address>
; <<>> DiG 9.18.28-0ubuntu0.22.04.1-Ubuntu <<>> -x <IP-address>
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 30823
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4000
;; QUESTION SECTION:
;10.#.#.#.in-addr.arpa. IN PTR
;; ANSWER SECTION:
<IP-address>. 3600 IN PTR <DNS-fqdn>.
;; Query time: 4 msec
;; SERVER: #.#.#.##53(#.#.#.#) (UDP)
;; WHEN: Thu Feb 20 15:02:32 UTC 2025
;; MSG SIZE rcvd: 94