标签:
sshclinet机器:产生公私钥(公钥相当于一把锁)
sshclient:将公钥发给sshserver(抛出锁子)
sshclinet去连sshserver不需要密钥
?
cat /etc/ssh/sshd_config 追加一下
Port 22#ssh连接默认的端口
PermitRootLogin yes #root用户黑客都知道,禁止它远程登录
PermitEmptyPasswords no #禁止空密码登录
UseDNS no #不使用DNS
GSSAPIAuthentication no
3.1
cat /etc/ssh/sshd_config
UseDNS no #不使用DNS
GSSAPIAuthentication no
?
3.2hosts文件里添加主机名解析
标签:
原文地址:http://www.cnblogs.com/iiiiher/p/5467107.html