Anda memerlukan kunci publik SSH Anda dan Anda akan memerlukan kunci pribadi ssh Anda. Kunci dapat dibuat dengan ssh_keygen
. Kunci pribadi harus disimpan di Server 1 dan kunci publik harus disimpan di Server 2.
Ini sepenuhnya dijelaskan dalam halaman openssh, jadi saya akan mengutip banyak dari itu. Anda harus membaca bagian 'Otentikasi'. Manual openSSH juga harus sangat membantu: http://www.openssh.org/manual.html
Harap berhati-hati dengan ssh karena ini memengaruhi keamanan server Anda.
Dari 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.
Ini berarti Anda dapat menyimpan kunci pribadi Anda di direktori home di .ssh. Kemungkinan lain adalah memberi tahu ssh melalui -i
sakelar parameter untuk menggunakan file identitas khusus. Juga dari 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).
Ini untuk kunci pribadi. Sekarang Anda perlu memperkenalkan kunci publik Anda di Server 2. Sekali lagi kutipan dari 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.
Cara termudah untuk mencapainya adalah dengan menyalin file ke Server 2 dan menambahkannya ke file Authorized_key:
scp -p your_pub_key.pub user@host:
ssh user@host
host$ cat id_dsa.pub >> ~/.ssh/authorized_keys
Otorisasi melalui kunci publik harus diizinkan untuk daemon ssh, lihat man ssh_config
. Biasanya ini dapat dilakukan dengan menambahkan pernyataan berikut ke file konfigurasi:
PubkeyAuthentication yes
ssh-copy-id user@machine