AuthorizedKeysFile 行已注释掉,但似乎仍然有效

Ada*_*hns 14 linux ubuntu ssh ssh-keys

我正在 Linode 上设置服务器并遵循他们的保护您的服务器指南。

他们建议设置 ssh 密钥对身份验证。我已经将我的公钥上传到服务器,并且密钥对身份验证似乎工作正常,但是如果以下行被注释掉,它如何工作sshd_config

#AuthorizedKeysFile     %h/.ssh/authorized_keys
Run Code Online (Sandbox Code Playgroud)

Eri*_*ouf 19

那是默认位置。您可以使用AuthorizedKeysFile更改到不同的位置,但如果您不指定它,那么它会查找~/.ssh/authorized_keys

从手册页(例如,https://www.freebsd.org/cgi/man.cgi?query=sshd_config&sektion=5):

授权密钥文件

   Specifies the file that contains the public keys that can be used
   for user authentication.  The format is described in the AUTHO-
   RIZED_KEYS FILE FORMAT section of sshd(8).  AuthorizedKeysFile
   may contain tokens of the form %T which are substituted during
   connection setup.  The following tokens are defined: %% is
   replaced by a literal '%', %h is replaced by the home directory
   of the user being authenticated, and %u is replaced by the user-
   name of that user.  After expansion, AuthorizedKeysFile is taken
   to be an absolute path or one relative to the user's home direc-
   tory.  Multiple files may be listed, separated by whitespace.
   The default is ``.ssh/authorized_keys .ssh/authorized_keys2''.
Run Code Online (Sandbox Code Playgroud)

  • 此外,如果您希望密钥不起作用,请删除文件、相关行或将其注释掉。 (2认同)