连接linux密钥设置
puttygen生成公钥和私钥
私钥保存在本地
公钥保存在linux系统
/root/.ssh/authorized_keys
赋予权限
chmod 700 /root/.ssh/
chmod 600 /root/.ssh/authorized_keys
关闭防火墙(有两道)
1.
setenforce 0 (临时关闭)
vi /etc/selinux/config
把
SELINUX=enforcing
改成
SELINUX=disabled
2.
iptables -F(临时清除规则,重启后还是会恢复)
service iptables save (保存设置,重启不变)
评论已关闭