cisco交换机常用配置命令
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
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。