標籤:led 原因 str 屬性 client algo linux 密碼編譯演算法 ubuntu
1、安裝、配置與啟動
SSH分用戶端openssh-client和openssh-server 如果你只是想登陸別的機器的SSH只需要安裝openssh-client(ubuntu有預設安裝,如果沒有則sudo apt-get install openssh-client),如果要使本機開放SSH服務就需要安裝openssh-server
sudo apt-get install openssh-server
然後確認sshserver是否啟動了:
ps -e |grep ssh
如果看到sshd那說明ssh-server已經啟動了。
如果沒有則可以這樣啟動:
sudo /etc/init.d/ssh start
ssh-server設定檔位於/ etc/ssh/sshd_config,在這裡可以定義SSH的服務連接埠,預設連接埠是22,你可以自己定義成其他連接埠號碼,如222,這裡要把PermitRootLogin的屬性改為yes。
sudo gedit /etc/ssh/sshd_config
然後重啟SSH服務:
sudo /etc/init.d/ssh restart
然後使用以下方式登陸SSH:
① 命令列方式:
ssh [email protected] username為192.168.1.112 機器上的使用者,需要輸入密碼。
② 用戶端方式:
2、問題與解決
ssh client 報 algorithm negotiation failed的解決方案之一
修改sshd的設定檔 /etc/ssh/sshd_config
在設定檔中添加:
Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbcMACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160,hmac-sha1-96,hmac-md5-96KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,[email protected]
重啟sshd服務後,即可正常串連。
導致此問題的原因是ssh升級後,為了安全,預設不再採用原來一些密碼編譯演算法,我們手工添加進去即可。
http://www.cnblogs.com/zjutlitao/p/6223486.html
windows用SSH和linux同步檔案&linux開啟SSH&ssh client 報 algorithm negotiation failed的解決方案之一