首页 >> 技术文档 >> 独立服务器

ssh信息泄露怎么办

来源:数脉科技 编辑:数脉科技编辑部 发布时间:2022-03-25 16:40

ssh信息泄露导致服务器不安全怎么办?

1、vi /etc/ssh/ssh_config

#添加两个远程端口,是为了防止修改出错导致 22 也登不上就麻烦了

Port 22

Port 8094

保存

2、vi /etc/ssh/sshd_config 

Port 22

Port 8094

保存

3、iptables -I INPUT -p tcp --dport 8094 -j ACCEPT

防火墙上开端口 

service iptables save

service sshd restart

service iptables restart