2015-02-11

Fixed DHCP IP allocation in VMware Fusion 7.0.0

on VMware Fusion 7.0.0

dhcpd configuration file:
Machintosh HD->Library->Preferences->VMware Fusion->vmnet8->dhcpd.conf

subnet 172.16.11.0 netmask 255.255.255.0 {
range 172.16.11.128 172.16.11.254;
option broadcast-address 172.16.11.255;
option domain-name-servers 172.16.11.2;
option domain-name localdomain;
default-lease-time 1800;                # default is 30 minutes
max-lease-time 7200;                    # default is 2 hours
option netbios-name-servers 172.16.11.2;
option routers 172.16.11.2;
}
host vmnet8 {
hardware ethernet 00:50:56:C0:00:08;
fixed-address 172.16.11.1;
option domain-name-servers 0.0.0.0;
option domain-name "";
option routers 0.0.0.0;
}

You can add the following config in the end of line.
host vm-hostname {
hardware ethernet 00:0C:29:F4:A5:02;
fixed-address 172.16.11.100;
}
but you have to use ip address above the range(172.16.11.128 172.16.11.254).


댓글 없음:

댓글 쓰기