.
思科交换机常用命令大全
1.1 用户模式与特权模式
用户模式:可以使用一些基本的查询命令
特权模式:可以对交换机进行相关的配置
进入特权模式命令:Switch>enable
退出特权模式命令:Switch#exit
启用命令查询:?
时间设置:Switch#clock set 时间(自选参数,参数必须符合交换机要求)
显示信息命令:Switch#show 可选参数
注意:可以用TAB键补齐命令,自选参数为用户自定义参数,可选参数为交换机设定参数
查看交换机配置: Switch#show running-config
保存交换机配置:Switch#copy running-config startup-config
Switch#wr
查看端口信息:Switch#show interface
.
.
查看MAC地址表:Switch#show mac-address-table
查看交换机CPU的状态信息:Switch#show processes
1.2 全局配置模式
进入全局配置模式:Switch#configure terminal
主机名修改:Switch(config)#hostname 主机名(自选参数)
特权模式进入密码: Switch(config)#enable secret 密码(自选参数)
取消特权模式密码:Switch(config)#no enable secret
取消主机名设置: Switch(config)#no hostname
退出配置模式: Switch(config)#exit
需要特别注意的是在配置模式中无法使用show命令,如果要使用
的话show前必须加do和空格,例如:do show *
指定根交换机命令:Switch(config)#spanning-tree vlan 自选参数(VLAN号) root primary
例如: Switch(config)#spanning-tree vlan 1 root primary
.
.
需要注意的是:设置根交换机是基于VLAN的
关闭生成树协议命令:Switch(config)#no spanning-tree vlan 自选参数(VLAN号)
例如: Switch(config)#no spanning-tree vlan 1
1.3 接口配置模式
进入接口配置模式:Switch(config)#interface 端口名称(可选参数)
启用端口:Switch(config-if)#no shutdown
停用端口:Switch(config-if)#shutdown
进入同种类型多端口配置:Switch(config)# interface range fastethernet 0/1-5
进入不同类型多端口配置:Switch(config)#interface range fastethernet 0/1-5,gigabitethernet 0/1-2
退出接口配置模式:Switch(config-if)#exit
1.4 二层端口的配置
.