Cisco 2.4 静默路由

要求


1、PC3默认数据要从R1的Eth1/2到R3的Eth1/2,当该条线路出现故障的时候,数据从R1的S0/0/0到R2的S0/0/0
2、PC2默认数据要从R3的S0/0/0到R2的S0/0/1,当该条线路出现故障的时候,数据从R3的Eth1/2到R1的Eth1/2
3、实现全网联通

Cisco 2.4 静默路由


一、按照线路连接并配置IP


红色线:DCE串口线

用户自定义设备中的路由器2811里面没有Eth1/2模块,需要断电后,移除添加新模块。

Cisco 2.4 静默路由
配置各PC的 ip

192.168.149.1
255.255.255.0
192.168.149.254
以此类推

二、路由器1配置


en
conf t
int f0/0
no shut
ip add 192.168.151.254 255.255.255.0
exit
int s0/0/0
no shut
ip add 192.168.0.14 255.255.255.252
exit
int e1/2
no shut
ip add 192.168.0.21 255.255.255.252
exit

三、路由器2配置


交叉线有时钟标志的一端是DCE ,需要设置频率,末端为 DTE 无需设置。

en
conf t
int f0/0
no shut
ip add 192.168.149.254 255.255.255.0
exit
int s0/0/0
no shut
clock rate 64000
ip add 192.168.0.13 255.255.255.252
exit
int s0/0/1
no shut
clock rate 64000
ip add 192.168.0.17 255.255.255.252
exit

四、路由器3配置


en
conf t
int f0/0
no shut
ip add 192.168.150.254 255.255.255.0
exit
int s0/0/0
no shut
ip add 192.168.0.18 255.255.255.252
exit
int e1/2
no shut
ip add 192.168.0.22 255.255.255.252
exit

五、实现全网联通


路由介绍

1、默认路由

格式:0.0.0.0 0.0.0.0 相邻路由地址 1~255(优先级:数值越大,优先级越小)

ip route 0.0.0.0 0.0.0.0 192.168.0.22 7

2、静态路由

格式:指定路由网段、子网掩码、目标地址

ip route 192.168.151.0 255.255.255.0 192.168.0.14

3、动态路由

00

路由器1配置

en
conf t
ip route 0.0.0.0 0.0.0.0 192.168.0.22
ip route 0.0.0.0 0.0.0.0 192.168.0.22 7

路由器2配置

en
conf t
ip route 192.168.150.0 255.255.255.0 192.168.0.18
ip route 192.168.151.0 255.255.255.0 192.168.0.14

路由器3配置

en
conf t
ip route 0.0.0.0 0.0.0.0 192.168.0.17
ip route 0.0.0.0 0.0.0.0 192.168.0.21 7

测试联通

ping 192.168.149.1

上一篇:操作系统(Linux)


下一篇:c语言数据结构线性表之status蜜汁困惑