Created
September 29, 2015 12:40
-
-
Save sankars/2911a8b9e6ccc61e6247 to your computer and use it in GitHub Desktop.
Assign a static ip address for vmware guest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VMWare runs a dhcp server as a service in windows. | |
To assign a static ip to a guest, | |
Open -> C:\ProgramData\VMware\vmnetdhcp | |
Add to it. CDH3 is the guest name in the VMWare player | |
host CDH3 { | |
hardware ethernet 00:0C:29:A9:5E:7B; | |
fixed-address 192.168.220.174; | |
option domain-name-servers 0.0.0.0; | |
option domain-name ""; | |
option routers 0.0.0.0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment