AuthorizedKeysFile लाइन ने टिप्पणी की, लेकिन अभी भी काम करने लगता है


13

मैं लाइनोड पर एक सर्वर स्थापित कर रहा हूं और उनके सर्वर गाइड का पालन ​​कर रहा हूं ।

वे ssh कुंजी जोड़ी प्रमाणीकरण स्थापित करने की सलाह देते हैं। मैंने पहले ही सर्वर पर अपनी सार्वजनिक कुंजी अपलोड कर दी है और कुंजी जोड़ी प्रमाणीकरण ठीक काम करने लगता है, लेकिन निम्न पंक्ति में टिप्पणी करने पर यह कैसे काम करता है sshd_config:

#AuthorizedKeysFile     %h/.ssh/authorized_keys

जवाबों:


17

वह डिफ़ॉल्ट स्थान है। आप AuthorizedKeysFileकिसी भिन्न स्थान पर बदलने के लिए उपयोग कर सकते हैं , लेकिन यदि आप इसे निर्दिष्ट नहीं करते हैं, तो यह अंदर दिखेगा~/.ssh/authorized_keys

मैन पेज से (जैसे, https://www.freebsd.org/cgi/man.cgi?query=sshd_config&sektion=5 ):

AuthorizedKeysFile

   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''.

2
और आगे, यदि आप चाहते हैं कि कुंजी काम न करे, तो फ़ाइल, संबंधित लाइन को हटा दें या टिप्पणी करें।
dmourati

1
आप इसे "कोई नहीं" पर भी सेट कर सकते हैं।
the_Pingu
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.