CISCO R&S 配置SSH远程连接及AAA认证

CISCO R&S 配置SSH远程连接及AAA认证_第1张图片
#设置路由器名称
Router>enable
Router#configure terminal
Router(config)#hostname r0

#配置端口信息使连通
r0(config)#int g 0/0
r0(config-if)#ip ad 192.168.1.254 255.255.255.0
r0(config-if)#no shutdown
r0(config-if)#exit

r0(config)#no ip domain lookup
#取消域名查找

r0(config)#ip domain name ccit.com
#设置域名

r0(config)#aaa new-model
#启用3A认证

r0(config)#line vty 0 4
#启用 0-4 共五个终端
Virtual typle terminal.虚拟类型终端

r0(config-line)#transport input ssh
#只允许使用ssh接入

r0(config-line)#exit

r0(config)#crypto key generate rsa
#生成RSA密钥对

How many bits in the modulus [512]: <\ENTER>
#默认加密长度为512位

r0(config)#username 000 password 000
#设置登录用户名密码

测试:
CISCO R&S 配置SSH远程连接及AAA认证_第2张图片

ssh -l 000 192.168.1.254
用户名 IP
passwd 000
密码

你可能感兴趣的:(Cisco)