为什么我无法通过 Telnet 或主机的 SSH 连接到 VMWare 客户机 ubuntu?

为什么我无法通过 Telnet 或主机的 SSH 连接到 VMWare 客户机 ubuntu?

我的主机系统:Win7(x64)和 VMware Workstation 12

VMware Ethernet Network Adapter VMnet1:
    IPv4: 162.168.86.1
    Mask: 255.255.255.0
    Gateway:

VMware Ethernet Network Adapter VMnet8:
    IPv4: 162.168.17.1
    Mask: 255.255.255.0
    Gateway:

虚拟机:Lubuntu 16.04(x64)

ens33     Link encap:Ethernet  HWaddr 00:0c:19:0f:d6:b8  
          inet addr:128.128.129.232  Bcast:128.128.129.255  Mask:255.255.254.0

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1

虚拟机设置...网络适配器=桥接(自动)

我尝试使用 PuTTY 通过 Telnet 从主机访问虚拟机:目标(IP 地址)=128.128.129.232 端口=23 并通过 SSH,在端口=22

但结果是一样的:这个消息框

“PuTTY 致命错误”、“网络错误:连接被拒绝”

答案1

Ubuntu 自带的 ssh 服务器或 telnet 服务已卸载。

我已经安装了 openssh-server,然后我可以连接 ssh 端口 22。

sudo apt-get install ssh

答案2

此错误通常由于 IP 冲突而发生。为 Ubuntu 分配静态 IP 地址应该可以解决此问题。

http://www.doublecloud.org/2013/03/configure-static-ip-address-on-linux-vm-in-vmware-player/

相关内容