配置IP

Switch> enable     #进入管理员模式
Switch# config terminal   #进入全局模式
Switch(config)# interface vlan 1   #进入vlan1接口
Switch(config)# ip address 192.168.0.1 255.255.255.0    #配置IP地址和子网掩码
Switch(config)# no shutdown    #启用vlan 1接口

修改主机名

Switch(config)# hostname MS1   #修改交换机的主机名,后期配置域名的主机名

配置域名

MS1(config)# ip domain-name imqinhao.cn   #配置域名

生成rsa秘钥

MS1(config)# crypto key generate rsa   #生成rsa秘钥,默认长度为512,建议修改为1024

定义ssh远程的线路

MS1(config)# line vty 0  15  #进入vty端口模式
MS1(config)# transport input ssh 
MS1(config)# privilege level 15
MS1(config)# login local

创建本地用户

MS1(config)# username qinhao password dex520

设置enable登录密码

MS1(config)# enable secret 123456   #进入管理员模式需要的密码

PC0通过ssh远程连接MS1

pc> ssh -l qinhao 192.168.0.1		#ssh用法:ssh -l 用户名 IP地址
open	#会提示我们开启
Password: dex520	#输入ssh用户的密码