实验二策略的使用
程序员文章站
2024-03-25 11:45:46
...
需求:1、R3到192.168.1.1 192.168.3.1的路由走R3-R2-R1,并留有备份
2、R3到192.168.2.1 192.168.4.1的路由走R3-R4-R1,并留有备份
3、10.0.12.0、10.0.14.0的路由不引进ospf中
在左侧起rip,右边起ospf在R2,R4的两边分别起RIP和ospf
将rip发不到ospf中
1、匹配192.168.1.0 192.168.3.0的路由将走R2的cost改为20,走R4的cost改为30
2、匹配192.168.2.0 192.168.4.0的路由将走R2的cost改为30,走R4的cost改为20
3、10.0.12.0、10.0.14.0的路由不引进ospf中
使用前缀列表匹配这两个网段
R1配置
#
interface GigabitEthernet0/0/0
ip address 10.0.12.1 255.255.255.0
#
interface GigabitEthernet0/0/1
ip address 10.0.14.1 255.255.255.0
#
interface GigabitEthernet0/0/2
#
interface NULL0
#
interface LoopBack0
ip address 10.0.1.1 255.255.255.255
#
interface LoopBack1
ip address 192.168.1.1 255.255.255.0
#
interface LoopBack2
ip address 192.168.2.1 255.255.255.0
#
interface LoopBack3
ip address 192.168.3.1 255.255.255.0
#
interface LoopBack4
ip address 192.168.4.1 255.255.255.0
#
rip 1
undo summary
version 2
network 10.0.0.0
network 192.168.1.0
network 192.168.2.0
network 192.168.3.0
network 192.168.4.0
#
R2配置
acl number 2000
rule 5 permit source 192.168.1.0 0.0.254.255
acl number 2001
rule 5 permit source 192.168.0.0 0.0.254.255
#
firewall zone Local
priority 15
#
interface GigabitEthernet0/0/0
ip address 10.0.23.1 255.255.255.0
#
interface GigabitEthernet0/0/1
ip address 10.0.12.2 255.255.255.0
#
interface GigabitEthernet0/0/2
#
ospf 1 router-id 2.2.2.2
import-route rip 1 route-policy 1
area 0.0.0.0
network 10.0.23.1 0.0.0.0
#
rip 1
undo summary
version 2
network 10.0.0.0
#
route-policy 1 permit node 5
if-match acl 2000
apply cost 20
apply cost-type type-1
#
route-policy 1 permit node 10
if-match acl 2001
apply cost 30
apply cost-type type-2
#
route-policy 1 deny node 15
if-match ip-prefix 2
#
route-policy 1 permit node 100
#
ip ip-prefix 2 index 10 permit 10.0.12.0 24
ip ip-prefix 2 index 20 permit 10.0.14.0 24
#
R3配置:
#
interface GigabitEthernet0/0/0
ip address 10.0.23.2 255.255.255.0
#
interface GigabitEthernet0/0/1
ip address 10.0.34.2 255.255.255.0
#
interface GigabitEthernet0/0/2
#
interface NULL0
#
ospf 1 router-id 3.3.3.3
area 0.0.0.0
network 10.0.23.2 0.0.0.0
network 10.0.34.2 0.0.0.0
#
R4配置:
#
interface GigabitEthernet0/0/0
ip address 10.0.34.1 255.255.255.0
#
interface GigabitEthernet0/0/1
ip address 10.0.14.2 255.255.255.0
#
interface GigabitEthernet0/0/2
#
ospf 1 router-id 4.4.4.4
import-route rip 1 route-policy 1
area 0.0.0.0
network 10.0.34.1 0.0.0.0
#
rip 1
undo summary
network 10.0.0.0
#
route-policy 1 permit node 5
if-match acl 2000
apply cost 30
apply cost-type type-1
#
route-policy 1 permit node 10
if-match acl 2001
apply cost 20
apply cost-type type-2
#
route-policy 1 deny node 15
if-match ip-prefix 2
#
route-policy 1 permit node 100
#
ip ip-prefix 2 index 10 permit 10.0.12.0 24
ip ip-prefix 2 index 20 permit 10.0.14.0 24
#
上一篇: 网络实验_RIP
推荐阅读
-
实验二策略的使用
-
[2019计算机视觉]——贪心学院 学习笔记 【实验】2.1 使用逻辑函数 完成对购车的预测
-
Android高级控件系列二之第三方控件PullToRefreshListView下拉刷新的使用
-
Maven的简单使用二
-
MySQL中的字符集涵义及使用方法总结(二) 博客分类: MySQL MySQLJDBC虚拟机OSSQL
-
python unittest 极简自动化测试框架:二、 BeautifulReport的使用简解,生成漂亮的报告
-
使用二维数组打印一个10行的杨辉三角
-
【数据库实验课堂】实验二 使用SQL Server管理数据表
-
Kotlin 中 Lambda的使用 二、函数类型和实例化
-
JSON Web Token令牌(JWT)的使用(二)重写自带的用户认证和token流程