Quel est l'utilitaire en ligne de commande pour le DNS inversé ?

What’s the command to find the name of a computer given its IP address?

I always forget what this command is, but I know it exists in Windows and I assume it exists on the *nix command-line.


Source : Server Fault

The commands dig and host should be what you’re looking for :wink:

On *nix systems, you can use this command:

dig -x [address]

Alternatively, you can add +short at the end of the dig command to output only the DNS result.

There’s also nslookup on both *nix and Windows systems for reverse DNS requests.