Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Ubuntu VM running on my Windows 7 machine. How do I set it up so that I can access an the webserver externally through ssh?

I found steps (in Setup SSH access between VirtualBox Host and Guest VMs) to be able to ssh to my guest from my host, but that still leaves me with the problem of accessing it through my router.

I suppose that I could install an ssh server on my Windows machine and then tunnel a few times (though I'm not 100% sure what to use in terms of local, dynamic, etc. or how to set up multiple tunnels?), but is there a way to make the VM directly accessible to my router so I could directly port forward to it?

share|improve this question

5 Answers

up vote 45 down vote accepted

Change the adapter type in VirtualBox to bridged, and set the guest to use DHCP or set a static IP address outside of the bounds of DHCP. This will cause the Virtual Machine to act like a normal guest on your home network. You can then port forward.

share|improve this answer
Heh, that was stupid. Thanks! – Jordan May 6 '11 at 4:11
1  
Thanks, mate! Was having trouble with this today. :) – Wilhelm Murdoch Jan 4 '12 at 14:14
Any Idea how 2 adapter configuration will work? One on NAT and other on Host Only? – CantGetANick Mar 14 '12 at 11:47
4  
In my opinion exposing the VM on the local network is not the best option (for instance in an office network), the solution proposed by @vkostromin keeps the encapsulation of the VM within the host. – Victor P. Dec 10 '12 at 23:17

The best way to login to a guest Linux VirtualBox VM is port forwarding. By default, you should have one interface already which is using NAT. Then go to the Network settings and click the Port Forwarding button. Add a new Rule:

Host port 3022, guest port 22, name ssh, other left blank.

or from command line

VBoxManage modifyvm myserver --natpf1 "ssh,tcp,,3022,,22"

where 'myserver' is the name of the created VM.

That's all! Please be sure you don't forget to install an SSH server:

sudo apt-get install openssh-server
share|improve this answer
All day I've been thinking I did something wrong. Then I installed the server :( – Angelo R. May 14 '12 at 3:57
2  
Great answer, this is the one that should be accepted. – JohnEye Aug 14 '12 at 16:09
What do I use as a host name or IP address? – Keyslinger Dec 3 '12 at 13:14
2  
@Keyslinger, is this what you were looking for? ssh -p 3022 user@127.0.0.1 That was the one step that I was missing and just went to find on another site. – D. Woods Dec 21 '12 at 4:50
1  
I also added the port redirect from 2020 to 80, so I can easily access Apache from the browser using 192.0.0.1:2020. VBoxManage modifyvm myserver --natpf1 "ssh,tcp,,2020,,80" – russoedu Feb 28 at 9:20
show 6 more comments

Keeping the NAT adapter and adding a second host-only adapter works amazing, and is crucial for laptops (where the external network always changes).

http://muffinresearch.co.uk/archives/2010/02/08/howto-ssh-into-virtualbox-3-linux-guests/

Remember to create a host-only network in virtualbox itself (GUI -> settings -> network), otherwise you can't create the host-only interface on the guest.

share|improve this answer

In the network settings (Advanced) you can add any IP address of the host machine you need to forward a port to. This works for me.

Also, I guess, but not tested, you can change the command line to:

VBoxManage modifyvm myserver --natpf1 "ssh,tcp,192.168.1.100,3022,,22"

where 192.168.1.100 is the external adapter address of the host machine (preferably it is static).

share|improve this answer

A good explanation about how to configure port forwarding with NAT is found in the VirtualBox documents: http://www.virtualbox.org/manual/ch06.html#natforward

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.