It would be helpful to see the exhibit to determine which command output you need, but here's a stab,
======================
PING
ping 192.168.1.101
Pinging 192.168.1.101 with 32 bytes of data:
Reply from 192.168.1.101: bytes=32 time=20ms TTL=150
Reply from 192.168.1.101: bytes=32 time=2ms TTL=150
Reply from 192.168.1.101: bytes=32 time=2ms TTL=150
Reply from 192.168.1.101: bytes=32 time=3ms TTL=150
Ping statistics for 192.168.1.101:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 2ms, Maximum = 20ms, Average = 6ms
================
Ping -a (same as above, but it will resolve the host name of the target with the -a switch, so you will see the hostname of the computer, plus the ip address in the first line of output)
ping -a 192.168.1.101
Pinging computer1.mydomain.com [192.168.1.101] with 32 bytes of data:
Reply from 192.168.1.101: bytes=32 time<10ms TTL=128
Reply from 192.168.1.101: bytes=32 time<10ms TTL=128
Reply from 192.168.1.101: bytes=32 time<10ms TTL=128
Ping statistics for 192.168.1.101:
Packets: Sent = 3, Received = 3, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
======================
tracert (trace route. traces the path from your system to the target system)
tracert 192.168.1.101
Tracing route to computer1.mydomain.com [192.168.1.101]
over a maximum of 30 hops:
1 <10 ms <10 ms <10 ms computer1.mydomain.com [192.168.1.101]
Trace complete.
=======================
nbtstat (Displays NetBIOS over TCP/IP (NetBT) protocol statistics, NetBIOS name tables for both the local computer and remote computers, and the NetBIOS name cache.)
This table won't display correctly in this Answers window, but it sort of looks like this,
nbtstat 192.168.1.101
Local Area Connection 2:
Node IpAddress: [192.168.1.101] Scope Id: []
NetBIOS Remote Machine Name Table
Name Type Status
---------------------------------------------
mycomputer<00> UNIQUE Registered
NA <00> GROUP Registered
mycomputer<20> UNIQUE Registered
NA <1E> GROUP Registered
NA <1D> UNIQUE Registered
..__MSBROWSE__.<01> GROUP Registered
mycomputer<03> UNIQUE Registered
__VMWARE_USER__<03> UNIQUE Registered
MAC Address = 00-11-DF-B0-09-63
2007-03-16 13:19:38
·
answer #1
·
answered by Kevin 7
·
5⤊
0⤋