How to find the IP of a server address using cmd

7

3

How do we find the IP of a server address (like http://google.com is 209.85.148.103) using the Windows CMD?

Pacerier

Posted 2011-06-28T19:25:06.687

Reputation: 22 232

Question was closed 2018-08-18T09:58:15.650

Answers

12

ping google.com

or

nslookup google.com

EightBitTony

Posted 2011-06-28T19:25:06.687

Reputation: 3 741

worked for me.. – kulfi – 2018-11-14T04:52:22.933

6

You can also use:

tracert google.com

imtheman

Posted 2011-06-28T19:25:06.687

Reputation: 3 503

1

Ping google.com. More correctly, use NSlookup google.com

soandos

Posted 2011-06-28T19:25:06.687

Reputation: 22 744

1

Enter the following in your command-line prompt:

pathping google.com

CrashOverride

Posted 2011-06-28T19:25:06.687

Reputation: 341

Good idea =) ​​​​​ – Pacerier – 2013-11-02T15:13:18.690