問題描述:虛擬機安裝完成后珠漂,無法使用securecrt進(jìn)行遠(yuǎn)程連接僵缺?
問題排查:
(1)檢查服務(wù)器的sshd服務(wù)是否啟動
命令:ps -ef|grep sshd
[root@web1 ~]# ps -ef|grep sshd
root 2104 1 0 2017 ? 00:00:11 /usr/sbin/sshd -D
root 4464 2104 0 00:52 ? 00:00:00 sshd: root@pts/0
root 4487 4466 0 00:52 pts/0 00:00:00 grep --color=auto sshd
(2)檢查默認(rèn)的端口22 是否正常
命令:telnet xxx.xxx.xxx.xxx 22
(3)查看防火墻端口是否開啟22
命令:more /etc/sysconfig/iptables
查看所有開放的端口:firewall-cmd --list-all(centos 7以上)
centos 7以上防火墻添加相關(guān)端口:
(1) 添加端口:命令:
firewall-cmd --zone=public --add-port=80/tcp --permanent
PS: (--permanent永久生效奠支,沒有此參數(shù)重啟后失效)
(2) 重新載入配置
firewall-cmd --reload
centos 7 一下:iptables 開啟22端口
(1)通過nano /etc/sysconfig/iptables 進(jìn)入編輯增添一條
-A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
(2)執(zhí)行 /etc/init.d/iptables restart 命令將iptables服務(wù)重啟
/etc/init.d/iptables restart