路由器登录SSH 登录思科路由器RSA modulus too small处理

最近研究路由器登录,稍微总结一下,以后继续补充:

    问题现象:ssh_rsa_verify: RSA modulus too small: 512 < minimum 768 bits

    key_verify failed for server_host_key

    

    临时处理:
用ssh -v -1 -c des参数连接

test@linux:~$ ssh -v -1 -c des root@10.1.1.1

    

    永久处理方法:

    liyi-cisco7200(config)#crypto key zeroize rsa
% All RSA keys will be removed.
% All router certs issued using these keys will also be removed.
Do you really want to remove these keys? [yes/no]: yes

    每日一道理
书,各种各样的书。书,寄托着人类热切的希望;书,蕴含着人类丰富的感悟。提起书,会有说不完的话语……

    

    cisco7200(config)#crypto key generate rsa general-keys
The name for the keys will be: liyi-cisco7200.liyi.liyi.com
Choose the size of the key modulus in the range of 360 to 2048 for your
  General Purpose Keys. Choosing a key modulus greater than 512 may take
  a few minutes.

How many bits in the modulus [512]: 1024
% Generating 1024 bit RSA keys ...[OK]

    

    

    

文章结束给大家分享下程序员的一些笑话语录: 自行车
一个程序员骑着一个很漂亮的自行车到了公司,另一个程序员看到了他,问 到,“你是从哪搞到的这么漂亮的车的?”
骑车的那个程序员说, “我刚从那边过来, 有一个漂亮的姑娘骑着这个车过来, 并停在我跟前,把衣服全脱了,然后对我说,‘你想要什么都可以’”。
另一个程序员马上说到, “你绝对做了一个正确的选择, 因为那姑娘的衣服你 并不一定穿得了”。

--------------------------------- 原创文章 By
路由器和登录
---------------------------------

原文地址:https://www.cnblogs.com/xinyuyuanm/p/3102323.html