华为网络之OSPF路由重分布

时间:2024-03-05 10:45:36

今天的实验路由重分布分为静态重分布和直连重分布,

静态重分布(将AR5右侧的网络重分布到左侧的OSPF网络中):

AR5上只需要做一个默认路由指向AR2的接口地址即可

AR2上需要做的配置:

大概逻辑过程是:告诉AR2到AR5右侧的172.16.1.0/24的网络路由怎么走;取一个名字定义一个ip前缀列表包含这个172.16.1.0/24的网络;在route-policy中匹配第二步的前缀;最后在ospf中用route-policy定义好的名称引入这个静态路由。

ip route-static 172.16.1.0 255.255.255.0 10.88.2.26
ip ip-prefix InServer index 5 permit 172.16.1.0 24
route-policy InServer permit node 10 
 if-match ip-prefix InServer

ospf 100 router-id 10.88.0.2 
 import-route static cost 100 type 1 route-policy InServer
 area 0.0.0.0 
  authentication-mode md5 1 cipher %$%$v_.]:q~jv@7li3NDHY9DU3Uc%$%$
  network 10.88.0.2 0.0.0.0 
  network 10.88.2.0 0.0.0.3 
  network 10.88.2.12 0.0.0.3 
  network 10.88.2.20 0.0.0.3 
  network 10.88.32.0 0.0.0.255 

直连重分布(将AR4右侧的网络重分布到左侧的OSPF网络中):

由于是直连,因此AR4无须静态路由指向172.16.100.0/24的网络,AR4上需要做的配置:

大概逻辑过程是:取一个名字定义一个ip前缀列表包含这个172.16.100.0/24的网络;在route-policy中匹配第二步的前缀;最后在ospf中用route-policy定义好的名称引入这个静态路由。

ip ip-prefix OutServer index 5 permit 172.16.100.0 24
route-policy OutServer permit node 10 
 if-match ip-prefix OutServer 

ospf 100 router-id 10.88.0.4 
 import-route direct cost 100 type 1 route-policy OutServer
 area 0.0.0.0 
  authentication-mode md5 1 cipher %$%$0!Q{G=.6a0]9`V!*$rQPU:3w%$%$
  network 10.88.0.4 0.0.0.0 
  network 10.88.2.4 0.0.0.3 
  network 10.88.2.16 0.0.0.3 
  network 10.88.2.20 0.0.0.3 
  network 10.88.33.0 0.0.0.255 

  两者的区别在于,直连的引入是import-route direct,静态引入是import-route static,另外就是直连的引入无须在路由器上写静态路由。