DHCP Reservations
-
Is there a way to set up DHCP reservations when using the FOG default DHCP server? I need to give each computer a known IP address for some scripts I plan on running on each computer after deployment.
Thanks.
-
Hi!
- Search for dhcp.conf or dhcp3.conf or something in /etc
- edit this file with nano or vi
- for each host you need an entry of this form:
host MYCOOLHOST {
hardware ethernet 00:00:00:00:00:00;
fixed-address 1.2.3.4;
}- Replace the 00:00:00:00:00:00 hosts MAC
- Replace 1.2.3.4 with your desired IP
- restart dhcp service or simply reboot
hth
xibeaga