將 Key 登錄
ssh-add [Key_File]
連線時加上 -A 參數
ssh -A user@host.com
或是在 ~/.ssh/config 檔案設定
Host [Host_Name] HostName [Domain_Name or IP] ForwardAgent yes
直接連線並使用設定好的參數
ssh [Host_Name]
透過 Key Pair 登入,即可不需要輸入密碼。
產生 RSA 或 DSA 公私鑰
ssh-keygen -t rsa ssh-keygen -t dsa
scp ~/.ssh/*.pub 目標主機:~/.ssh/.
登入目標主機,將金鑰加入 ~/.ssh/authorized_keys 檔案內。
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys chmod 644 ~/.ssh/authorized_keys
登出並重新登入目標主機,測試是否不需密碼。