SecureCRT遠端連線到Ubuntu

2021-10-06 08:50:29 字數 1693 閱讀 5940

securecrt是乙個很不錯的東西,今天試著去安裝配置了一下。安裝軟體的過程就不用去講了。

首先確保自己的虛擬機器已經裝了ssh,如果沒裝就以下方式裝上:

1.安裝

ubuntu預設安裝了openssh-client,所以在這裡就不安裝了,如果你的系統沒有安裝的話,再用apt-get安裝上即可。

安裝ssh-server

sudo apt-get install openssh-server

安裝ssh-client

sudo apt-get install openssh-client

2.確認sshserver是否安裝好

ps -e | grep sshd

450 ? 00:00:00 sshd

如果看到sshd那說明ssh-server已經啟動了

下面是我的配置過程:

準備工作:我的虛擬機器時ubuntu linux,採用的是橋接上網的模式。我給linux分配了乙個ip(192.168.1.104),而我主機的ip是192.168.1.103(從主機ping虛擬機器能夠ping通,哈哈這個是廢話啦!)。

根據提示錯誤,我們可以做到可能是我們的埠號設定問題了。那我們的埠號應該在**設定呢?

其實在/etc/ssh下有乙個sshd_config 檔案。對這個檔案進行修改vi sshd_config。

往檔案中新增如下內容:

port 22

protocol 2

permitrootlogin yes

passwordauthentication yes

然後在/etc/init.d/下,通過service sshd restart命令重啟這個服務。你再去試試看連線就可以上了。

如果接著出現錯誤: 提示

金鑰交換失敗。

沒有相容的加密程式。伺服器支援這些加密程式:

aes128-ctr,aes192-ctr,aes256-ctr,[email protected],aes256-

[email protected],[email protected]

example computer does not support the selected algorthms.

問題已經解決了,修改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,[email protected],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,[email protected]

重啟sshd服務後,即可正常連線

遠端連線到mysql

1 進入mysql,建立乙個新使用者xuys 格式 grant 許可權 on 資料庫名.表名 使用者 登入主機 identified by 使用者密碼 grant select,update,insert,delete on to xuys 192.168.88.234 identified by ...

securecrt連線到虛擬機器linux

虛擬機器設定靜態ip位址後。可以通過securecrt連線,但是得確認虛擬機器本身安裝了ssh.下面虛擬機器需要安裝ssh 1.sudo apt get install openssh server 2.sudo etc init.d ssh start 啟動ssh服務 在實際實驗時,當執行apt ...

secureCRT無法連線到sles11解決辦法

今天使用虛擬機器安裝了suse linux enterprise server 11,想使用securecrt連線,但總是連線不上,因為安裝的時候就把防火牆關掉了,就沒再考慮,而且外面的xp和suse是可以ping通的,很奇怪,網上搜了一下,解決辦法如下 suse 預設的防火牆設定為禁止所有外來聯結...