我有一个Ubuntu虚拟机运行在我的Windows 7机器上。我如何设置它,以便我可以通过SSH从外部访问web服务器?

我发现步骤(在VirtualBox主机和客户虚拟机之间设置SSH访问)能够从我的主机SSH到我的客户,但这仍然留给我通过路由器访问它的问题。

我想我可以在我的Windows机器上安装一个SSH服务器,然后隧道几次(虽然我不是100%确定在本地,动态等方面使用什么,或者如何设置多个隧道?),但是有没有一种方法可以让虚拟机直接访问我的路由器,这样我就可以直接端口转发到它?


当前回答

使用NAT网卡和添加端口转发。注明实际主机ip。不要使用127.0.0.1或localhost。

其他回答

对于Windows主机,您可以:

在virtualbox管理器中: 在virtualbox管理器中选择ctrl+G, 然后进入网络面板 添加专用网络 确保“激活DHCP”未选中 网管(windows) 选择新创建的virtualbox主机专用适配器和物理网卡 右键选择“制作桥” 享受

使用NAT网卡和添加端口转发。注明实际主机ip。不要使用127.0.0.1或localhost。

您也可以启动一个端口转发到您的主机,或任何其他服务器,从您的客户。这是特别有用的,如果你的客户是“锁定”或不能以其他方式完成ModifyVM选项(例如没有权限VBoxManage)。

三个次要要求是1)您是/可以登录到VirtualBox Guest(通过“控制台”GUI,另一个Guest等),2)您在VirtualBox主机(或其他服务器)上有一个帐户,3)SSH和TCP转发不被阻止。

假设你能满足这3个要求,以下是步骤:

On the Guest, run netstat -rn and find the Gateway address to the default route destination 0.0.0.0. Let's say it's "10.0.2.2". This 'Gateway' address is (one of) the VirtualBox Host virtual IP(s). On the Guest, run ssh -R 2222:localhost:22 10.0.2.2 where "10.0.2.2" is the VirtualBox server's IP address -OR- any other server IP you wish to port forward to. On the Host, run ssh 10.0.2.2 -p2222 where 10.0.2.2 is the default gateway/VBHost virtual IP found in step 1. If it is NOT the VirtualBox host you are port forwarding to, then the command is ssh localhost -p2222

SSH从INTERNET返回到您的家庭/办公室VirtualBox客户机

其他用户在这里提供的答案:如何通过主机从外部SSH到VirtualBox客户端?

... 帮我完成了从外面的因特网连接到我家里电脑的客用机的任务。你应该能够使用电脑,平板电脑和智能手机(android, IPhone等)连接。我增加了几个步骤,可能对其他人有帮助:

下面是我设置的一个快速图表:

远端设备——> INTERNET——> MODEM——> ROUTER——> HOST MACHINE——> GUEST VM 远程设备(ssh客户端)——> PASS THRU DEVICES——> GUEST VM (ssh服务器) 远程设备(离开ssh端口3022)——> INTERNET——> MODEM——> ROUTER (FWD frm:p3022到:p3022)——> HOST MACHINE (FWD frm:p3022到:p22)——> GUEST VM(到达ssh端口22)

对我来说,关键是要意识到所有连接都是通过中间设备从我的远程PC到我家里的客户虚拟机——因此是端口转发!

注: *需要ssh客户端请求一个安全连接和运行的ssh服务器来处理安全连接。

我将从上面转发所选答案中使用的端口3022。 在需要的地方输入您的IP(家庭调制解调器/路由器,主机IP,客户IP等),选择的名称只是示例-使用或更改。

1.在调制解调器的IP地址/路由器的外部IP地址上创建连接端口3022的ssh隧道。

ssh客户端/设备可能命令:ssh -p 3022 user-name@home_external_IP

2.端口转发=我们正在通过连接从路由器到主机

另外,确保路由器上的防火墙/IPtable规则允许端口转发(如果需要,打开) 路由器的Pfwd SCREEN需要的条目:AppName:SSH_Fwd, Port_from: 3022, Protocol:both (UDP/TCP), IP_address:hostIP_address, Port_to:3022,其他的都可以为空

DD-WRT路由器软件资源/信息:

dd - wrt Port_Forwarding dd - wrt Static_DHCP

3.主机防火墙:开放端口3022 #,因此转发端口可以通过客户机

主机:如果还没有安装VirtualBox、客户附加组件和客户机器 配置客户计算机,然后按照下面的网络部分操作 我使用VirtualBox GUI来设置客户的网络-比CLI更容易 如果您想使用其他方法,请参考:VirtualBox/manual/ch06.html#natforward

4.有些人建议使用网桥适配器来访问LAN和LAN上的其他机器。这也增加了安全风险,因为如果防火墙设置不当,您的客户机器现在暴露在LAN机器和INTERNET黑客面前。因此,我选择了连接到NAT的网络适配器,以减少桥接安全风险。

在客户机器上执行以下操作:

Guest Machine VirtualBox Network settings: Adapter 1: Attached to NAT Guest Machine VirtualBox Port Forwarding Rule: Name:External_SSH, Protocol:TCP, Host Port: 3022, Guest Port 22, Host&guest IPs:leave blank click on advance in Network section then click on Port forwarding to enter rules Guest Machine Firewall: open port 22 #so ssh connection can enter Guest Machine: Make sure that ssh server is installed, configured properly, and running LINUX test to see if ssh server running w/command: sudo service ssh status Can check netstat to see if connection made to port 22 on the guest machine

另外,根据所使用的平台,有不同的ssh服务器和客户端。

维基百科/ Secure_Shell 维基百科/ Comparison_of_SSH_servers 维基百科/ Comparison_of_SSH_clients

对于Ubuntu用户:

ubuntu社区:SSHOpenSSH/配置 ubuntu社区:OpenSSH -键

应该是这样。如果我犯了错误或者想要添加任何东西——请随意这样做——我仍然是一个新手。

希望这能帮助到一些人。好运!

在主机上使用putty(不支持端口转发)登录运行在虚拟机中的ubuntu虚拟机:

On Virtualbox manager select the vm, click on settings icon. Then go Networks and enable two adaptors as below: Adaptor 1 (For internet access): Attached to -> NAT, Advanced -> Check the cable connected. Adaptor 2: Attached to -> Host only adaptor, Advanced -> Check the cable connected and Promiscuous mode -> Allow all. Start the ubuntu vm. Login to the VM as root. Edit the file '/etc/network/interfaces' as below and save it: auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp auto eth1 iface eth1 inet dhcp Restart the VM. Login to the VM and run below command to check the IP allocated to eth1: ifconfig Use this IP to open putty session for the VM.