आपको अपनी SSH सार्वजनिक कुंजी की आवश्यकता है और आपको अपनी ssh निजी कुंजी की आवश्यकता होगी। कुंजी के साथ उत्पन्न किया जा सकता है ssh_keygen
। निजी कुंजी को सर्वर 1 पर रखा जाना चाहिए और सार्वजनिक कुंजी को सर्वर 2 पर संग्रहीत किया जाना चाहिए।
यह पूरी तरह से ओपनश के मैनपेज में वर्णित है, इसलिए मैं इसे बहुत अधिक उद्धृत करूंगा। आपको अनुभाग 'प्रमाणीकरण' पढ़ना चाहिए। इसके अलावा ओपनएसएसएच मैनुअल वास्तव में उपयोगी होना चाहिए: http://www.openssh.org/manual.html
कृपया ssh से सावधान रहें क्योंकि इससे आपके सर्वर की सुरक्षा प्रभावित होती है।
से man ssh
:
~/.ssh/identity
~/.ssh/id_dsa
~/.ssh/id_rsa
Contains the private key for authentication. These files contain
sensitive data and should be readable by the user but not acces-
sible by others (read/write/execute). ssh will simply ignore a
private key file if it is accessible by others. It is possible
to specify a passphrase when generating the key which will be
used to encrypt the sensitive part of this file using 3DES.
~/.ssh/identity.pub
~/.ssh/id_dsa.pub
~/.ssh/id_rsa.pub
Contains the public key for authentication. These files are not
sensitive and can (but need not) be readable by anyone.
इसका अर्थ है कि आप अपनी निजी कुंजी को अपने घर निर्देशिका में .sh पर संग्रहीत कर सकते हैं। एक और संभावना -i
एक विशेष पहचान फ़ाइल का उपयोग करने के लिए पैरामीटर स्विच के माध्यम से ssh बताने की है । इसके अलावा man ssh
:
-i identity_file
Selects a file from which the identity (private key) for RSA or
DSA authentication is read. The default is ~/.ssh/identity for
protocol version 1, and ~/.ssh/id_rsa and ~/.ssh/id_dsa for pro-
tocol version 2. Identity files may also be specified on a per-
host basis in the configuration file. It is possible to have
multiple -i options (and multiple identities specified in config-
uration files).
यह निजी कुंजी के लिए है। अब आपको सर्वर 2 पर अपनी सार्वजनिक कुंजी शुरू करने की आवश्यकता है। फिर से एक उद्धरण man ssh
:
~/.ssh/authorized_keys
Lists the public keys (RSA/DSA) that can be used for logging in
as this user. The format of this file is described in the
sshd(8) manual page. This file is not highly sensitive, but the
recommended permissions are read/write for the user, and not
accessible by others.
प्राप्त करने का सबसे आसान तरीका है कि फ़ाइल को सर्वर 2 में कॉपी करें और उसे अधिकृत_की फ़ाइल में संलग्न करें:
scp -p your_pub_key.pub user@host:
ssh user@host
host$ cat id_dsa.pub >> ~/.ssh/authorized_keys
सार्वजनिक कुंजी के माध्यम से प्राधिकरण ssh डेमॉन के लिए अनुमति दी जानी चाहिए, देखें man ssh_config
। आमतौर पर यह विन्यास फाइल में निम्नलिखित कथन को जोड़कर किया जा सकता है:
PubkeyAuthentication yes
ssh-copy-id user@machine