BGP高级特性

在大型网络中通常会部署BGP,相比于IGP,BGP拥有更加灵活的路由控制能力。每一条BGP路由都可以携带多个路径属性,针对其属性也有特有的路由匹配工具,包括: AS_Path Filter和community Filter。根据实际组网需求,可以实施路由策略,控制路由的接收和发布。

同时,为了提升网络性能,BGP提供了各种高级特性以及多种组网部署方案。

本课程将介绍BGP路由控制的原理与配置,介绍常用的BGP高级特性,包括:ORF、对等体组、安全特性、4字节As号,还会介绍BGP路由反射器的组网部署

BGP路由控制

image-20230702161157594

路由过滤

华为设备用于路由过滤的命令

1
peer 1.1.1.1 filter-policy acl x import/export  //直接调用acl进行过滤
1
peer 1.1.1.1 ip-prefix 1 import/export   //调用前缀列表进行路由过滤
1
peer 1.1.1.1 as-path-filter  import/export //调用as-path-filter进行路由过滤
1
peer 1.1.1.1 route-policy   import/export //调用route-policy进行路由过滤以及BGP属性修改

如果多种过滤工具同时使用,deny拒绝策略优先生效

正则表达式

image-20230702162526802

特殊字符举例

image-20230702162830340

image-20230702162853932