我正在尝试使用 Almalinux 更改 VPS 上的 SSH 端口。我遵循了本指南,但未能做到。
这些是我尝试分别使用 22 和新端口进行 SSH 时收到的输出。
ssh: connect to host XXX.XXX.XXX.XXX port 22: Connection timed out
ssh: connect to host XXX.XXX.XXX.XXX port 23498: Connection timed out
这是我的/etc/ssh/sshd_config
.
...
Port 23498 22
...
运行semanage port -l | grep ssh
给出以下输出。
ssh_port_t tcp 23498, 22
使用新端口重新开始使用service sshd restart
会产生以下输出。
Redirecting to /bin/systemctl restart sshd.service
Job for sshd.service failed because the control process exited with error code.
See "systemctl status sshd.service" and "journalctl -xe" for details.
这是 的输出systemctl status sshd.service
。
● sshd.service - OpenSSH server daemon
Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled; vendor preset: enabled)
Active: activating (auto-restart) (Result: exit-code) since Fri 2022-02-25 17:26:08 CET; 34s ago
Docs: man:sshd(8)
man:sshd_config(5)
Process: 25872 ExecStart=/usr/sbin/sshd -D $OPTIONS $CRYPTO_POLICY (code=exited, status=255)
Main PID: 25872 (code=exited, status=255)
Feb 25 17:26:08 xxx.xxx.xxx systemd[1]: sshd.service: Main process exited, code=exited, status=255/n/a
Feb 25 17:26:08 xxx.xxx.xxx systemd[1]: sshd.service: Failed with result 'exit-code'.
Feb 25 17:26:08 xxx.xxx.xxx systemd[1]: Failed to start OpenSSH server daemon.
更改端口也会导致正常的 SSH 中断。注释掉Port
并sshd_config
重新启动sshd
允许再次通过 SSH 访问。我也尝试过openssh-server
更改端口后重新安装,但无济于事。允许端口通过简单的防火墙。非常感谢任何帮助。
代替
编辑:
似乎firewalld和ufw一样运行。未配置意味着我的端口被阻止了。