(1) 创建一个VLAN,指定VLAN名称和ID号 set vlans vlan vlan id 10 (2) 将交换机端口修改为access模式加入到新创建的VLAN中 set interfaces ge-0/0/1 unit 0 family ethernet-switching port-mode access set interfaces ge-0/0/1 unit 0 family ethernet-switching vlan members 10 (3) 创建3层VLAN子端口,并且将子端口和VLAN关联: set interfaces vlan unit 10 family inet address 192.168.1.1/24 set vlans vlan l3-interface vlan.10 //vlan子端口和VLAN对应起来
VLAN配置规范要求 (1) 指定VLAN名称 (2) 设置端口VLAN的时候指定端口为access模式 (3) 设置interface vlan子端口的时候,unit子端口号要跟vlan id一致。