码迷,mamicode.com
首页 > 移动开发 > 详细

使用动态路由协议联通全网

时间:2020-04-27 00:06:46      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:方便   拓扑   要求   空白   自己   The   shu   结构图   结构   

需要的环境PacketTracer6(思科)

对路由器配置动态路由实现不同网段之间的通信
按要求搭建上面的网络拓扑结构
使用鼠标拖动将所需要的结构放入到空白处
配置好各台pc机的ip地址以及网关地址(ip地址以及各网关地址注明在上面)
对路由器连接的各个端口进行配置,命令如下:
左边路由器:
enable 15
configure terminal
interface fastethernet 0/0(查看端口号使用鼠标移入有连接的颜色的节点)
ip address 222.1.3.2 255.255.255.0
no shutdown
exit

interface serial 3/0
ip address 222.1.5.2 255.255.255.0
no shutdown
exit

interface serial 2/0
ip address 222.1.4.2 255.255.255.0
no shutdown
exit

右边路由器:
enable 15
configure terminal
interface fastethernet 0/0
ip address 222.1.2.5 255.255.255.0
no shutdown
exit

interface serial 3/0
ip address 222.1.6.2 255.255.255.0
no shutdown
exit

interface serial 2/0
ip address 222.1.4.1 255.255.255.0
no shutdown
exit

上边的路由器:
enable 15
configure terminal
interface fastethernet 0/0
ip address 222.1.1.4 255.255.255.0
no shutdown
exit

interface serial 3/0
ip address 222.1.6.1 255.255.255.0
no shutdown
exit

interface serial 2/0
ip address 222.1.5.1 255.255.255.0
no shutdown
exit

对各个路由器配置动态路由,命令如下:
左边路由器:
enable 15
configure terminal
router rip
version 2
network 222.1.3.0
network 222.1.4.0
network 222.1.5.0

右边路由器:
enable 15
configure terminal
router rip
version 2
network 222.1.2.0
network 222.1.6.0
network 222.1.4.0

上边路由器:
enable 15
configure terminal
router rip
version 2
network 222.1.1.0
network 222.1.5.0
network 222.1.6.0

查看各个路由器的路由表
为了方便查看,插入上面的网络拓扑结构图:

使用show ip route查看

对于左边的路由器,如果配置正确会显示:

对于右边的路由器,如果配置正确会显示:

对于上边的路由器,如果配置正确会显示:

8.进入PC机的Command Prompt 终端ping各个主机查看联通情况:

进入ip地址为222.1.1.1由近及远ping自己与各个主机

(1)ping 软件回环地址:

(2)ping自己的网卡:

(3)ping其他PC机

分析第一次ping的时候为什么会丢包或者延时

使用动态路由协议联通全网

标签:方便   拓扑   要求   空白   自己   The   shu   结构图   结构   

原文地址:https://blog.51cto.com/14803275/2490585

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!