修改交换机名称(hostname X)
配置交换机端口参数(speed,duplex)
查看交换机版本信息(show version)
查看当前生效的配置信息(show running-config)
查看端口信息 Switch#show interface
查看交换机MAC地址表 Switch#show mac-address-table
选择某个端口 Switch(config)#interface type mod/port (type表示端口类型,通常有 ethernet,Fastethernet,Gigibitethernet) (mod表示端口所在的模块,port表示在该模块中的编号) 列入interface fastethernet 0/1
选择多个端口 Switch(config)#interface type mode/starport-endport
设置端口通信速率 Switch(config-if)#speed [10/100/auto]
设置端口单双工模式 Switch(config)#duplex [half/full/auto]
若交换机设置为auto以外的具体速度,此时应注意保证通信双方也要有相同的设置值。
注意:在配置交换机时,要注意交换机端口的单双工模式的匹配,如果链路一端设置的是全双工,另一端是自动协商,则会造成响应差和高出错率,丢包现象会很严重。通常两端设置为相同模式。
Switch>enable
Switch#config
Switch(config)#hostname XX
XX(config)#interface fa 0/1
XX(config-if)#speed 100
XX(config-if)#duplex full
XX(config-if)#exit
同时将PC网卡改为全双工模式,100M速率,否则链路不通
Switch#show version
Switch#show run
Switch#show interface
Switch#show interface
Switch#show mac-address-table
Switch#config
Switch(config)#enable password 12345 //激活特权模式密码为 12345
Switch(config)#no enable password //取消特权模式密码
Switch(config)#line console 0
Switch(config-line)#password 12345
Switch(config-line)#login
Switch(config-line)#no password //取消密码