【问题标题】:Virtual Box: Port Forwarding for SSH from Win10 Host to Ubuntu Guest Stopped WorkingVirtual Box:从 ​​Win10 主机到 Ubuntu 客户机的 SSH 端口转发停止工作
【发布时间】:2017-06-22 02:25:09
【问题描述】:

从我的 Windows 10 主机到我的 Ubuntu Virtual Box 客户机的端口转发已经运行了三年多,然后在昨天重启客户机后突然 PUTTY 停止连接。

我没有更改任何设置,它只是停止工作。我已经调查并尝试了很多我在互联网上找到的建议,但它仍然不起作用。以下是详细信息:

在 Ubuntu 客户机上,我已确认 sshd 守护进程正在运行

$ ps aux | grep sshd
jryan    19096  0.0  0.0  61376  3036 ?    Ss  14:15  0:00 /usr/sbin/sshd

在 Ubuntu 客户机上,我可以成功地通过 SSH 连接到 localhost 的 22 端口

$ ssh localhost
jryan@localhost's password:
Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-108-generic x86_64)
...

在 Ubuntu 客户机上,我已确认 sshd 正在侦听端口 22

netstat -lp --inet
tcp    0    0 localhost:ssh       *:*     LISTEN
tcp    0    0 10.0.0.18:ssh       *:*     LISTEN

再次,使用 nmap

$ sudo nmap -sS -O localhost/24
PORT      STATE SERVICE
22/tcp    open  ssh

当我从 Windows 10 主机(使用 Putty)进行 ssh 时,它只挂起 60 秒,然后我收到错误消息“服务器意外关闭网络连接”。然后我打开了一个 Windows BASH 会话以从命令行运行 ssh:

jryan@JIMSURFACEPRO4:/mnt/c/Windows/System32$ ssh -vv jryan@127.0.0.1 -p 60022
OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to 127.0.0.1 [127.0.0.1] port 60022.
debug1: Connection established.
debug1: identity file /mnt/c/Users/[user]/Google Drive/[user]/home/jryan/.ssh/id_rsa type -1
debug1: identity file /mnt/c/Users/[user]/Google Drive/[user]/home/jryan/.ssh/id_rsa-cert type -1
debug1: identity file /mnt/c/Users/[user]/Google Drive/[user]/home/jryan/.ssh/id_dsa type -1
debug1: identity file /mnt/c/Users/[user]/Google Drive/[user]/home/jryan/.ssh/id_dsa-cert type -1
debug1: identity file /mnt/c/Users/[user]/Google Drive/[user]/home/jryan/.ssh/id_ecdsa type -1
debug1: identity file /mnt/c/Users/[user]/Google Drive/[user]/home/jryan/.ssh/id_ecdsa-cert type -1
debug1: identity file /mnt/c/Users/[user]/Google Drive/[user]/home/jryan/.ssh/id_ed25519 type -1
debug1: identity file /mnt/c/Users/[user]/Google Drive/[user]/home/jryan/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8
ssh_exchange_identification: Connection closed by remote host

我已确认在虚拟机上正确设置了端口转发:

VBoxManage showvminfo
NIC 2:           MAC: 080027775E38, Attachment: NAT, Cable connected: on, Trace: off (file: none), Type: 82540EM, Reported speed: 0 Mbps, Boot priority: 0, Promisc Policy: deny, Bandwidth group: none
NIC 2 Settings:  MTU: 0, Socket (send: 64, receive: 64), TCP Window (send:64, receive: 64)
NIC 2 Rule(0):   name = ssh, protocol = tcp, host ip = , host port = 60022, guest ip = , guest port = 22

我已确认 Windows 主机上的端口 60022 已打开

c:\Program Files\Oracle\VirtualBox>netstat -a

Active Connections

  Proto  Local Address          Foreign Address        State
  TCP    0.0.0.0:22             JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:80             JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:135            JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:443            JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:445            JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:7680           JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:23367          JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:49664          JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:49665          JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:49666          JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:49667          JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:49668          JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:49670          JimSurfacePro4:0       LISTENING
  TCP    0.0.0.0:60022          JimSurfacePro4:0       LISTENING
  TCP    10.0.0.8:139           JimSurfacePro4:0       LISTENING

我已设置 Windows 防火墙规则,允许端口 60022 上的所有 TCP 连接(入站和出站)

我检查了 Ubuntu 来宾的日志。当我尝试连接时,没有任何内容写入 /var/logs/auth.log/var/logs/syslog

这是我来自 Ubuntu 主机的/etc/ssh/sshd_config

jryan@medstro-dev-jim:~$ cat /etc/ssh/sshd_config
# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
ListenAddress 127.0.0.1
ListenAddress 10.0.0.18
Protocol 2,1
AllowUsers jryan
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey /etc/ssh/ssh_host_ed25519_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 1024

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
PasswordAuthentication yes
LoginGraceTime 240
PermitRootLogin without-password
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
ClientAliveInterval 60
ClientAliveCountMax 20
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes

我没有想法。如果你能弄清楚这里发生了什么,请告诉我。

谢谢!

【问题讨论】:

    标签: ubuntu virtualbox portforwarding


    【解决方案1】:

    关闭 windows 防火墙并尝试一次。在 Windows 10 中,我观察到虚拟盒网络存在一些问题。

    【讨论】:

      猜你喜欢
      • 2017-03-14
      • 1970-01-01
      • 2012-03-21
      • 1970-01-01
      • 1970-01-01
      • 2013-09-30
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多