Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get the IP address of a website that does not respond to pings -- they time out.

I'm trying to do this from a C# application rather than the command entry screen in windows. I've been using the ping command which has times out on some sites so it is not useful there.

Is there another way to get this information that does not require the site to respond?

share|improve this question
The OP is asking how to do this in code. – Diago Dec 30 '10 at 18:33

migrated from superuser.com Dec 30 '10 at 18:33

9 Answers

Even if the site does not respond to PINGs (ICMP not enabled on the server or filtered by firewall), the PING command should still resolve the site name into an IP address and display that IP address to you.

Check the output of a ping command on Windows (the ip address in bold):

ping wikipedia.org

Pinging wikipedia.org [208.80.152.2] with 32 bytes o
Reply from 208.80.152.2: bytes=32 time=245ms TTL=50
Reply from 208.80.152.2: bytes=32 time=235ms TTL=50

Update (due to to updated question)

If you are trying to get the IP address for DNS name from a C# application, you should use the GetHostEntry method from the Dns class: http://msdn.microsoft.com/en-us/library/ms143998.aspx .

share|improve this answer

You get IP from DNS, and need it to perform a ping, so you have it already.

$ ping google.com
PING google.com (74.125.227.51) 56(84) bytes of data.
64 bytes from 74.125.227.51: icmp_seq=0 ttl=56 time=5.80 ms
64 bytes from 74.125.227.51: icmp_seq=1 ttl=56 time=6.23 ms

The IP is shown. If you aren't getting an IP, your DNS might be down.

You can also try nslookup google.com

share|improve this answer
Thanks. Unfortunately, I neglected to say that I need to do this in code. I'm using the ping object in C# to ping the site but can't find where the IP is stored in the object. There is no PingReply since it times out. The manual nslookup command does comeback with the same IP as the ping but lists it as a Non-authoratative answer. Assuming there is a .Net version of nslookup does it have a property that would show the ip address? – Bill Corry Dec 29 '10 at 19:04
2  
@Bill Corry, if you are trying to get the IP address for DNS name from a C# application, you should use the GetHostEntry method from the Dns class: msdn.microsoft.com/en-us/library/ms143998.aspx. Update your question so you can get an updated answer. – Florin Dumitrescu Dec 29 '10 at 19:20
Thanks Florin: That is exactly what I was looking for. – Bill Corry Dec 30 '10 at 0:32

To get an IP address from a host name in Dns.GetHostEntry(). Pass in the host name and it will return you the IP address.

There is no reason you need to ping (on anyway contact) a site to get it's IP address. A DNS lookup will give you what you need.

share|improve this answer

You can use nslookup to resolve domain names.

nslookup google.com

share|improve this answer

The following code can be used to execute a DNS lookup for the supplied host name.

Using DNS will bypass accessing the target server. It is an independant distributed directory service that maintains hostname to IP address lookups.

The following code will give the first returned IP address for a host if a DNS entry can be resolved for the supplied host name.

    public void test()
    {
        string hostname = "google.com";
        IPAddress ipAdress;

        if (TryGetIpAddress(hostname, out ipAdress))
        {
            Console.WriteLine("Host:'{0}', IP:{1}.", hostname, ipAdress);
        }
        else
        {
            Console.WriteLine("Host '{0}' not found.", hostname);
        }
    }

    public bool TryGetIpAddress(string hostname, out IPAddress ipAddress)
    {
        const int HostNotFound = 11001;
        ipAddress = null;

        try
        {
            IPHostEntry hostEntry = Dns.GetHostEntry(hostname);

            ipAddress = hostEntry.AddressList[0];
        }
        catch (SocketException ex)
        {
            if (ex.ErrorCode != HostNotFound) throw;
        }

        return (ipAddress != null);
    } 
share|improve this answer

You can use tracert and it will resolve the IP address and tell you if it can be reached or where it stops.

share|improve this answer
Unfortunately, I didn't ask the correct question. I need to do this using a C# solution that can be put into code. I've been using the ping commmand which times out in code or manually. With a manual solution I can see the IP printed out but I'm not sure where the same information is. Since the pingreply doesn't get created I can't look there. Does the Ping item itself somehow get updated with the information? – Bill Corry Dec 29 '10 at 18:52

If site (http) is up and running then it is very well clear that the sys/network admin disabled ping and most probably trace route utility too. It is getting very common now. See here. Your alternative is to use ns lookup or WHOIS service as described here

share|improve this answer

Doing this in code you should have some function like gethostbyname().

This should be on stackoverflow.com

share|improve this answer

you can get the ip address of a website by using the Domain to ip service.Want to know about this service i suggest the site Whoisxy.com .By entering the website name,you can get the ip address and also you can test your ping through the site.

share|improve this answer
execute a "nslookup domain.com" query, this uses DNS and not pings to determine the IP address, if you want to verify the websites is working you will need connect to the IP address the website returns on port 80. – Martin Sykes Dec 22 '12 at 8:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.