admin 管理员组

文章数量: 887021


2023年12月17日发(作者:jspcms漏洞)

2

实验2 网络设备基本调试

实验任务一:搭建基本连接环境

步骤一:完成PC、交换机、路由器互连

在教师指导下,完成实验环境的搭建。

步骤二:配置IP地址

RTA的配置如下:

[H3C]sysname RTA

[RTA]interface GigabitEthernet 0/0

[RTA-GigabitEthernet0/0]ip add 192.168.0.1 24

[RTA]interface GigabitEthernet 0/1

[RTA-GigabitEthernet0/1]ip add 192.168.1.1 24

实验任务二:检查连通性

步骤一:检测RTA与PCA的连通性

[RTA]ping 192.168.0.10

PING 192.168.1.2: 56 data bytes, press CTRL_C to break

Reply from 192.168.0.10: bytes=56 Sequence=1 ttl=255 time=27 ms

Reply from 192.168.0.10: bytes=56 Sequence=2 ttl=255 time=27 ms

Reply from 192.168.0.10: bytes=56 Sequence=3 ttl=255 time=27 ms

Reply from 192.168.0.10: bytes=56 Sequence=4 ttl=255 time=26 ms

Reply from 192.168.0.10: bytes=56 Sequence=5 ttl=255 time=26 ms

--- 192.168.0.10 ping statistics ---

5 packet(s) transmitted

5 packet(s) received

0.00% packet loss

round-trip min/avg/max = 26/26/27 ms

结果显示,RTA收到了ICMP的Echo Reply报文,RTA可以ping通PCA。反之亦然。

这里路由器默认是发送5个ICMP请求报文,大小是56bytes,所以PING成功后,会收到5个Reply报文。而Windows默认是发送4个ICMP请求报文,大小是32bytes。

查看路由器ping命令可携带的参数。使用的完整命令为:

ping ?

再次检查对PCA的连通性,使用的完整命令依次为:

ping -c 50 192.168.0.10

ping -s 512 192.168.0.10

ping -a 192.168.1.1 192.168.0.10

步骤二:检测RTA与PCB的连通性

ping 192.168.1.1

- 1 -

2

实验任务三:检查数据包转发路径

步骤一:检查从PCA到PCB的数据包转发路径

tracert 192.168.1.10

总共2跳,第一跳为RTA,第二跳到达PCB。

步骤二:检查从RTA到PCB的数据包转发路径

tracert 192.168.1.10

总共1跳,第一跳到达PCB。

查看路由器tracert命令携带的参数。使用的完整命令为:

tracert ?

实验任务四:练习使用察看调试信息

步骤一:开启RTA终端对信息的监视和显示功能

terminal monitor

% Current terminal monitor is on.

terminal debugging

% Current terminal debugging is on.

步骤二:打开RTA上ICMP的调试开关

debugging ip icmp

步骤三:在PCA上ping RTA,观察RTB调试信息输出

ping -n 10 192.168.0.1

在RTA上的debugging信息输出类似于:

*Sep 12 08:07:17:460 2008 RTB IPDBG/7/debug_icmp:

ICMP Receive: echo(Type=8, Code=0), Src = 192.168.0.10, Dst = 192.168.0.1

*Sep 12 08:07:17:460 2008 RTB IPDBG/7/debug_icmp:

ICMP Send: echo-reply(Type=0, Code=0), Src = 192.168.0.1, Dst = 192.168.0.10

*Sep 12 08:07:17:686 2008 RTB IPDBG/7/debug_icmp:

ICMP Receive: echo(Type=8, Code=0), Src = 192.168.0.10, Dst = 192.168.0.1

*Sep 12 08:07:17:686 2008 RTB IPDBG/7/debug_icmp:

ICMP Send: echo-reply(Type=0, Code=0), Src = 192.168.0.1, Dst = 192.168.0.10

步骤四:关闭调试开关

undo debugging all

- 2 -


本文标签: 步骤 实验 任务 使用 信息