第二层交换—配置交换机
当1900启动后,先运行POST,此时每个端口的发光二级管(LEDs)是绿色的,当POST完成后,LEDs开始闪烁然后熄灭;假如POST发现某个端口出问题了的话,系统LED和那个出问题的端口的LED开始变黄.假如你的console线缆接好了的话,POST开始显示菜单,如下:
- 1 user(s) now active on Management Console.
- User Interface Menu
- [M] Menus
- [K] Command Line
- [I] IP Configuration
- Enter Selection:K
- CLI session with the switch is open
- To end the CLI session, enter [Exit].
- >
而2950的启动,有点像router,先进入setup模式.但是默认你可以不对其进行配置,启动如下:
- --- System Configuration Dialog ---
- Would you like to enter the initial configuration dialog? [yes/no]: no
- Press RETURN to get started!
- 00:04:53: %LINK-5-CHANGED: Interface Vlan1, changed state to administratively down
- 00:04:54: %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to down
- Switch>
配置密码:
1.登陆密码(用户模式):防止未授权用户登陆
2.启用密码(特权模式):防止未授权用户修改配置
- Setting the User Mode and Enable Mode Passwords
1900下,输入K进入CLI,输入enable进入特权模式,再输入config t进入全局配置模式,如下:
- >en
- #config t
- (config)#
当进入全局配置模式后,使用enable password命令配置登陆密码个启用密码,如下:
- (config)#enable password ?
- level Set exec level password
- (config)#enable password level ?
- <1-15> Level Number
level1为登陆密码,level15为启用密码,密码长度范围是4到8字符之间。
2950下的配置和配置router有点类似,如下:
- Switch>en
- Switch#conf t
- Switch(config)#line ?
- <0-16> First Line number
- console Primary terminal line
- vty Virtual terminal
- Switch(config)#line vty ?
- <0-15> First Line number
- Switch(config)#line vty 0 15
- Switch(config-line)#login
- Switch(config-line)#password noko
- Switch(config-line)#line con 0
- Switch(config-line)#login
- Switch(config-line)#password noco
- Switch(config-line)#exit
- Switch(config)#exit
- Switch#
【编辑推荐】