Linux 默认端口号为22,使用起来非常不安全,所以需要修改端口号
修改端口
1. 编写 sshd 配置文件
ssh_config 是客户端
sshd_config 是服务端
vi /etc/ssh/sshd_config
在 #Port 22 下一行添加 Port xxx(你的端口号)
2. 重启 sshd
systemctl restart sshd
系统没有任何提示表示成功
3. 防火墙开放端口
firewall-cmd --zone=public --add-port=你的端口号/tcp --permanent
重启 sshd 错误
错误信息
如果重启 sshd 错误,有可能出现以下错误信息
“Job for sshd.service failed because the control process exited with error code.See ‘systemcl status& sshd service" and fournalcti xe'for details.”
可以通过 fournalcti xe 来查看详细信息
解决方法
1. 首先安装 semanage
yum install policycoreutils-python
2. semanage 添加端口号
semanage port -m -t ssh_port_t -p tcp 你的端口号
注:如果报未定义,执行下面命令
semanage port -a -t ssh_port_t -p tcp 你的端口号
3. 查看端口号是否已经添加到列表里
semanage port -l |grep ssh
4. 重启 sshd文章来源:https://www.toymoban.com/news/detail-801898.html
systemctl restart sshd
文章来源地址https://www.toymoban.com/news/detail-801898.html
到了这里,关于Linux 修改 SSH 默认22端口的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!