sshd 简单配置
为了安全,我们最好还是简单的配置sshd,做些防范。
配置文件 /etc/ssh/sshd_config
注意以下几个主要参数设定:
Port 22 #sshd监听22端口
Protocol 2 #使用协议版本2
LoginGraceTime 2m #2分钟内客户端不能登录即登录超时,sshd切断连接。
PermitRootLogin no #不允许root登录
X11Forwarding no #禁止用户运行远程主机上的X程序
AllowUsers kevin #允许kevin这个用户登录
重启一下sshd,这个配置文件就起作用了。
/etc/init.d/sshd restart
阅读(1739) | 评论(0) | 转发(0) |