Log in

View Full Version : How do you find IP addresses?


SeeMoreDigital
15th July 2005, 12:47
Is it possible to find the IP addresses of web-host servers?


Cheers

Sirber
15th July 2005, 12:51
ping them, you'll get their IP.

jstelly
15th July 2005, 19:00
nslookup <host name>

Bridge
17th July 2005, 22:17
http://www.arin.net/whois/

and

http://www.whois.net/

SeeMoreDigital
18th July 2005, 23:03
I don't seem to be able to make any of the above options provide me with in IP address number :(

I have not tried Sirber's "pinging" suggestion because I'm not sure how to do this!


Cheers

Sirber
18th July 2005, 23:07
C:\Documents and Settings\sirber>ping google.ca

Pinging google.ca [216.239.39.104] with 32 bytes of data:

Reply from 216.239.39.104: bytes=32 time=34ms TTL=245
Reply from 216.239.39.104: bytes=32 time=73ms TTL=245
Reply from 216.239.39.104: bytes=32 time=97ms TTL=245
Reply from 216.239.39.104: bytes=32 time=87ms TTL=245

Ping statistics for 216.239.39.104:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 34ms, Maximum = 97ms, Average = 72ms

:D

Prodater64
19th July 2005, 00:44
I don't seem to be able to make any of the above options provide me with in IP address number :(

I have not tried Sirber's "pinging" suggestion because I'm not sure how to do this!


Cheers

If you are Windows user:

Hold Windows key (beside alt keys) and press "r" at same time.
A dialog will popup.
Copy following and paste it in that dialog and press enter (or accept with left mouse button):
cmd /k ping www.yourhostname.com (or any domain your host have, net, org, etc.)

http://img315.imageshack.us/img315/9923/screenshot9dh.png

(Thanks to ImageShack for Free Image Hosting (http://www.imageshack.us))

2COOL
19th July 2005, 00:53
http://www.dnsstuff.com/

Use Domain Info for website servers info. ;)

Shinigami-Sama
19th July 2005, 01:32
lol
SMD didn't know this? :O
scary, yes window comand promt with ping <host name> will work
if teh windowbutton+r doesn't work use
start menue, run, cmd

SeeMoreDigital
19th July 2005, 09:20
Thanks guys,

Okay I've tried "pinging" but it would seem this method does not give you the IP address of the computer that hosts the website!

Take my web site (www.SeeMoreDigital.net) for example. It's listed as having the following IP address: - Pinging server40.ukservers.net [217.10.138.240] with 32 bytes of data:

Reply from 217.10.138.240: bytes=32 time=21ms TTL=54
Reply from 217.10.138.240: bytes=32 time=21ms TTL=54
Reply from 217.10.138.240: bytes=32 time=21ms TTL=54
Reply from 217.10.138.240: bytes=32 time=21ms TTL=54

Ping statistics for 217.10.138.240:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 21ms, Maximum = 21ms, Average = 21msWhen in actual fact it is: - 82.2.167.237Bummer!

Doom9
19th July 2005, 10:03
When in actual fact it is: -Quite obviously you can only find out what is in the DNS. It is quite possible that your host uses a different "frontend" IP and you use another address to manage your files. How should anyone but your host know how they are connected?

SeeMoreDigital
19th July 2005, 10:16
I was interested to understand how it's possible for some sneaky organizations/people to find out such information... with the possibility of hacking into your web site files :eek:

Have you had any problems with this Doom9?


Cheers

Swede
19th July 2005, 11:12
The IP www.seemoredigital.net resolves to is just a redirect to your IP. A telnet-session returns:
GET / HTTP/1.1
Host: www.seemoredigital.net

HTTP/1.0 200 OK
Date: Tue, 19 Jul 2005 10:08:43 GMT
Server: Apache
Set-Cookie: Apache=.61491121767733188; path=/
X-Powered-By: PHP/4.3.11
Last-Modified: Mon, 18 Jul 2005 23:08:00 GMT
Expires: Mon, 18 Jul 2005 23:09:00 GMT
Connection: close
Content-Type: text/html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html><head>
<title>SeeMoreDigital.net</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- localhost, www.seemoredigital.net, http://82.2.167.237,/, http://82.2.167.237/, -->
<meta name="keywords" content="">
<meta name="description" content="">
</head>
<frameset rows="100%,*" >
<frame name="__main" src="http://82.2.167.237/" noresize frameborder="0">
<noframes>
<div align="center">
If you can see this, your browser does not support frames.
<h2>Please click the link below</h2>
<h1><a href="http://82.2.167.237/">SeeMoreDigital.net</a></h1>
</div><div>
<h2>Title</h2>
SeeMoreDigital.net
<h2>Description</h2>

<h2>Keywords</h2>

</div></noframes>
</frameset></html>
Which clearly ;) tells the browser to jump to http://82.2.167.237/

Doom9
19th July 2005, 11:36
I was interested to understand how it's possible for some sneaky organizations/people to find out such informationIf it's set up as Swede pointed out, it's quite obvious. But if your hosting company uses one IP for all customers to manage their files and accounts, and you get a separate IP for your visitors, there's basically no way of knowing. But in general it's normal that management and the actual site is availabe on the same place.. even though they may be a physically different locations.