因为我的 IP 地址不会经常改变,所以我希望只有我的 IP 地址可以访问我的 gen4 CentOS7 VPS 服务器的 SSH。
这是文件的配置文件内容(删除了注释掉的行):/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
跑步后
sudo systemctl restart sshd.service
,我收到以下错误:
sshd.service 的作业失败,因为控制进程退出并显示错误代码。有关详细信息,请参阅“systemctl status sshd.service”和“journalctl -xe”。
运行后:
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 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)
我不知道哪里出了问题。任何帮助我都非常感谢。
答案1
我运行命令:
sudo /usr/sbin/sshd -T
我收到如下错误信息:
Directive 'ChallengeResponseAuthentication' is not allowed within a Match block
所以我将 Match 块移至文件的最后一部分,这解决了我的问题。
谢谢大家的指导。