以上图为例进行路由配置
1.划分ip
由上可知需要8个环回,6个主干道网段,共14个。5个子网。(划分成8个)
子网: 192.168.1.0/27 分给主干
主干 :192.168.1.0/30 192.168.1.4/30 192.168.1.8/30 192.168.12/30 192.168.1.16/30
192.168.1.20/30 192.168.1.24/30 192.168.1.28/30 (用6个)
其他子网 : 192.168.1.32/27 R1 192.168.1.32/28 192.1668.1.48/28
192.168.1.64/27 R2 192.168.1.64/28 192.168.1.80/28
192.168.1.96/27 R3 192.168.1.96/28 192.168.1.112/28
192.168.1.128/27 R4 192.168.1.128/28 192.168.1.144/28
192.168.1.160/27
192.168.1.192/27
192.168.1.224/27
2使用int GigabitEthernet 0/0/0 或int GigabitEthernet 0/0/1进入端口然后使用ip address进行配置各个端口IP如下
AR1:GE0/0/0 192.168.1.1/30 GE0/0/1 192.168.1.4/30
AR2:GE0/0/0 192.168.1.2/30 GE0/0/1 192.168.1.9/30
AR3:GE0/0/0 192.168.1.6/30 GE0/0/1 192.168.1.13/30
AR4;GE0/0/0 192.168.1.10/30 GE0/0/1 192.168.1.14/30 GE0/0/2 192.168.1.17/30 Ethernet 4/0/0 192.168.1.21/30
AR5:GE0/0/0192.168.1.18/30 GE0/0/1 192.168.1.22/30
可使用interface LoopBack 1检查
3设置静态路由
以AR1为例:需设置
ip route-static 192.168.1.64/27 192.168.1.2
ip route-static 192.168.1.96/27 192.168.1.6
ip route-static 192.168.1.128/27 192.168.1.2
ip route-static 192.168.1.8/30 192.168.1..2
ip route-static 192.168.12/30 192.1168.1.6
ip route-static 192.168.1.16/30 192.168.1.2
ip route-static 192.168.1.20/30 192.168.1.6
3因为不能直接编写静态路由到底5.5.5.0/24,故我们可以通过缺省路由到达5.5.5.0/24网段
以AR1为例
ip route-static 0.0.0.0 0.0.0.0 192.168.1.2
缺省路由又称为默认路由,是一种特殊的静态路由,目的地址与掩码配置为全零(0.0.0.0 0.0.0.0)。
4要求5中要求R4与R5间,正常1000M链路通信,故障时自动改为100M.所以我们可以通过浮动静态路由解决这个问题
ip route-static 192.168.1.16 30 4.6.8.2 preference 70
5检查ping情况如下便成功