目录
实验要求:
步骤一:拓扑设计IP地址规划
拓扑设计
R1
R2
R3
R4
发布路由
R1
R2
R3
R4
双向重发布
在R2和R4 上进行
R2
R4
检查R1
修改开销值选路
择优选择去4.0网段的路径
测试:编辑
择优选择去32网段的路径
测试:编辑
择优选择去34网段的路径
测试:编辑
检查R3
检测:
检测:编辑
实验要求:
1.使用双点双向重发布
2.所有路由进行最佳选路
3.存在备份路经,不得出现环路,和路由回馈
步骤一:拓扑设计IP地址规划
拓扑设计
R1
interface Serial4/0/0link-protocol pppip address 12.1.1.1 255.255.255.0
interface GigabitEthernet0/0/0ip address 14.1.1.1 255.255.255.0
interface LoopBack0ip address 1.1.1.1 255.255.255.0
R2
interface Serial4/0/0link-protocol pppip address 12.1.1.2 255.255.255.0
interface Serial4/0/1link-protocol pppip address 23.1.1.2 255.255.255.0
interface LoopBack0ip address 2.2.2.2 255.255.255.0
R3
interface Serial4/0/0link-protocol pppip address 34.1.1.3 255.255.255.0
interface Serial4/0/1link-protocol pppip address 23.1.1.3 255.255.255.0
interface LoopBack0ip address 3.3.3.3 255.255.255.0
R4
interface Serial4/0/0link-protocol pppip address 34.1.1.4 255.255.255.0
interface GigabitEthernet0/0/0ip address 14.1.1.4 255.255.255.0
interface LoopBack0ip address 4.4.4.4 255.255.255.0
发布路由
R1
rip 1version 2network 14.0.0.0network 12.0.0.0network 1.0.0.0
R2
ospf 1 area 0.0.0.0 network 23.1.1.0 0.0.0.255
rip 1version 2network 12.0.0.0network 2.0.0.0
R3
ospf 1 area 0.0.0.0 network 3.3.3.0 0.0.0.255 network 23.1.1.0 0.0.0.255 network 34.1.1.0 0.0.0.255
R4
ospf 1 area 0.0.0.0 network 4.4.4.0 0.0.0.255 network 34.1.1.0 0.0.0.255
rip 1version 2network 14.0.0.0
双向重发布
在R2和R4 上进行
R2
ospf 1 import-route rip 1
rip 1import-route ospf 1
R4
ospf 1 import-route rip 1
rip 1import-route ospf 1
检查R1
检测命令:<R1>display ip routing-table protocol rip
解释: 子网掩码24位的为直连路由,而子网掩码为32位的为通过重发布获取的路由。
若要进行匹配,则会优先匹配掩码长的,即最长掩码匹配规则
此时若要消除子网掩码为32位的环回地址IP,可以将该接口网络类型修改为broadcast 类型。
[R3-LoopBack0]ospf network-type broadcast
[R4-LoopBack0]ospf network-type broadcast
修改开销值选路
择优选择去4.0网段的路径
走14网段,剩余路径设置为备份路径,在R2上修改
[R2]ip ip-prefix 1 permit 4.4.4.0 24
[R2]route-policy 1 permit node 10
[R2-route-policy]if-match ip-prefix 1
[R2-route-policy]apply cost + 10
[R2-route-policy]q
[R2]route-policy 1 permit node 20 # 创建空列表
[R2-route-policy]q
[R2]rip 1
[R2-rip-1]import-route ospf 1 route-policy 1 # 重发布时调用
测试:
择优选择去32网段的路径
走12网段,剩余路径设置为备份路径,在R4上修改
ip ip-prefix 1 index 10 permit 23.1.1.0 24
route-policy 1 permit node 10 if-match ip-prefix 1 apply cost + 10
#
route-policy 1 permit node 20
#
rip 1import-route ospf 1 route-policy 1
测试:
择优选择去34网段的路径
走14网段,剩余路径设置为备份路径,在R2上修改
[R2]ip ip-prefix 2 permit 34.1.1.0 24
[R2]route-policy 1 permit node 15
Info: New Sequence of this List.
[R2-route-policy]if-match ip-prefix 2
[R2-route-policy]apply cost + 10
测试:
检查R3
检测命令:<R3>display ip routing-table protocol OSPF
在R2上修改type类型使除14网段外,其余都走R2
由于type1优于type2因此修改为type1
检测:
发现14网段不满足要求,则因对14网段的COS值进行修改,在R4上进行修改
[R4]ip ip-prefix 14 permit 14.1.1.0 24
[R4]route-policy 14 permit node 10
[R4-route-policy]if-match ip-prefix 14
[R4-route-policy]apply cost-type type-1
[R4-route-policy]apply cost - 10
[R4]route-policy 14 permit node 20
[R4-ospf-1]import-route rip 1 route-policy 14