Ssh

在 fedora-26 上更改 ssh 埠

  • June 28, 2018

我進入了

/etc/ssh/sshd_config

我編輯了

#Port 22

#Port 922

在我重新啟動 httpd 之後。

service httpd restart

但是,ssh 仍然只適用於 -p22。

如何編輯 ssh 配置文件以更改 ssh 埠?

必須編輯 /etc/ssh/sshd_config 文件,但還必須:

semanage port -a -t ssh_port_t -p tcp 922

為了得到 semanage

dnf install policycoreutils-python-utils

然後重啟sshd

systemctl reload sshd.service

刪除語句前的註釋標記 (#)。

Port 922

你必須重新啟動 sshd,而不是 httpd。

sudo systemctl restart sshd

引用自:https://serverfault.com/questions/918183