私のWindows 10ホストから私のUbuntu Virtual Boxゲストへのポートフォワーディングは、3年以上にわたって完全に動作していました。昨日PUTTYは接続を停止しました。バーチャルボックス:Win10ホストからUbuntuゲストへのSSHポートフォワーディング
私は設定を変更していないので、動作を停止しました。私は調査し、インターネット上で見つけた多くの提案を試みましたが、まだ動作していません。ここでは詳細は以下のとおりです。
Ubuntuゲストで、私はsshdデーモンがUbuntuゲストで
$ ps aux | grep sshd
jryan 19096 0.0 0.0 61376 3036 ? Ss 14:15 0:00 /usr/sbin/sshd
を実行していることを確認している、私はポート22
$ ssh localhost
[email protected]'s password:
Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-108-generic x86_64)
...
上のローカルホストに成功したSSHことができますUbuntuゲストで
、私はsshdがポート22
netstat -lp --inet
tcp 0 0 localhost:ssh *:* LISTEN
tcp 0 0 10.0.0.18:ssh *:* LISTEN
をリッスンしていることが確認されています私は、Windows 10ホストからのSSH場合は再度、nmapの
$ sudo nmap -sS -O localhost/24
PORT STATE SERVICE
22/tcp open ssh
で(パテを使用して)、それだけで60秒間ハングし、私は「予期せずサーバー閉じたネットワーク接続」エラーが発生します。私は、コマンドラインからSSHを実行するには、WindowsのBASHセッションを開い:
[email protected]:/mnt/c/Windows/System32$ ssh -vv [email protected] -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
私はそのポートを確認しています私はポート60022
上のすべてのTCP接続を許可するWindowsファイアウォールのルール(インバウンドとアウトバウンド)を設定している60022は、Windowsホスト上で開いている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
私はUbuntuゲストのログを確認しました。接続を試みると、/var/logs/auth.log
または/var/logs/syslog
には何も書き込まれません。
は、ここに私の/etc/ssh/sshd_config
Ubuntuのホストからである:私はアイデアの出だ
[email protected]:~$ 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
。ここで何が起こっているのかわかるかどうか教えてください。
ありがとうございます!