1,交换机的特权模式是什么?
交换机有6种模式。1:用户执行模式(UserEXEC Mode)。
2:特权执行模式(PrivilegedEXEC Mode)。
3:全局配置模式(GlobalConfiguration Mode)。
4:监控模式(ROM MonitorMode)。
5:安全模式(SetupMode)。
6:Boot模式(RXBootMode)。
常用的有1,2和3.
提示符 权限
User EXEC Mode “>” 基本监视命令,不允许改变路由器配置的命令。
User EXEC Mode 进入 Privileged EXEC Mode 输入 enable(如果有密码需要输入密码)
Privileged EXEC Mode “#” 比User ECEC Mode更多的命令权限。如debug。
Privileged EXEC Mode 进入 Global Configuration Mode 输入 configure terminal(同上)
Global Configuration Mode “(config)#” 配置影响全局。
(这个图片是借用别人的)
Global Configuration Mode:
1:先进入到此模式下。
2:端口配置如:
Switch# configureterminal
Switch(config)#interface fastethernet 0/3
Switch(config-if)#speed10 //配置端口速率10M 默认auto
Switch(config-if)#duplexhalf //full全双工 half 半双工 auto
Switch(config-if)#noshutdown//开启端口
交换机IP配置:
- 交换机划分vlan才会配置IP。不划分vlan没有必要配置IP。
- 进入Global Configuration Mode。
- 输入Interface vlan 1(根据自己的vlan设定数字)。进入(config- if)。
- 输入IP address +“IP地址”+“子网掩码” \\配置IP和子网掩码
- 输入no shutdown \\开启vlan
交换机网关配置:
- 进入GlobalConfiguration Mode
- 输入ipdefault-gateway +“网关地址”
交换机telnet开启。
如果交换机不设置PrivilegedEXEC Mode 密码,无法远程
- 全局模式下:linevty 0 4(数字表示支持0到4个用户同时登陆,具体登陆上限可能和交换机端口或者型号有关)
VTY(VirtualTeletype Terminal)虚拟终端,一种网络设备的连接方式(A command line interface created in a router for a Telnetsession. The router is able to generate a VTY dynamically. )
- Password +密码
Enable 的密码也得设定,(目前Cisco需要设置,其他交换机不知道)。
1.全局模式下:enable password +密码