电脑技术学习

路由器BGP协议配置命令

dn001
a name="4.10.1 bgp default local-preference">4.10.1 bgp default local-preference

配置本地优先级。

bgp default local-preference localpref

no bgp default local-preference

【参数说明】

localpref 为配置的缺省本地优先级,范围为0~4294967295。

【缺省情况】

缺省的本地优先级为100,使用no bgp default local-preference命令可以恢复缺省的本地优先级。

【命令模式】

BGP协议配置模式

【使用指南】

可以用配置不同本地优先级的方法来影响BGP的路由选择。

【举例】

在同一自治区域中的两台路由器RTA、RTB分别使用X.25和FrameRelay协议和外部自治区域相连。可以使用此命令将RTB的缺省本地优先级配置为200,已使同一条路由同时通过RTA和RTB时优先选择经过RTB的路由。

Quidway(config-router-bgp)#bgp default local-preference 200

4.10.2 clear ip bgp

在BGP的策略或协议配置改变后,复位BGP的连接,已使新配置的策略生效。

clear ip bgp { * neighbor-address }

【参数说明】

参数‘*’指所有的BGP连接,也可以指定BGP伙伴的地址 neighbor-address以复位与特定BGP伙伴的连接。

【命令模式】

特权用户模式

【举例】

用timer命令配置了新的Keepalive间隔和Holdtime间隔后,需清除所有的BGP连接以使新配置生效。

Quidway#clear ip bgp *

4.10.3 default-information originate

配置BGP协议生成默认路由。

[ no ] default-information originate

【缺省情况】

BGP协议缺省不生成默认路由。

【命令模式】

BGP协议配置模式

【举例】

配置BGP协议生成默认路由。

Quidway(config-router-bgp)#default-information originate

4.10.4 default-metric

配置系统缺省的metric。

default-metric metric

no default-metric

【参数说明】

metric 为指定的MED,范围为1~4294967295。

【缺省情况】

缺省的metric为100,使用no default-metric命令可以恢复系统的缺省metirc。

【命令模式】

BGP协议配置模式

【使用指南】

在其它条件相同的情况下,系统优先选择MED较小的路由作为自治系统的外部路由。

【举例】

路由器RTA和RTB属于AS100,路由器RTC属于AS200。RTC是RTA和RTB的伙伴。RTA和RTC之间的网络为X.25网,RTB和RTC之间的网络为以太网。则可以配置RTB的MED为10。以使RTC优先选择RTB发送的路由。

Quidway(config-router-bgp)#default-metric 10

4.10.5 ip as-path Access-list

配置一个AS的正则表达式。

ip as-path access-list list-number { permit deny } as-regular-eXPression

no ip as-path access-list list-number

【参数说明】

list-number 为AS表达式的标号,范围为1~200;

as-regular-expression 为AS正则表达式。

【命令模式】

全局配置模式

【使用指南】

配置的AS正则表达式可用于BGP策略。

【举例】

配置一个AS表达式。

Quidway(config)#ip as-path access-list 10 permit 200,300

4.10.6 match as-path

指定Routemap中匹配的AS正则表达式的序号。

[ no ] match as-path list-number

【参数说明】

list-number 为AS正则表达式的序号

【缺省情况】

Routemap中缺省不匹配AS正则表达式。

【命令模式】

Routemap配置模式

【举例】

Quidway(config)#ip as-path access-list 2 permit 200,300

Quidway(config)#route-map test permit 10

Quidway(config-routemap)#match as-path 2

4.10.7 match interface


指定Routemap中匹配的接口类型。

[ no ] match interface [ interface-type interface-number ]

【参数说明】

interface-type 为接口类型

interface-number 为接口编号

【缺省情况】

Routemap中缺省不匹配接口类型。

【命令模式】

Routemap配置模式

【举例】

Quidway(config)#route-map test permit 10

Quidway(config-routemap)#match interface ethernet 0

4.10.8 match ip address

指定Routemap中匹配的IP地址范围。

[ no ] match ip address list-number

【参数说明】

list-number 为已配置的IP访问列表号。

【缺省情况】

Routemap中缺省不匹配IP地址范围。

【命令模式】

Routemap配置模式

【举例】

Quidway(config)#route-map test permit 10

Quidway(config-routemap)#match ip address 3

4.10.9 match metric

指定Routemap中匹配的metric。

[ no ] match metric metric

【参数说明】

metric 的范围是1~4294967295。

【缺省情况】

Routemap中缺省不匹配metric。

【命令模式】

Routemap配置模式

【举例】

Quidway(config)#route-map test permit 10

Quidway(config-rouemap)#match metric 5

4.10.10 neighbor group-name advertisement-interval

配置同伴组的发送路由时间间隔。

[ no ] neighbor group-name advertisement-interval seconds

【参数说明】

group-name 为已配置的同伴组名称。

seconds 为发送UPDATE消息的最小时间间隔,范围为1~1000。

【缺省情况】

缺省的发送时间间隔为5秒。

【命令模式】

BGP协议配置模式

【举例】

Quidway(config-router-bgp)#neighbor test remote 100

Quidway(config-router-bgp)#neighbor test advertisement-interval 10

4.10.11 neighbor group-name default-originate

设置同伴组引入默认路由。

[ no ] neighbor group-name default-originate [ route-map routemap-name ]

【参数说明】

group-name 为已配置的同伴组名称。

routemap-name为可选参数,指定默认路由经过的Routemap。

【缺省情况】

同伴组缺省不引入默认路由。

【命令模式】

BGP协议配置模式

【举例】

Quidway(config-router-bgp)#neighbor test remote-as 100

Quidway(config-router-bgp)#neighbor test default-originate