当前位置: > Linux服务器 > SSH >

使用ssh连接到linux

时间:2014-07-06 23:11来源:linux.it.net.cn 作者:IT网

ssh默认的配置文件为:/etc/ssh/sshd_config
[root@kk ssh]# vim sshd_config
port=22 //端口号
permitEmptypasswords no    //禁止空密码登陆
passwordAuthentication yes  //默认使用口令模式,如果使用公匙模式则改为no

SSH使用公匙方法
passwordAuthentication yes  //改为no.需要重启

秘匙程序puttygen.exe下载地址:http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

运行该程序,主界面中”Type of key generate”选择加密的算法,在”Number of bits in a generated key:”中输入加密位数,推荐默认为1024位的ssh2 RSA的加密。
Key passphrase    可为空.
Save public key   保存公匙geong.pub
Save private key  保存私匙geong.ppk
私匙geong.ppk     保存的登陆用户本机.
公匙geong.pub     保存到服务器/root/.ssh目录下,.ssh目录默认不存在,需要手工创建。

由puttyken产生的公匙文件用如下命令转换成需要的格式:
ssh-keygen -i -f /root/.ssh/geong.pub>/root/.ssh/authorized_keys

再次登陆即可实现公匙认证模式。

(责任编辑:IT)
------分隔线----------------------------