ENSP配置VXLAN
时间: 2024-02-29 13:47:40 浏览: 168
eNspVlan配置
要在ENSP上配置VXLAN,需要进行以下步骤:
1. 创建VXLAN实例
```
[ENSP] vxlan instance instance-name
[ENSP-vxlan-instance-instance-name] quit
```
2. 创建VXLAN通道
```
[ENSP] interface vxlan-channel channel-id
[ENSP-Vxlan-channel-channel-id] quit
```
3. 配置VXLAN通道的远端IP地址
```
[ENSP] interface vxlan-channel channel-id
[ENSP-Vxlan-channel-channel-id] remote ip-address
[ENSP-Vxlan-channel-channel-id] quit
```
4. 配置VXLAN通道的本地VNI和远端VNI
```
[ENSP] interface vxlan-channel channel-id
[ENSP-Vxlan-channel-channel-id] vni local-vni remote-vni
[ENSP-Vxlan-channel-channel-id] quit
```
5. 配置VXLAN通道的本地IP地址
```
[ENSP] interface vxlan-channel channel-id
[ENSP-Vxlan-channel-channel-id] source ip-address
[ENSP-Vxlan-channel-channel-id] quit
```
6. 将VXLAN通道绑定到物理接口上
```
[ENSP] interface interface-type interface-number
[ENSP-interface-interface-type-interface-number] portswitch
[ENSP-interface-interface-type-interface-number] undo portswitch vlan vlan-id
[ENSP-interface-interface-type-interface-number] vxlan tunnel select channel-id
[ENSP-interface-interface-type-interface-number] quit
```
阅读全文