vue项目接口域名动态的获取方法
616
2022-09-18
路由引入-tag(路由引入是什么意思)
拓扑图
解析
通过打标签的方法,防止路由回路
工作原理是:在进入设备打标签,在出设备上禁止出
打标签AR4:
acl number 2000
rule 5 permit source 192.168.1.0 0.0.0.255
rule 10 permit source 192.168.4.0 0.0.0.255
route-policy rip2ospf permit node 10
if-match acl 2000
apply tag 10 //打标签
import-route rip route-policy rip2ospf //使用路由策略引入路由
禁止打标签路由的产生回路AR2:
route-policy ospf2rip deny node 10
if-match tag 10 //匹配路由
import-route ospf route-policy ospf2rip //使用路由策略引入路由
实例
R2:
system-view
sysname r2
interface gigabitethernet 0/0/0
ip address 192.168.1.2 24
interface gigabitethernet 0/0/1
ip address 192.168.2.1 24
interface loopback 0
ip address 2.2.2.2 32
ospf 1 router-id 2.2.2.2
area 0
net 192.168.2.0 0.0.0.255
rip 1
version 2
network 192.168.1.0
import-route ospf route-policy ospf2rip
acl number 2001
rule 5 permit source 192.168.2.0 0.0.0.255
rule 10 permit source 192.168.3.0 0.0.0.255
route-policy ospf2rip permit node 10
if-match acl 2001
apply tag 100
route-policy ospf2rip deny node 20
if-match tag 10
R4:
system-view
sysname r4
interface gigabitethernet 0/0/0
ip address 192.168.3.2 24
interface gigabitethernet 0/0/1
ip address 192.168.4.1 24
interface loopback 0
ip address 4.4.4.4 32
ospf 1 router-id 4.4.4.4
area 0
net 192.168.3.0 0.0.0.255
import-route rip route-policy rip2ospf
rip 1
version 2
network 192.168.4.0
acl number 2001
rule 5 permit source 192.168.1.0 0.0.0.255
rule 10 permit source 192.168.4.0 0.0.0.255
route-policy rip2ospf permit node 10
if-match acl 2001
apply tag 10
route-policy rip2ospf deny node 20
if-match tag 100
注意:路由引入避免回路有多种方法,常用的有以下几种
使用路由策略打标签改变优先级
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~