About 400 results
Open links in new tab
  1. windows - Resolve host name from IP address - Server Fault

    Oct 13, 2009 · I'm looking for a command line tool which gets an IP address and returns the host name, for Windows.

  2. What's the command-line utility in Windows to do a reverse DNS look …

    93 The trouble with "ping" is that it's not strictly a name server lookup tool (like nslookup) - for instance if you ping a hostname, it can be resolved to an IP address by a number of methods: DNS lookup, host …

  3. Finding Host Name / Computer Name over IP - Server Fault

    Oct 10, 2019 · I'm trying to find out how to lookup the HostName of a computer over IP using Command Prompt, however I don't need the registered DNS name. I'm attempting to do an IP/DNS Database …

  4. Lookup ip geolocation via command line - Server Fault

    Aug 30, 2016 · I've been trying to piece together a quick and dirty script to return the geolocation of a bunch of IP addresses. I'm using freegeoip.net and couldn't find a quick wget equivalent for cmd line …

  5. What's the reverse DNS command line utility? - Server Fault

    May 11, 2009 · 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 …

  6. How to check IPv6 address via command line? - Server Fault

    Mar 17, 2020 · How do I check the IPv6 address via command line? For IPv4 I simply use: curl ipinfo.io/ip This doesn't work for IPv6.

  7. domain name system - nslookup can't find anything - Server Fault

    When you go to a command prompt and type "nslookup" the response will be something like this: Default Server: dnsserver.domain.TLD Address: [DNSServerIPAddress] > If the DNS server that you …

  8. How can I get the IP address of a remote desktop client? And how can …

    30 From a command prompt you can run the following command to get a list of the remote IPs that are connected to RDP (port 3389). netstat -n | find ":3389" | find "ESTABLISHED" I'm certain this can be …

  9. Reverse DNS Lookup from the Command Line - Server Fault

    4 I'd like to get a list of all domains pointed to a certain IP address. Is there a way to get this information from the command line? Nothing like "host", "nslookup" or "dig -x". Those return the hostname of the …

  10. email - How do I check a PTR record? - Server Fault

    Jun 5, 2010 · It is the same as doing any kind of DNS lookup. From a windows command prompt: nslookup.exe <ip address> From a linux command line: host <ip address> Note: It is probably best to …