Como meu endereço IP não muda com frequência, quero que apenas meu endereço IP possa acessar o SSH do meu servidor VPS Gen4 CentOS7.
Este é o conteúdo do arquivo de configuração (com as linhas comentadas removidas) do arquivo: /etc/ssh/sshd_config
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey /etc/ssh/ssh_host_ed25519_key
SyslogFacility AUTHPRIV
PermitRootLogin no
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication no
PermitEmptyPasswords no
Match Address xx.xxx.xxx.xxx #here is my real ip address
PasswordAuthentication yes
ChallengeResponseAuthentication no
GSSAPIAuthentication yes
GSSAPICleanupCredentials no
UsePAM yes
X11Forwarding yes
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
AcceptEnv LC_IDENTIFICATION LC_ALL LANGUAGE
AcceptEnv XMODIFIERS
Subsystem sftp /usr/libexec/openssh/sftp-server
Depois de correr
sudo systemctl restart sshd.service
, recebi o seguinte erro:
A tarefa para sshd.service falhou porque o processo de controle foi encerrado com código de erro. Consulte "systemctl status sshd.service" e "journalctl -xe" para obter detalhes.
Depois de correr:
systemctl status sshd.service
O resultado é o seguinte:
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 2020-08-21 21:34:52 MST; 40s ago
Docs: man:sshd(8)
man:sshd_config(5)
Process: 15994 ExecStart=/usr/sbin/sshd -D $OPTIONS (code=exited, status=255)
Main PID: 15994 (code=exited, status=255)
Não consigo descobrir o que está errado. Qualquer ajuda é muito apreciada.
Responder1
Executei o comando:
sudo /usr/sbin/sshd -T
Recebi a seguinte mensagem de erro:
Directive 'ChallengeResponseAuthentication' is not allowed within a Match block
Então mudei meu bloco Match para a última parte do arquivo, isso resolveu meu problema.
Obrigado a todos pelas instruções.