一、组网需求通过ssh功能远程登录管理设备二、配置步骤:1)全局开启SSH服务,并制定SSH的版本Ruijie>enable Ruijie#configure terminalRuijie(config)#enable service ssh-server ------>开启SSH服务,默认关闭Ruijie(config)#ip ssh version 2 ------>默认1.99版本,设置为版本22)添加登陆的用户名和密码Ruijie(config)#username ruijie password ruijie3)生成加密密钥:Ruijie(config)#crypto key generate rsa ------>加密方式有两种:DSA和RSA,已RSA为例Choose the size of the key modulus in the range of 360 to 2048 for yourSignature Keys. Choosing a key modulus greater than 512 may takea few minutes.How many bits in the modulus [512]: ------>指定加密的位数即加密强度,默认是512位% Generating 512 bit RSA1 keys ...[ok]% Generating 512 bit RSA keys ...[ok]4)在VTY线程下调用Ruijie(config)#lin vty 0 4Ruijie(config-line)#password ruijie ------>设置登陆密码为ruijieRuijie(config-line)# login 应修改为如下:Ruijie(config-line)# login localRuijie(config-line)#transport input ssh ------>设置传输模式是SSH,设置远程登入只允许使用SSH登入,不能使用telnet登入5)保存配置Ruijie(config-line)#end ------>退出到特权模式Ruijie#write ------>确认配置正确,保存配置(config)# enable service ssh-server(config)# ip ssh version 2(config)# username xxx password xxx /xxx 用户名和密码 (config)# line vty 0 4(config-line)#login local (config-line)#transport input ssh(config)# crypto key generate rsa