华为交换机配置vlan
时间: 2023-08-25 11:14:56 浏览: 157
要在华为交换机上配置VLAN,可以按照以下步骤进行操作:
1. 创建VLAN:
vlan batch <vlan-id1> <vlan-id2> ... // 批量创建VLAN
vlan <vlan-id> // 创建单个VLAN
2. 配置VLAN名称(可选):
vlan <vlan-id>
name <vlan-name>
3. 将端口加入VLAN:
interface <interface-type> <interface-number>
port link-type access // 设置端口为access模式
port default vlan <vlan-id> // 设置端口的默认VLAN
port trunk allow-pass vlan <vlan-id> // 将端口加入指定的VLAN
注:其中,<vlan-id>为VLAN的ID号,<vlan-name>为VLAN的名称,<interface-type>和<interface-number>表示端口类型和端口编号。
如果需要将多个端口加入同一个VLAN,可以使用批量配置命令:
interface range <start-interface> to <end-interface>
port link-type access
port default vlan <vlan-id>
其中,<start-interface>和<end-interface>分别表示起始端口和结束端口的编号,例如:GigabitEthernet0/0/1 to GigabitEthernet0/0/24。
完成上述配置后,保存配置并退出即可。
阅读全文