首先,主機 與 vmware中的ubuntu能互相ping通,但是使用xshell 連線時出現下面錯誤
connecting to 192.168.153.128:22…
could not connect to 『192.168.153.128』 (port 22): connection failed.
type `help』 to learn how to use xshell prompt.
出現該問題可能為:
1.沒有安裝ssh;
2.伺服器端防火牆關閉了22埠,沒有開啟ssh服務;
解決問題:
1.安裝ssh: ubuntu 中使用命令:sudo apt-get install openssh-server
2.安裝完成後,啟動ssh:service sshd start
ssh相關命令:
開啟ssh服務:service sshd start
關閉ssh服務:service sshd stop
重啟ssh服務:servcie sshd restart
ssh服務開機自動啟動:chkconfig sshd on
取消開機自啟動:chkconfig sshd off
開啟服務後,檢查服務狀態:service sshd status
參考文獻:
xshell連線vm虛擬機器
type ethernet proxy method none browser only no bootproto static 這裡需要改 defroute yes ipv4 failure fatal no aipv6init yes ipv6 autoconf yes ipv6 defrout...
使用xshell連線VM虛擬機器中的linux
使用xshell遠端登入很方便,留作記錄 首先配置vm的那塊虛擬網絡卡,ip 要和在vm 中 虛擬網絡卡編輯器中的nat 模式下的子網ip 在同乙個網段即可 但是,這個ip位址和主機ip 位址一點關係都沒有,因為這些都是虛擬出來的,所以只需要虛擬機器中的ip統一就好 總之呢,倆要在乙個子網內 然後,...
vm中配置nat連線,ssh連線
配置nat網路連線,啟動vm的nat方式連線,配置linux的ip為dhcp自動獲得,也可以手動指定。指定linux的ip網段和vmnet8的ip在同一網段,網管一般為 2,ok。安裝ssh server apt get install openssh server 還需要配置vm的埠對映,才可以連...