锐捷交换机配置 SSH

发布时间:2023年12月29日

配置步骤

步骤一 -- 全局开启ssh服务,并且指定ssh版本
Ruijie#configure terminal

Ruijie(config)#enable service ssh-server  ------>开启SSH服务,默认关闭

Ruijie(config)#ip ssh version 2        ------>默认1.99版本,设置为版本2Ruijie
步骤二 -- 添加登录的用户名和密码
Ruijie(config)#username admin password ruijie@123
步骤三 --  生成加密密钥
   Ruijie(config)#crypto key generate rsa ------>加密方式有两种:DSA和RSA(这里选择RSA)

   Choose the size of the key modulus in the range of 360 to 2048 for your Signature Keys. Choosing a key modulus greater than 512 may take a few minutes. 

   How many bits in the modulus [512]:  ------>指定加密的位数即加密强度,默认是512位(直接回车)
   % Generating 512 bit RSA1 keys ...[ok]
   % Generating 512 bit RSA keys ...[ok]
步骤四 -- 在VTY线程下调用
   Ruijie(config)#lin vty 0 4

   Ruijie(config-line)# login  local

   Ruijie(config-line)#transport input ssh   ------>设置传输模式是SSH,设置远程登入只允许使用SSH登入,不能使用telnet登入
步骤五 -- console口密码
   Ruijie(config)#line console 0

   Ruijie(config)#login local   ------>console密码也为本地密码

功能验证

Ruijie#show ip ssh       查看SSH的参数信息(版本信息,重认证次数等参数)
	SSH Enable - version 2.0
	Authentication timeout: 120 secs;
  Authentication retries: 3
	Ruijie#show ssh        查看SSH的在线用户信息(加密算法,状态,用户名等消息)
	Connection Version Encryption    Hmac     State      Username
   	 0   2.0 aes256-cbc    hmac-sha1  Session started  ruijie

参考文献

文章来源:https://blog.csdn.net/qq1324434947/article/details/135289578
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。