标签:
1,首先更改ssh配置,可以是ssh端口连接不上服务器
cd /etc/ssh/sshd_config
vi !$
Port 52113 //ssh默认的连接端口, 改为别人不知道的端口
PermitRootLogin no //root用户都知道的,静止远程登录
PermitEmptyPasswords no //禁止空密码登录
UseDNS no //不使用DNS
加入之后,/etc/init.d/sshd restart netstat -lnt 查看端口,或者lsof -i :52113 用以查看端口有什么服务
2.这时用22端口是连接不上服务器的,如果是刚刚接触机器,怎么处理这个问题呢?
标签:
原文地址:http://www.cnblogs.com/carltonx/p/5612362.html