up vote 0 down vote favorite
share [g+] share [fb]

I ultimately wish to run a FreeBSD virtual machine on my Vista computer to act as a server so I can test several projects. Im getting the FreeBSD vm set up with apache, php etc but how do I connnect to the vm from my computer? How do I configure/find the ip address I need to connect to?

Thanks.

link|improve this question
1  
I think we need to know what virtualization technology / server you are using... – Tao Oct 6 '09 at 9:57
You might better off asking this superuser/serverfault. Unless you want to access the computer programmitcally - in which case what technology do you want to connect via? – Preet Sangha Oct 6 '09 at 9:58
I do apologise for posting in the incorrect place. I am using VMware. – lbuerlber Oct 6 '09 at 10:00
Already on serverfault - serverfault.com/questions/71708/… – ChrisF Oct 6 '09 at 11:45
feedback

migrated from stackoverflow.com Oct 6 '09 at 11:42

This question came from our site for professional and enthusiast programmers.

2 Answers

In the settings for your VM, you should set the NIC to bridged mode to expose it to your network, then assign it an IP like you would any other computer. If you give it a DNS entry you can connect by hostname, if not you can connect by IP.

link|improve this answer
feedback

On the FreeBSD guest, open the terminal and type ifconfig to determine it's IP address. If Apache is configured correctly (make sure the www service is started) and your firewall settings aren't blocking it, you should be able to use this IP from Vista to access the site on FreeBSD.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown