http://docs.openstack.org/developer/sahara/devref/devstack.html#setting-fixed-ip-address-for-vmware-fusion-vm
I'm going to copy the content here just in case that page disappears in the future:
Setting fixed IP address for VMware Fusion VM
- Open file /Library/Preferences/VMware Fusion/vmnet8/dhcpd.conf
- There is a block named “subnet”. It might look like this:
subnet 192.168.55.0 netmask 255.255.255.0 {
range 192.168.55.128 192.168.55.254;
- You need to pick an IP address outside of that range. For example - 192.168.55.20
- Copy VM MAC address from VM settings->Network->Advanced
- Append the following block to file dhcpd.conf (don’t forget to replace VM_HOSTNAME andVM_MAC_ADDRESS with actual values):
host VM_HOSTNAME {
hardware ethernet VM_MAC_ADDRESS;
fixed-address 192.168.55.20;
}
- Now quit all the VmWare Fusion applications and restart vmnet:
$ sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli --stop
$ sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli --start
- Now start your VM, it should have new fixed IP address