//flex table opened by JP

Click to See Complete Forum and Search --> : MS TCP Lookback interface ?


ArkTiK
09-18-2002, 01:43 AM
What is it ? & where can I find it's attributes on my PC ?

RenaissanceMan
09-18-2002, 07:41 AM
hmm, not really sure what you are asking. but here is a shot.
Assuming that you are refering to Networking. The reserved IP address for testing NIC's is 127.0.0.1
this is your "loopback".
Therefore to test the connectivity and function of your NIC, you would, from a command prompt, type "ping 127.0.0.1"
Hope this is the information you were requesting.:)

AllGamer
09-18-2002, 08:12 AM
Originally posted by ArkTiK
What is it ? & where can I find it's attributes on my PC ?

yeah try the following

open the command prompt
in win9x is just DOS
or in Win2k/XP is CMD

then type this:

ping -a localhost

ping -a 127.0.0.1

also

ping -a (your isp IP#)

all of them should resolve to your name, say for example if your computer is call mikey

then after each of the previous test above

it should reveal mikey

here something like this

C:\>ping -a localhost

Pinging mikey.your-isp.com [127.0.0.1] with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<10ms TTL=128
Reply from 127.0.0.1: bytes=32 time<10ms TTL=128
Reply from 127.0.0.1: bytes=32 time<10ms TTL=128
Reply from 127.0.0.1: bytes=32 time<10ms TTL=128

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

---------------------------
C:\>ping -a 127.0.0.1

Pinging mikey.your-isp.com [127.0.0.1] with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<10ms TTL=128
Reply from 127.0.0.1: bytes=32 time<10ms TTL=128
Reply from 127.0.0.1: bytes=32 time<10ms TTL=128
Reply from 127.0.0.1: bytes=32 time<10ms TTL=128

Ping statistics for 127.0.0.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
-----------------------------
C:\>ping -a 155.64.184.81

Pinging mikey.your-isp.com [155.64.184.81] with 32 bytes of data:

Reply from 155.64.184.81: bytes=32 time<10ms TTL=128
Reply from 155.64.184.81: bytes=32 time<10ms TTL=128
Reply from 155.64.184.81: bytes=32 time<10ms TTL=128
Reply from 155.64.184.81: bytes=32 time<10ms TTL=128

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


By the way the easiest way to find out what is your IP# is to run the command

IPConfig /all

:t have fun :p

By the way.... You will only get to see something like my example if your DNS has been setup properly :t