You are here: Home > Knowledge Refreshers

KR edition 52


KR-52 IP address and networking

How do we know what’s our IP address?
    Just use the command ipconfig at the DOS prompt. This’ll give you your IP address for the current session (when you use a dialup connection the ISP will generally assign a different IP to your machine each time-dynamic IP; but if you are on broadband connection- always hooked onto the Net then you’ll have a fixed IP). The command ipconfig -all will give you your IP address as well as the machine name.



What if we want to find the name of a server from the IP address? 
    There’s a command called tracert which will give you the name of the PC. From the example below we deduce that the IP address 206.190.38.71 corresponds to web50406.mail.yahoo.com
    Basically tracert will tell you the various routers through which your packet travels (a packet is just a piece of data which you send – and since the Internet is an interconnection of many networks, whenever you send data/packets they will be pass through many other systems before reaching their destination). Tracert stands for ‘trace route’.

C:\MYWIN\Desktop>tracert 206.190.38.71

Tracing route to web50406.mail.yahoo.com [206.190.38.71]
over a maximum of 30 hops:

(1) 137 ms 140 ms 150 ms isdn2.pppmad.vsnl.net.in [202.54.7.23]

(2) 133 ms 140 ms 148 ms isdn1.pppmad.vsnl.net.in [202.54.7.16]

(3) 137 ms 129 ms 141 ms giga-core-gw1-6.91.chennai.vsnl.com [202.54.6.91]

(4) 160 ms 160 ms 150 ms ekm-chn-atm-pvc2.Bbone.vsnl.net.in [202.54.2.165]

(5) 169 ms 180 ms 170 ms mumbai-ekm-stm-1.Bbone.vsnl.net.in [202.54.2.197]

(6) 369 ms 370 ms 367 ms 202.54.2.18

(7) 369 ms 370 ms 370 ms 219.64.229.1

(8) 371 ms 380 ms 380 ms UNKNOWN-216-115-97-17.yahoo.com [216.115.97.17]

(9) 379 ms 379 ms 381 ms vlan240-msr1.re1.yahoo.com [216.115.96.169]

(10) 380 ms 380 ms 380 ms v3.bas1.re2.yahoo.com [206.190.33.6]

(11) 380 ms 380 ms 380 ms web50406.mail.yahoo.com [206.190.38.71]

Trace complete.


Go back to the main contents page