远程管理有telnet明文传输 tcp23 临时服务
ssh 秘闻传输 tcp22 系统服务 安全
ssh -----> openssh
yum -y install openssh
service sshd restart
chkconfig sshd on
当远程管理主机较慢时,修改服务端的配置文件/etc/ssh/sshd_config
GSSAPIAUthentication no
如:ssh -X root@192.168.4.111
当(192.168.4.254)端口改2000
vim /etc/ssh/sshd _config
13 port 2000
真机 ssh -p 2000 root@192.168.4.254 (小P)
scp -rP 2000 /boot root@192.168.4.254:/root (这大P)
本文出自 “12336621” 博客,请务必保留此出处http://12346621.blog.51cto.com/12336621/1903491
原文:http://12346621.blog.51cto.com/12336621/1903491