2022年2022年计算机网络实验-基本网络测试命令 .pdf
-
资源ID:27242089
资源大小:50.60KB
全文页数:6页
- 资源格式: PDF
下载积分:4.3金币
快捷下载
会员登录下载
微信登录下载
三方登录下载:
微信扫一扫登录
友情提示
2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
|
2022年2022年计算机网络实验-基本网络测试命令 .pdf
实验一 基本网络测试命令一、实验目的1.掌握 Windows 和 Linux 环境下基本网络测试命令的使用2.学会利用测试命令去判断和排除网络中存在的问题二、实验设备1.集线器或交换机 1 台2.PC 机 23 台三、预备知识(注:以下每个命令均先主要介绍在Windows 中的使用方法,然后介绍其在Linux 中所对应的命令的形式)1.ipconfig:检验网卡的 TCP/IP 设置情况,当使用 IPConfig 时不带任何参数选项, 那么它显示每个NIC 的 IP 地址、子网掩码和缺省网关值。ipconfig /all 当使用 all 选项时, IPConfig 还会显示网卡中的物理地址(MAC)及主机名等信息。(Linux-ifconfig :功能更强,不仅能查看网卡的设置,还能设置网卡的相关参数及控制网卡的工作状态。命令的详细用法可输入命令ifconfig help 或man ifconfig 查看,下面其它Linux 中的命令也类似。)2.ping:检查两台计算机之间的网络是否连通。使用方法: ping Dest_IP 参数常用参数解释:-t 连续向目标主机发送数据(按Ctrl+c 中断) ;-n 指定发包个数,缺省值为4;-l 指定发包大小,缺省值为32字节;(Linux-ping :功能更强)3.tracert:判定数据包到达目的主机经过的路径,显示包经过的中继点。使用方法: tracert Target_name (Linux-traceroute)stat :显示当前计算机中正在活动的网络连接信息和状态,如活动的TCP连接、计算机侦听的端口、以太网统计信息、IP 路由表等。常用参数解释:-n 以数字形式显示地址和端口-e 显示以太网统计信息-s 显示每个协议的使用状态-r 显示路由信息(Linux- netstat:功能略强)名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 6 页 - - - - - - - - - 5.arp:查看本地计算机ARP 高速缓存中的当前内容。 ( ARP 是一个重要的TCP/IP 协议,用于确定与IP 地址对应的网卡MAC 地址。 )常用参数解释:-a 查看高速缓存中的所有对应表-s 手工增添一个静态项目-d IP 手工删除一个静态项目(Linux-arp:功能略强)四、实验内容(注意:实验过程中请先关闭本机防火墙)1用 ipconfig 命令查找出本机 NIC 的 MAC 地址。Physical Address. . . . . . . . . : 00-1C-25-A9-09-99 Dhcp Enabled. . . . . . . . . . . : No IP Address. . . . . . . . . . . . : 172.17.12.14 Subnet Mask . . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . . : 172.17.12.254 DNS Servers . . . . . . . . . . . : 172.16.5.133 21)比较命令ping IPofPCB (IPofPCB 表示本组另一台计算机的IP 地址)和ping 172.20.1.254 返回信息的区别(其中time 表示数据包一个来回所用时间, TTL 表示生存期限)。Pinging 172.17.12.13 with 32 bytes of data: Reply from 172.17.12.13: bytes=32 time1ms TTL=64 Reply from 172.17.12.13: bytes=32 time1ms TTL=64 Reply from 172.17.12.13: bytes=32 time1ms TTL=64 Reply from 172.17.12.13: bytes=32 time1ms TTL=64 Ping statistics for 172.17.12.13: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms Pinging 172.20.1.254 with 32 bytes of data: Reply from 172.20.1.254: bytes=32 time1ms TTL=62 Reply from 172.20.1.254: bytes=32 time1ms TTL=62 Reply from 172.20.1.254: bytes=32 time1ms TTL=62 Reply from 172.20.1.254: bytes=32 time1ms TTL=62 Ping statistics for 172.20.1.254: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms 2) ping 同组的一台计算机,要求指定数据包个数为15 个,大小为 200B,写名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 6 页 - - - - - - - - - 出命令,并保存运行结果。Pinging 172.17.12.14-15-200 121.10.40.155 with 32 bytes of data: Reply from 121.10.40.155: bytes=32 time=5ms TTL=56 Reply from 121.10.40.155: bytes=32 time=5ms TTL=56 Reply from 121.10.40.155: bytes=32 time=6ms TTL=56 Reply from 121.10.40.155: bytes=32 time=5ms TTL=56 Ping statistics for 121.10.40.155: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 5ms, Maximum = 6ms, Average = 5ms 3运行命令 tracert 172.20.1.254 ,保存运行结果,并对结果作简单说明。Tracing route to 172.20.1.254 over a maximum of 30 hops 1 1 ms 1 ms 1 ms 172.17.12.254 2 1 ms 1 ms 1 ms 172.16.4.14 3 1 ms 1 ms netstat Active Connections Proto Local Address Foreign Address State TCP A206-14:1667 localhost:1666 TIME_WAIT C:Documents and SettingsAdministratornetstat Active Connections Proto Local Address Foreign Address State TCP A206-14:1729 :http TIME_WAIT TCP A206-14:1732 hx-in-:http TIME_WAIT TCP A206-14:1734 172.17.72.253:ftp TIME_WAIT TCP A206-14:1735 172.17.72.253:ftp TIME_WAIT TCP A206-14:1736 172.17.72.253:ftp ESTABLISHED TCP A206-14:1737 172.17.72.253:ftp ESTABLISHED 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 6 页 - - - - - - - - - C:Documents and SettingsAdministratornetstat Active Connections Proto Local Address Foreign Address State TCP A206-14:1739 localhost:1740 ESTABLISHED TCP A206-14:1740 localhost:1739 ESTABLISHED TCP A206-14:1742 localhost:1743 ESTABLISHED TCP A206-14:1743 localhost:1742 ESTABLISHED TCP A206-14:1729 :http TIME_WAIT TCP A206-14:1732 hx-in-:http TIME_WAIT TCP A206-14:1734 172.17.72.253:ftp TIME_WAIT TCP A206-14:1735 172.17.72.253:ftp TIME_WAIT TCP A206-14:1736 172.17.72.253:ftp ESTABLISHED TCP A206-14:1737 172.17.72.253:ftp TIME_WAIT TCP A206-14:1741 :http TIME_WAIT TCP A206-14:1744 hx-in-:http ESTABLISHED TCP A206-14:1745 219.143.204.117:http ESTABLISHED TCP A206-14:1748 172.17.72.253:http ESTABLISHED TCP A206-14:1749 172.17.72.253:http ESTABLISHED TCP A206-14:1750 172.17.72.253:http ESTABLISHED TCP A206-14:1751 172.17.72.253:http ESTABLISHED 5按顺序执行下列命令,然后查看并保存最后的运行结果1) arp d * (手工删除所有条目);C:Documents and SettingsAdministratorarp -d* Displays and modifies the IP-to-Physical address translation tables used by address resolution protocol (ARP). ARP -s inet_addr eth_addr if_addr ARP -d inet_addr if_addr ARP -a inet_addr -N if_addr -a Displays current ARP entries by interrogating the current protocol data. If inet_addr is specified, the IP and Physical 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 6 页 - - - - - - - - - addresses for only the specified computer are displayed. If more than one network interface uses ARP, entries for each ARP table are displayed. -g Same as -a. inet_addr Specifies an internet address. -N if_addr Displays the ARP entries for the network interface specified by if_addr. -d Deletes the host specified by inet_addr. inet_addr may be wildcarded with * to delete all hosts. -s Adds the host and associates the Internet address inet_addr with the Physical address eth_addr. The Physical address is given as 6 hexadecimal bytes separated by hyphens. The entry is permanent. eth_addr Specifies a physical address. if_addr If present, this specifies the Internet address of the interface whose address translation table should be modified. If not present, the first applicable interface will be used. Example: arp -s 157.55.85.212 00-aa-00-62-c6-09 . Adds a static entry . arp -a . Displays the arp table.2) arp a;C:Documents and SettingsAdministratorarp -a Interface: 172.17.12.14 - 0 x2 Internet Address Physical Address Type 172.17.12.254 00-d0-f8-f3-7f-4e dynamic 3) ping 172.17.12.254 ;C:Documents and SettingsAdministratorping 172.17.12.254 Pinging 172.17.12.254 with 32 bytes of data: Reply from 172.17.12.254: bytes=32 time1ms TTL=64 Reply from 172.17.12.254: bytes=32 time1ms TTL=64 Reply from 172.17.12.254: bytes=32 time1ms TTL=64 Reply from 172.17.12.254: bytes=32 timearp -a 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 6 页 - - - - - - - - - Interface: 172.17.12.14 - 0 x2 Internet Address Physical Address Type 172.17.12.254 00-d0-f8-f3-7f-4e dynamic 6在 Linux 平台下使用相应命令完成上面15 步的实验。7思考题:(1) 如何使用本次实验学习的测试命令来发现和排除网络故障?(举一至两个例子说明)。1用 ping 本机 IP 可以检查电脑是不是已连接到网络2Ipcongfig 本机 IP 可以查本机 IP,网络适配器通则工作正常,不通则是网络适配器出现故障(2)找出在 windows 和 linux 下 ping 命令使用的不同之处(要求至少找三个)。i.Linux ping 命令一直进行, 没有中断而windows 则是发送 4 个数据包然后中断ii.Linux 来回时间有具体到小数点三位,而windows 没有iii.Linux 发送数据包是64 字节而 windows 是 32 字节iv.Llinux 有记数来回多少次,而windows 只是 4 次名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 6 页,共 6 页 - - - - - - - - -