学习目标:掌握交换机基本信息的配置管理。
1.交换机的命令行操作模式和常用的配置命令行
用户模式 Switch>
由用户模式进入特权模式 Switch>en
特权模式 Switch#
由特权模式进入全局配置模式 Switch#config t
全局配置模式 Switch(config)#
由全局配置模式进入某端口视图模式 Switch(config)#int f0/1
端口模式 Switch(config-if)#
返回到上一级模式 Switch(config-if)#exit
从全局模式返回到特权模式 Switch(config)#end
2.快捷指令
帮助信息(如? 、co?、copy?)
命令简写(如 en 的完整命令为 enable)
命令自动补全(Tab)
快捷键(ctrl+c中断测试,ctrl+z退回到特权视图)
reload 重启(在特权模式下)
hostname 名称 修改交换机名称(在全局配置模式下)
3.端口配置指令
speed,duplex 配置交换机端口参数
show version 查看交换机版本信息
show running-config 查看当前生效的配置信息
show startup-config 查看保存在NVRAM中的启动配置信息
show interface 查看端口信息
show mac-address-table 查看交换机的MAC地址
选择某个端口Switch(config)# interface type mod/port
(type:端口类型,通常有ethernet、Fastethernet、Gigabitethernet;
mod:端口所在的模块;
port:在该模块中的编号;):Switch(config)# interface fa 0/1;
选择多个端口Switch(config)#interface type mod/startport-endport
如:Switch(config)# interface interface fa 0/1-5 //选择端口 fa 0/1 ~ fa 0/5
Switch(config-if)#speed [10/100/auto] 设置端口通信速度
Switch(config-if)#duplex [half/full/auto] 设置端口单双工模式
若交换机设置为auto以外的具体速度,此时应注意保证通信双方也要有相同的设置值。
注意:在配置交换机时,要注意交换机端口的单双工模式的匹配,如果链路一端设置的是全双工,另一端是自动协商,则会造成响应差和高出错率,丢包现象会很严重。通常两端设置为相同的模式。
4.密码设置指令
设置进入特权模式的密码
Switch(config)# enable password ******
通过console端口连接设备及Telnet远程登录时所需的密码;
Switch(config)# line console 0 表示配置控制台线路,0是控制台的线路编号。
Switch(config-line)# login 用于打开登录认证功能。
Switch(config-line)# password 设置进入控制台访问的密码
5.实验
1.准备:Switch_2960 1台;PC 1台;直通线
2.点击PC0,选择config选项,单击FastEthernet0选项,可以看到PC0默认选项:速率为100Mbps,运行模式为全双工
3.点击交换机,选择CLI,进入命令行界面
4.配置交换机
Switch>enable 进入特权模式
Switch#conf t 进入配置模式
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname sw1 修改主机名为 sw1
sw1(config)#int f0/1 进入接口模式 f0/1
sw1(config-if)#speed 100 修改端口速率 100Mbps
sw1(config-if)#duplex full 修改运行模式为全双工
sw1(config-if)#exit 退出接口模式
5.查看交换机配置
sw1>show version 查看交换机版本信息
sw1#show running-config 查看当前生效的配置信息
sw1#show interface 查看端口信息
sw1#show mac-address-table 查看交换机的MAC地址
6.设置密码
sw1(config)#enable password 123456 设置进入全局模式的密码为 123456
sw1(config)#line console 0 配置控制台线路,0 是控制台的线路编号
sw1(config-line)#password 123456 设置进入控制台访问密码
sw1(config-line)#login 登录认证
sw1(config-line)#no password 取消控制台访问密码