ssh-add

提供: セキュリティ
2016年1月14日 (木) 22:02時点におけるDaemon (トーク | 投稿記録)による版 (ページの作成:「ssh-add とは、ssh-agent (SSHエージェント)に sshの秘密鍵(プライベート鍵)を登録するためのコマンドです。 '''読み方'''...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索
スポンサーリンク

ssh-add とは、ssh-agent (SSHエージェント)に sshの秘密鍵(プライベート鍵)を登録するためのコマンドです。

読み方

ssh-add
えすえすえいち あっど

概要

ssh-addは、ssh-agentと使用します。

インストール

ssh-add は、ssh のパッケージで提供されます。

コマンドラインオプション

-D  -- delete all identities
-L  -- lists public key parameters of all identities in the agent
-X  -- unlock the agent
-c  -- identity is subject to confirmation via SSH_ASKPASS
-d  -- remove identity
-e  -- remove keys provided by the PKCS#11 shared library
-k  -- load plain private keys only and skip certificates
-l  -- list all identities
-s  -- add keys provided by the PKCS#11 shared library
-t  -- set maximum lifetime for identity
-x  -- lock the agent with a password

使い方

登録されている鍵の一覧を表示します。

ssh -l

ssh-agent に鍵を登録します。

ssh-add 鍵ファイル

ssh-agent に登録されているすべての鍵を削除します。

ssh-add -D

関連項目




スポンサーリンク