windows用SSH和linux同步檔案&linux開啟SSH&ssh client 報 algorithm negotiation failed的解決方案之一

來源:互聯網
上載者:User

標籤: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的解決方案之一

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.