I want to connect to website which i host on virtualbox. On Virtualbox is installed Windows server 2012. I don't know how can I connect to that site outside VB.
标签:
virtualbox
相关问题
- vagrant + virtualbox Timed out while waiting for t
- How to enable Genymotion emulator to use the WIFI
- Virtualbox 6.1.10, Ubuntu 20.04 bad return status
- .composer/config file permission denied using lara
- Vagrant/virtualbox no SSH connection and timeout (
相关文章
- 为什么VirtualBox无法使用NAT网络?
- Xamarin Android Player Error when attempting to fi
- Virtual Box limit Bandwith on network [closed]
- Tool to Debug Guest OS in Virtual Box
- How to fix VM issue with minikube start ?
- docker toolbox quick start fails with VBoxManage.e
- Why do I get 'Binary logging not possible.'
- Why is the default Vagrant shared folder empty?
It depends on how your network is setup within the Virtual Box environment. Check under the Network section of the settings page of your Virtual machine. There should be a set of tabs for adapters. One of them should be "enabled". Below that checkbox is a dropdown marked "Attached To:" The default setting is NAT. In NAT mode your virtual Box will be assigned its own IP address on a Private network that can't be seen by your "real" network. The Virtual Machine will be able to browse the web and whatnot but not interact with other machines. NAT mode also prevents the machine from being visible from the outside internet.
If you set it to "Bridged Networking", this will allow the VM to act as any other computer on your network. Once you have set this up your VM will have an IP address that can be reached by other local computers.
If you then want that machine to be visible from the internet you will need to setup Port Forwarding.
See the following Documentation for more detailed instructions. https://www.virtualbox.org/manual/ch06.html http://catlingmindswipe.blogspot.com/2012/06/how-to-virtualbox-networking-part-two.html