centos7.3更换ssh默认登陆端口
Posted 潜泳的猫博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7.3更换ssh默认登陆端口相关的知识,希望对你有一定的参考价值。
说明:本方法目前通用于7.1-7.3
vim /etc/ssh/sshd_config
找到Port 22下面添加一行:
Port 12345
保存退出。
systemctl restart sshd.service
netstat -ntlp|grep 12345 查看12345端口号监听情况
systemctl start firewalld 打开防火墙
firewall-cmd --permanent --add-port=12345/tcp 添加端口例外
firewall-cmd --permanent --query-port=12345/tcp 查询是否已经开启例外
systemctl restart sshd
systemctl restart firewalld.service
原文来源:雨竹林学习网http://www.yuzhulin.com
以上是关于centos7.3更换ssh默认登陆端口的主要内容,如果未能解决你的问题,请参考以下文章
linux下已经更改了ssh默认登陆端口22,如何扫描出来更改后的端口号呢。使用NMAP扫描不到,有其他方法么?