CentOS 7 设置默认端口

CentOS 7 设置默认端口

我一直在 CentOS 7 服务器上进行一些维护,我注意到它没有使用默认的 ssh 端口 (22)。

我将其改回 sshd_config 中的端口 22,该端口可以工作,但当我尝试使用 ssh 时,它仍然默认为非标准 ssh 端口。

如何将 ssh 端口默认设置回 22,这样当我尝试 ssh 时就不必继续指定 -p 22

答案1

在服务器部分,检查:

[root@localhost ~]# grep ssh /etc/services | grep 22
ssh             22/tcp                          # The Secure Shell (SSH) Protocol
ssh             22/udp                          # The Secure Shell (SSH) Protocol
ssh             22/sctp                 # SSH

[root@localhost ~]# grep 22 /etc/ssh/sshd_config 
#Port 22

相关内容