with the following command i can get the local IP address of a Windows Guest:
Here is the "full row":$VBoxManage guestproperty enumerate myWinVM | grep "V4/IP" | cut -d"," -f2 | cut -d":" -f2 | tr -d " "
192.168.0.126
But... this command doesn't seems to work on a Linux Guest with Guest Additions loaded (lsmod -> vboxadd) :/$ VBoxManage guestproperty enumerate myWinVM | grep "V4/IP"
Name: /VirtualBox/GuestInfo/Net/0/V4/IP, value: 192.168.0.126, timestamp: 1251719828889115000, flags:
Any advice?
Do you know an alternative way to get that ip from the virtualizion linux host?
Thanks