Graças a @Vinod eu segui o caminho certo, conseguido:
$ firewall-cmd --zone=permanent --add-port=6433/tcp
$ firewall-cmd --reload
agora posso acessar o SSH no meu servidor.
Atualizei minha porta SSH de 22 para 6433 e agora não consigo conectar o SSH à minha máquina. Eu atualizei esta linha em /etc/ssh/sshd_config
:
# If you want to change the port on a SELinux system, you have to tell
# SELinux about this change.
# semanage port -a -t ssh_port_t -p tcp #PORTNUMBER
#
Port 22
para
# If you want to change the port on a SELinux system, you have to tell
# SELinux about this change.
# semanage port -a -t ssh_port_t -p tcp #PORTNUMBER
#
Port 6433
Eu reiniciei meu serviço ssh usando
$ service sshd restart
nenhum erro foi retornado. Abra uma nova guia Terminal e execute:
$ ssh [email protected] -p6433
que retorna:
ssh: connect to host ip.address port 6433: No route to host
Não sabe como resolver o problema?
O SELinux não está ativado