路由器OSPF的基本配置—测试接口的连通性
接口的连通性是最重要的一个环节,如果这个环节没有保证,就根本无法进行下面的操作。
在每台路由器的特权模式依次输入如下命令,用于查看接口状态:
- R1#sh ip interface brief
- Interface IP-Address OK? Method Status Protocol
- Serial1/0 199.99.1.1 YES manual up up
- Loopback0 1.1.1.1 YES manual up up
- R2# sh ip interface brief
- Interface IP-Address OK? Method Status Protocol
- Serial1/0 199.99.1.2 YES manual up up
- Serial1/1 199.99.2.1 YES manual up up
- Loopback0 2.2.2.2 YES manual up up
- R3#sh ip interface brief
- Interface IP-Address OK? Method Status Protocol
- Serial1/1 199.99.2.2 YES manual up up
- Loopback0 3.3.3.3 YES manual up up
注意:一定要注意灰色部分一定都要双“UP”。
在中间路由器R2的特权模式依次输入如下命令:
R2#ping 199.99.1.1 利用ping命令来测试直连接口的连通性
- Type escape sequence to abort.
- Sending 5, 100-byte ICMP Echos to 199.99.1.1, timeout is 2 seconds:
- !!!!!
- Success rate is 100 percent (5/5), round-trip min/avg/max = 8/28/84 ms
- R2#ping 199.99.2.2
- Type escape sequence to abort.
- Sending 5, 100-byte ICMP Echos to 199.99.2.2, timeout is 2 seconds:
- !!!!!
- Success rate is 100 percent (5/5), round-trip min/avg/max = 12/26/60 ms
也可在中间路由器R2的配置模式依次输入如下命令:(此为新版IOS12.4命令)
- R2(config)#do ping 199.99.1.1
- Type escape sequence to abort.
- Sending 5, 100-byte ICMP Echos to 199.99.1.1, timeout is 2 seconds:
- !!!!!
- R2(config)#do ping 199.99.2.2
- Sending 5, 100-byte ICMP Echos to 199.99.2.2, timeout is 2 seconds:
- !!!!!
- Success rate is 100 percent (5/5), round-trip min/avg/max = 12/26/60 ms
“!!!!!”表示可达,如果出现“.”或者“U”,代表的是不可达。
路由器OSPF配置中的测试接口的连通性配置过程我们就向大家介绍完了,希望大家已经掌握。下一篇我们将会为大家介绍路由器OSPF配置的第三步:OSPF的基本配置及连通性测试
【编辑推荐】