Linux修改ssh端口22
vi /etc/ssh/ssh_config
vi /etc/ssh/sshd_config
然后修改为port 8888
以root身份service sshd restart (redhat as3)
使用putty,端口8888
Linux下SSH默认的端口是22,为了安全考虑,现修改SSH的端口为1433,修改方法如下 :
/usr/sbin/sshd -p 1433
禁用root远程登录
# 为增强安全 先增加一个普通权限的用户:
useradd PGOne
# 设置密码
passwd PGOne
切换到root用户,运行 visudo
命令
在打开的配置文件中,找到root ALL=(ALL) ALL,在下面添加一行
# 其中xxx是你要加入的用户名称
xxx ALL=(ALL) ALL
生产机器禁止ROOT远程SSH登录:
vi /etc/ssh/sshd_config
修改 PermitRootLogin
为 no
- PermitRootLogin yes
+ PermitRootLogin no
重启sshd服务
service sshd restart
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 lzdong@foxmail.com