router7 redistribute

 

1、重发布环境
1)网络升级 RIPV1--->OSPF EIGRP--->OSPF
2)网络合并
2、重发布目的及对象
1)目的:一种路由要让另一种路由协议知道
2)对象:路由表 sh ip route
3、重发布
1)进RIP
default metric=无穷大,必须指定
2)进OSPF
default metric=20
metric type=2
subnet
3)进EIGRP
default metric=无穷大
4)进ISIS
level-1--->类似OSPF的完全stub 区域
level-2--->类似OSPF的area 0
default metric =level-2 0
4 OSPF RIP
5 ISIS EIGRP
R1(config-router)#router isis
R1(config-router)#net 49.0001.0000.0000.0001.00
R1(config-router)#INT S1/0
R1(config-if)#ip router isis
R2(config)#router isis
R2(config-router)#net 49.0001.0000.0000.0002.00
R2(config-router)#int lo 0
R2(config-if)#ip router isis
R2(config-if)#int s1/0
R2(config-if)#ip router isis
R1(config-router)#redistribute isis metric 1000 100 255 1 1500
R1(config-if)#router eigrp 1
R1#sh run | b r e
router eigrp 1
 redistribute isis level-2 metric 10000 100 255 1 1500
R1(config-router)#redistribute isis level-1 metric 10000 100 255 1 1500
R1(config-router)#redistribute connected metric 10000 100 255 1 1500
R1(config-router)#router isis
R1(config-router)#redistribute eigrp 1
6 、路由更新控制
1)passive-int
RIP 只收不发
EIGRP OSPF 不收也不发
2 发布列表
对象 路由表
          DV     LS
in       YES     YES
out      YES     NO
out            重发布
(1)只发布4.4.4.0/24
R4(config)#access-list 1 per 4.4.4.0
R4(config)#router rip
R4(config-router)#distribute-list 1 out f0/0
(2)OSPF中只接收2.2.1.0/24
R1(config)#access-list 1 per 2.2.1.0
R1(config)#router ospf 1
R1(config-router)#distribute-list 1 in s1/0
(3)重发布进行控制
R2(config)#access-list 2 per 2.2.1.0
R2(config-router)#distribute-list 2 out connected (被重发布协议)
7、route-map--->操作类似ACL
1)route-map不仅可以匹配,还可以设置属性
2)route-map匹配顺序自上而下,
一旦匹配马上跳出执行动作,
默认最后都有deny all
匹配条件:match x y z--->or 没有一个match :match-any
          match a
    match b
   match c------->and
设置策略 :set
      没有一个 set:set none      
3 ) route-map 应用
(1) 重发布过滤
(2) 策略路由匹配数据
(3)BGP 属性调整
R2(config)#access-list 2 per 2.2.1.0
R2(config)#route-map cisco per 10
R2(config-route-map)#match ip add 2
R2(config-route-map)#router ospf 1
R2(config-router)#re con su route-map cisco
8、双点双向重发布
1)发布类型
单点单向
单点双向
双点单向
双点双向
2)双点双向发布问题
(1)次佳路径
(2)loop
3)解决
修改AD+路由过滤
R1(config-router)#distance 121 4.4.4.4 0.0.0.0 1
 
 
 

你可能感兴趣的:(网络,职场,休闲,router,路由表)