3、常用配置命令
3.1 把端口加入到vlan
Switch>en
Password:
Switch #conf t /*进入配置模式*/
Enter configuration commands, one per line. End with CNTL/Z.
Switch (config)#inter f 0/1 /*进入端口*/
Switch (config-if)#switchport access vlan X /*把端口加入到vlan X*/
Switch (config-if)#end
Switch #wr /*保存*/
Building configuration...
[OK]
Switch #
3.2 添加新vlan(在核心交换机上写)
Switch>en
Password:
Switch #conf t /*进入配置模式*/
Enter configuration commands, one per line. End with CNTL/Z.
Switch (config)#Vlan X /*添加新Vlan*/
Switch (config-vlan)#inter vlan X /*进入Vlan*/
Switch (config-if)#ip address x.x.x.x 255.255.255.0/*设置vlan ip地址*/ Switch (config-if)#no shut
3.3 配置trunk,透传vlan
Switch>en
Password:
Switch #conf t /*进入配置模式*/
Enter configuration commands, one per line. End with CNTL/Z.
Switch (config)#inter fast 0/x /*进入级联端口*/
Switch (config-if)#switchport mode trunk /*修改端口模式*/
Switch (config-if)# switchport trunk allowed vlan all /*设置允许通过的vlan*/ 保存
删除命令:所有的命令前面加no。