ssh服務為了管理異地linux主機服務而生,使用ssh服務管理遠程主機 查看linux主機ssh軟體包命令: rpm -qa | grep openssh ssh服務分為伺服器端和客戶端 伺服器端: openshh-server 客戶端: openshh-clients xshell secure ...
ssh服務為了管理異地linux主機服務而生,使用ssh服務管理遠程主機
查看linux主機ssh軟體包命令: rpm -qa | grep openssh
ssh服務分為伺服器端和客戶端
伺服器端:
openshh-server
客戶端:
openshh-clients
xshell
secureCRT
putty
ssh預設埠號:22
ssh服務啟動:service sshd start
ssh服務重新啟動:service sshd restart
ssh服務停止:service sshd stop
ssh服務狀態查看:service sshd status
ssh配置文件 vim /etc/ssh/sshd_config
如果ssh客戶端連接不上sshd伺服器端,有可能是防火牆攔截。
防火牆查看規則命令:iptables -L
防火牆清除規則命令:iptables -F
關閉防火牆命令:service iptables stop
防火牆開機設置不啟動命令:chkconfig iptables off