简单拓扑搭建
1、新建域名
R1(config)#ip domain-name cisco.com
2、配置VTY
R1(config)#line vty 0 4
R1(config-line)#login local #本地认证
R1(config-line)#transport input ssh #只使用ssh远程登录
R1(config-line)#exit
3、创建用户名
# privilege的值为0~15,值越大,权限越高
R1(config)#username admin privilege 15 secret cqtbi
4、设置密钥
#配置密钥
R1(config)#crypto key generate rsa
#Choose the size of the key modulus in the range of 360 to 2048
How many bits in the modulus [512]: 1024
5、配置特权密码
R1(config)#enable secret 123456
6、PC端使用SSH连接路由器
ssh -l <用户名> <目标设备IP>