I tried running Virtual Box 5.2 along phpvirtualbox 5.2, I intalled the extension pack and configured the config.php file correctly, but still I had the issue of not being to access any vm because Vbox would think that the best IP to reach it was 127.0.0.1. Then I thought I had messed something up and wiped off the hard drive, reinstalled Ubuntu server, and installed vbox 6.0.22 since 6.1 isnt compatible. Then installed phpvirtualbox 6.0.XX and exactly the same freaking bug. I cannot make it listen the right IP.
Is there any fix for this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
phpVirtualBox was moved to GitHub, so recommend you post future questions there.
The config.php file has a setting for what IP address VRDP should listen on. Mine is:
var $vrdeaddress = '192.168.10.100';
You can also set the IP address on a specific machine using vboxmanage.
I tried running Virtual Box 5.2 along phpvirtualbox 5.2, I intalled the extension pack and configured the config.php file correctly, but still I had the issue of not being to access any vm because Vbox would think that the best IP to reach it was 127.0.0.1. Then I thought I had messed something up and wiped off the hard drive, reinstalled Ubuntu server, and installed vbox 6.0.22 since 6.1 isnt compatible. Then installed phpvirtualbox 6.0.XX and exactly the same freaking bug. I cannot make it listen the right IP.
Is there any fix for this?
Aaron,
phpVirtualBox was moved to GitHub, so recommend you post future questions there.
The config.php file has a setting for what IP address VRDP should listen on. Mine is:
var $vrdeaddress = '192.168.10.100';
You can also set the IP address on a specific machine using vboxmanage.
vboxmanage modifyvm <vm name=""> --vrdeproperty "TCP/Address=192.168.10.100"</vm>
Rich