180style wiki
システム関連/UNIX関連/パスワードなしでsshログイン
をテンプレートにして作成
開始行:
*パスワードなしでssh scp [#dc04a8d6]
-通信元のサーバ(通信するユーザ)で鍵を作成する。
# ssh-keygen -t rsa ←RSA暗号方式の鍵を作成
Generating public/private rsa key pair.
Enter file in which to save the key (/home/ユーザ/.ssh/i...
Enter passphrase (empty for no passphrase): ←[Enter]...
Enter same passphrase again:
Your identification has been saved in /home/ユーザ/.ssh/...
Your public key has been saved in /home/ユーザ/.ssh/id_r...
The key fingerprint is:
...文字列 ユーザ@サーバ
-通信先のサーバ(通信先のユーザ)に鍵を登録する。&br;
先ほど作成した公開鍵を 通信先のユーザ$HOME/.ssh/authorize...
(ファイル[ディレクトリ]がなければ作る。authorized_keysの...
$ cat id_rsa.pub >> /home/ユーザ/.ssh/authorized_keys
-後は通信元のサーバで $ ssh ユーザ@通信先のサーバ を実行...
-鍵の作成時にpassphraseを入れると認証エージェント(ssh-ag...
*パスワードなしでrsh [#bb3581da]
-通信先のサーバ(通信先のユーザ)のrhostsに通信元のサーバ...
/home/ユーザ/.rhosts
-通信元で「poll: protocol failure in circuit setup」が出...
通信元のポートフィルタがかかっているので、ipchiansやiptab...
終了行:
*パスワードなしでssh scp [#dc04a8d6]
-通信元のサーバ(通信するユーザ)で鍵を作成する。
# ssh-keygen -t rsa ←RSA暗号方式の鍵を作成
Generating public/private rsa key pair.
Enter file in which to save the key (/home/ユーザ/.ssh/i...
Enter passphrase (empty for no passphrase): ←[Enter]...
Enter same passphrase again:
Your identification has been saved in /home/ユーザ/.ssh/...
Your public key has been saved in /home/ユーザ/.ssh/id_r...
The key fingerprint is:
...文字列 ユーザ@サーバ
-通信先のサーバ(通信先のユーザ)に鍵を登録する。&br;
先ほど作成した公開鍵を 通信先のユーザ$HOME/.ssh/authorize...
(ファイル[ディレクトリ]がなければ作る。authorized_keysの...
$ cat id_rsa.pub >> /home/ユーザ/.ssh/authorized_keys
-後は通信元のサーバで $ ssh ユーザ@通信先のサーバ を実行...
-鍵の作成時にpassphraseを入れると認証エージェント(ssh-ag...
*パスワードなしでrsh [#bb3581da]
-通信先のサーバ(通信先のユーザ)のrhostsに通信元のサーバ...
/home/ユーザ/.rhosts
-通信元で「poll: protocol failure in circuit setup」が出...
通信元のポートフィルタがかかっているので、ipchiansやiptab...
ページ名: