linux上的ssh基础安全设置

linux使用时,需要完成最基本的ssh安全设置,比如禁止root账号登录系统。

$ adduser zituocn # 添加新用户
$ passwd zituocn # 密码设置 
$ gpasswd -a zituocn wheel # 添加到wheel组

修改sshd_config文件

vi /etc/ssh/sshd_config

Port 8822 # 修改端口为8822
PermitRootLogin no # 禁止root
AllowUsers zituocn # 只允许的

最后,重新加载sshd服务

systemctl reload sshd