HI ,

How can I find the server IP which my shared hosting solution is on ?

link|improve this question
feedback

migrated from stackoverflow.com Jul 15 '09 at 17:24

This question came from our site for professional and enthusiast programmers.

3 Answers

from the command line use:

nslookup www.mydomain.com
link|improve this answer
feedback

nslookup or ping (assuming windows):

C:\>ping -n 1 stackoverflow.com

Pinging stackoverflow.com [69.59.196.211] with 32 bytes of data:

Reply from 69.59.196.211: bytes=32 time=102ms TTL=106

Ping statistics for 69.59.196.211:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 102ms, Maximum = 102ms, Average = 102ms

C:\>nslookup stackoverflow.com
Server:  someserver.com
Address:  192.168.2.1

Non-authoritative answer:
Name:    stackoverflow.com
Address:  69.59.196.211

Replace stackoverflow.com with the name of your server. As you can see the ip address is 69.59.196.211

link|improve this answer
feedback

use ping to find out IP.

note that IP doesn't have to work when accessed directly via browser etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.