华三vlan划分
时间: 2023-06-21 10:23:19 浏览: 189
华三VLAN划分的命令如下:
1. 创建VLAN:
```
system-view
vlan vlan-id
description vlan-description
```
2. 配置接口为VLAN端口:
```
interface interface-type interface-number
port link-type access
port default vlan vlan-id
```
接口类型(interface-type)可选的有Ethernet、GigabitEthernet等,接口号(interface-number)为接口的具体编号。
3. 配置接口为Trunk端口:
```
interface interface-type interface-number
port link-type trunk
port trunk allow-pass vlan vlan-list
```
其中,vlan-list为允许通过Trunk端口的VLAN列表,可以使用连字符“-”表示一段VLAN ID。
4. 配置子接口:
```
interface interface-type interface-number.subinterface-number
port link-type hybrid
port hybrid vlan vlan-id [ to vlan-id ]
ip address ip-address { mask | mask-length }
```
其中,interface-number为主接口号,subinterface-number为子接口号,vlan-id为该子接口所属的VLAN ID。
5. 配置VLANIF接口:
```
interface Vlanif vlan-id
ip address ip-address { mask | mask-length }
```
其中,Vlanif为虚接口名称,vlan-id为该接口所属的VLAN ID。
以上命令仅供参考,实际配置时应根据网络需求和拓扑结构进行相应的调整。
阅读全文