DHCP Scope

  • Thread starter Thread starter Dale
  • Start date Start date
D

Dale

Is there a way where i can setup a DHCP scope where it
will assign certain ip addresses like 10.21.2.x to certain
computers by Mac. If so how do i do that
 
why would you want to do that? IF you're gonna anchor an
IP to a specific box, then just hard code the info in the
client machine.
 
Yes this is possible. You would need to create
reservations for each MAC address. For instance you could
associate MAC 123456789012 with IP 10.21.2.5 and so on. To
do so run the command
Dhcpcmd DHCPServerIP address AddReservedIp 10.21.2.0
10.21.2.x MACAddress PCName PCComment DHCP
The AddReservedIP directive creates the reservation. There
are other directives available for the DHCPCMD.EXE command
and you can find the details at
http://support.microsoft.com/default.aspx?scid=kb;en-
us;232213
 
Back
Top