ubuntu遠端連線遇到的一些問題及解決辦法,ubuntu一些問題
1、在window平台上進行遠端連線linux主機,需要在window上下載遠端連線的用戶端,比如:SSH、SecureCRT、putty等。
2、與此重要的是,也需要在linux主機上安裝SSH服務程式,不然也串連不上,道理很簡單,linux系統上需要某個程式接受遠程用戶端的串連,我們需要在linux上安裝這個程式。命令附上:
sudo apt-get install openssh-server
安裝完後,系統會自動啟動該服務程式
3、server responded “Algorithm negotiation failed”
網上的解決方式很有效:
修改ssh的設定檔 /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-cbc
MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160,hmac-sha1-96,hmac-md5-96
KexAlgorithms 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,curve25519-sha256@libssh.org
重啟sshd服務後,即可正常串連。
sudo service ssh restart