网络常用测试工具的应用实验报告
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
常用网络工具的应用
一、实验目的:
1.了解系统网络命令及其所代表的含义,以及所能对网络进行的操作。
2.通过网络命令了解运行系统网络状态,并利用网络命令对网络进行简单的操作。二、二、实验仪器设备及器材
Window XP 局域网
三、实验相关理论
1.PING命令是检查网络连接状况的网络工具,可以用它来检测数据包到达目的主机的可能性。
2.Win98:winipcfg或Win2000以上:Ipconfig/all命令显示DNS服务器地址、IP地址、子网掩码地址、默认网关的IP地址。
3.Netstat是显示网络连接和有关协议的统计信息的工具。Netstat主要用于:网络接口的状况;程序表的状况;协议类的统计信息的显示三个方面。
4.ARP:地址解析协议命令,用于将IP地址解析为MAC地址。
四、实验要求:
验前认真预习TCP/IP协议内容,尤其应认真理解WINDOWS网络相关原理;在进行实验时,应注意爱护机器,按照试验指导书的要求的内容和步骤完成实验,尤其应注意认真观察试验结果,做好记录;实验完成后应认真撰写实验报告。
五、实验原理
六、实验步骤
1、最常用的网络测试工具-PING.EXE
(1)判断本地的TCP/IP协议栈是否已安装成功
C:\Documents and Settings\student>ping 127.0.0.1
Pinging 127.0.0.1 with 32 bytes of data:
用32个数据字节验证本机与计算机的连接
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
返回本机:字节为32个时间小于10 毫秒生存时间为128 Ping statistics for 127.0.0.1:
统计本机的数据:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
包数:发送为4,接收为4,丢失为0(丢失率为0%)Approximate round trip times in milli-seconds:
大概回路行程时间在毫秒
Minimum = 0ms, Maximum = 0ms, Average = 0ms
最小为0毫秒,最大为0毫秒,平均为0毫秒
(2)判断能否到达指定IP地址的远程计算机
C:\Documents and Settings\student>ping 10.64.42.1
Pinging 10.64.42.1 with 32 bytes of data:
用32个数据字节验证网关与计算机的连接
Reply from 10.64.42.1: bytes=32 time<10ms TTL=64
返回网关:字节为32个时间小于10 毫秒生存时间为64 Reply from 10.64.42.1: bytes=32 time<10ms TTL=64
Reply from 10.64.42.1: bytes=32 time=34ms TTL=64
Reply from 10.64.42.1: bytes=32 time<10ms TTL=64
Ping statistics for 10.64.42.1:
统计网关的数据:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
包数:发送为4,接收为4,丢失为0(丢失率为0%)Approximate round trip times in milli-seconds:
大概回路行程时间在毫秒
Minimum = 0ms, Maximum = 34ms, Average = 8ms 最小为0毫秒,最大为34毫秒,平均为8毫秒
(3)根据域名获得其对应的IP地址
C:\Documents and Settings\student>ping Pinging [59.64.114.98] with 32 bytes of data: 用32个数据字节验证腾讯网与计算机的连接
Reply from 59.64.114.98: bytes=32 time=2ms TTL=57
返回腾讯网:字节为32 时间为2毫秒生存时间为57 Reply from 59.64.114.98: bytes=32 time=1ms TTL=57 Reply from 59.64.114.98: bytes=32 time=1ms TTL=57 Reply from 59.64.114.98: bytes=32 time=1ms TTL=57 Ping statistics for 59.64.114.98:
统计腾讯网的数据:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
包数:发送为4,收回为4,丢失为0(丢失率为0%)Approximate round trip times in milli-seconds:
大概循环时间在毫秒:
Minimum = 1ms, Maximum = 2ms, Average = 1ms
最小值为1毫秒,最大值为2毫秒,平均值为1毫秒(4)根据IP地址获取域名
C:\Documents and Settings\student>ping 59.64.114.98 Pinging 59.64.114.98 with 32 bytes of data:
用32个数据字节验证网络与计算机的连接
Reply from 59.64.114.98: bytes=32 time=1ms TTL=57 Reply from 59.64.114.98: bytes=32 time=2ms TTL=57 Reply from 59.64.114.98: bytes=32 time=7ms TTL=57 Reply from 59.64.114.98: bytes=32 time=2ms TTL=57
返回腾讯网:字节为32 时间为2毫秒生存时间为57 Ping statistics for 59.64.114.98:
统计网络的数据:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
包数:发送为4,收回为4,丢失为0(丢失率为0%)Approximate round trip times in milli-seconds:
大概循环时间在毫秒:
Minimum = 1ms, Maximum = 7ms, Average = 3ms
最小值为1毫秒,最大值为7毫秒,平均值为3毫秒(5)根据IP地址获取机器名
C:\Documents and Settings\student>ping -a 127.0.0.1 Pinging student14 [127.0.0.1] with 32 bytes of data: