码迷,mamicode.com
首页 > 其他好文 > 详细

折腾开源WRT的AC无线路由之路-5

时间:2014-07-22 14:47:34      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:ssh   tomatousb   shibby   dd-wrt   openwrt   

-在Mac上设置无密码连接SSH

1. 生成SSH密钥对

<pre name="code" class="html">ssh-keygen -t rsa -b 1024 -C "$(whoami)@$(hostname),$(date '+%F %T')" -f ~/.ssh/tomato


或者简单的:

ssh-keygen -t rsa -f ~/.ssh/tomato

它会询问设置密语(passphrase),为了安全起见最好给他设定一个密语;如果不要,就回车继续。

然后它生成两个密钥对文件:tomato和tomato.pub

把tomato.pub中的内容复制,或者运行下面命令复制到剪贴板中

LC_CTYPE=UTF-8 pbcopy <~/.ssh/tomato.pub

2. 到Tomato的管理界面:Administration->Admin Access->Authorized Keys

粘贴到Authorized Keys里面:

bubuko.com,布布扣

如果有多个,可以在下面继续粘贴,并保存。


3. 在Mac上设定使用哪个密钥文件.

编辑/生成新的~/.ssh/config文件,内容写入:

Host 192.168.1.1
  IdentityFile ~/.ssh/tomato
  User root
或者运行命令:

cat <<EOF >> ~/.ssh/config
Host 192.168.1.1
  IdentityFile /Users/toliu/.ssh/tomato
  User root
EOF

把192.168.1.1替换成你的无限路由的地址。


4. 设定正确的用户和权限,在10.81之后,如果权限和用户不正确,它不会连接成功:

chmod 400 ~/.ssh/tomato;chmod 700 ~/.ssh/


5. 尝试:ssh 192.168.1.1


欧了



折腾开源WRT的AC无线路由之路-5

标签:ssh   tomatousb   shibby   dd-wrt   openwrt   

原文地址:http://blog.csdn.net/cneducation/article/details/38026949

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!