博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CCNA(Stand-ALONE)Lab 14-Troubleshooting RIP
阅读量:5897 次
发布时间:2019-06-19

本文共 2223 字,大约阅读时间需要 7 分钟。

Objective: configure IP addresses on Routers 1, 2, and 4 with Routing Information Protocol (RIP)as the routing protocol. Then observe routing activity using the debug ip rip command, and examine routes using the show ip route command.
Lab Equipment: Router 1, Router 2, and Router 4 from the eRouters menu
Background Reading: Lab Primer Lesson 7: Routing Protocols
1. configure Routers 1, 2, and 4 to the specifi cations outlined in the table below.
Router1:
Router2:
Router4:
2. Use the proper network statements to configure RIP on all routers.
Router1#conf t
Router1(config)#router rip
Router1(config-router)#network 192.168.1.0
Router1(config-router)#network 192.168.2.0
Router1(config-router)#exit
Router1(config)#exit
Router1#
Router2#config t
Router2(config)#router rip
Router2(config-router)#network 192.168.1.0
Router2(config-router)#exit
Router2(config)#exit
Router2#
Router4#config t
Router4(config)#router rip
Router4(config-router)#network 192.168.2.0
Router4(config-router)#exit
Router4(config)#exit
Router4#
3. Use the show ip route command to confirm that the routes are being received on all routers.
Router1#show ip route
Router2#show ip route
Router4#show ip route
4. Once the routers have received the routes, execute the debug ip rip command at the privileged mode prompt on Router1.
Router1#debug ip rip
Observe the output on Router1’s terminal screen. (The output could take up to 60 seconds to appear.)
5. To turn off the debug command, use the no keyword in front of the command (i.e., no debug ip rip).
Router1#no debug ip rip
6. View the routing table entries on Router2 and Router4. Notice the administrative distances and metrics for these routes.
Router2#show ip route
Router4#show ip route
7. Make sure you can ping all devices on the network from every other device. If all pings do not succeed, then you will need to troubleshoot the router configurations to ensure you configured all settings correctly.
Router1#ping 192.168.1.2
Router1#ping 192.168.2.2
Router2#ping 192.168.1.1
Router2#ping 192.168.2.2
Router4#ping 192.168.2.1
Router4#ping 192.168.1.2
************************************************
Above:
Next:
本文转自redking51CTO博客,原文链接:http://blog.51cto.com/redking/72133
,如需转载请自行联系原作者
你可能感兴趣的文章
订阅linux kernel的mail list
查看>>
mysql 批量更新多条记录(且不同值)的实现方法
查看>>
Hadoop上路_02-hadoop介绍和环境准备
查看>>
JFinal多参数搜索条件自动组装及参数传递
查看>>
Lua与ObjC的交互
查看>>
c++ ios_base register_callback方法使用
查看>>
Java中为什么需要Object类,Object类为什么是所有类的父类
查看>>
在Hadoop-1.2.1中跑著名的wordcount例程
查看>>
css3 -webkit-flex 布局
查看>>
大数据Benchmark
查看>>
windows server2008多用户远程登陆设置方法
查看>>
sencha touch巧妙使用请求超时提升用户体验
查看>>
15. 3Sum
查看>>
ArrayList源码解析
查看>>
基于SpringMVC、Maven以及Mybatis的环境搭建
查看>>
可见面判别算法---区域细分算法
查看>>
ViewPager Banner(广告墙)
查看>>
iOS开发20:Navigation Bar的简单设置
查看>>
iOS开发24:使用SQLite3存储和读取数据
查看>>
Yii2 Unable to verify your data submission 错误-CSRF
查看>>