H3C交换机配置BGP
时间: 2024-06-13 13:06:50 浏览: 182
H3C交换机配置BGP的步骤如下:
1. 配置BGP路由器ID和AS号
```shell
<Switch> system-view
[Switch] bgp 65001
[Switch-bgp] router-id 1.1.1.1
```
2. 配置EBGP对等体
```shell
[Switch-bgp] peer 2.2.2.2 as-number 65002
[Switch-bgp] peer 2.2.2.2 connect-interface vlanif10
[Switch-bgp] peer 2.2.2.2 enable
```
3. 配置IBGP对等体
```shell
[Switch-bgp] peer 1.1.1.2 as-number 65001
[Switch-bgp] peer 1.1.1.2 connect-interface vlanif20
[Switch-bgp] peer 1.1.1.2 enable
```
4. 配置网络地址
```shell
[Switch-bgp] network 192.168.1.0 mask 255.255.255.0
```
5. 配置BGP属性
```shell
[Switch-bgp] peer 2.2.2.2 route-policy export test
[Switch-bgp] peer 2.2.2.2 route-policy import test
[Switch-bgp] peer 2.2.2.2 next-hop-local
```
6. 配置BGP路由策略
```shell
[Switch-bgp] ip ip-prefix test permit 192.168.1.0 24
[Switch-bgp] route-policy test permit node 10
[Switch-bgp-route-policy-test-10] if-match ip-address prefix-list test
[Switch-bgp-route-policy-test-10] apply cost 100
```
7. 保存配置并退出
```shell
[Switch-bgp] save
[Switch-bgp] quit
[Switch] save
[Switch] quit
```
阅读全文