I have a guest Windows Server that need to run on Fusion 3.0 with a static address of 10.10.2.2, subnet 255.255.255.0 and have the ability to address it via that address from the host.
Ive been mucking around with the /Library/Application Support/VMWare Fusion/vmnet1/dhcpd.conf and have successfully gotten Fusion to statically assign this IP using the following settings:
subnet 10.10.2.0 netmask 255.255.254.0 {
range 10.10.2.100 10.10.2.254;
option broadcast-address 10.10.3.255;
option domain-name-servers 10.10.2.1;
option domain-name localdomain;
default-lease-time 1800; # default is 30 minutes
max-lease-time 7200; # default is 2 hours
}
host vmnet1 {
hardware ethernet 00:50:56:C0:00:01;
fixed-address 10.10.2.1;
option domain-name-servers 0.0.0.0;
option domain-name "";
}
host WindowsVM {
hardware ethernet 00:0c:29:3a:fc:eb;
fixed-address 10.10.2.2;
}
The only problem is that I cant access the guest from the host once I change those settings. I think it has to do with the actual vmnet1 interface still being assigned to an IP of 192.168.85.1, whereas it should be 10.10.2.1 in order to connect to it (I think). Only problem is, I cant figure out how to change the IP address of that interface (assuming that is the problem).
Any suggestions??
Thanks a bunch!