linux修改ssh端口和禁止root远程登陆设置

时间:2022-05-14 14:22:58

linux修改ssh端口22
vi /etc/ssh/ssh_config
vi /etc/ssh/sshd_config

然后修改为 port 8822 
以root身份 service sshd restart 
使用SSH, 端口8822


为增强安全
先增加一个普通权限的用户:
#useradd uploader
#passwd uploader
//设置密码

生产机器禁止ROOT远程SSH登录:
#vi /etc/ssh/sshd_config


PermitRootLogin yes
改为
PermitRootLogin no
重启sshd服务
#service sshd restart

远程管理用普通用户uploader登录,然后用 su root 切换到root用户拿到最高权限。