2

I am using fedora 13.

I want to statically bind a MAC to IP. Now the problem is if the IP is within the range pool, it may get allocated to some other host also. For that I use a tweak, where I insert a entry in dhcpd.leases (although not recommended). Can anyone recommend a better solution. My requirement is, if I statically bind IP to a host then no matter what, it should be assigned to that host only. It is ok if I need to update the dhcp version, only problem is that I cannot update the fedora version, due to some reasons.

I referred this this link but has no solution to allow static binding of IP within the range pool.

Kaunteya
  • 129
  • 1
  • 6

2 Answers2

3

Use a reservation as shown in Example 10.3. Static IP address using DHCP to fix the address to a particular MAC.

The reserved address is not allocated to any other host requesting an address.

Pekka
  • 530
  • 5
  • 15
  • My problem is that if the fixed address parameter is with the range of dynamic pool then there is a chance that it might get allocated to some other host also. I want a fix for such problem. – Kaunteya Nov 20 '13 at 09:16
  • 1
    No it won't. That is the whole point of setting the reservation is the DHCP server reserves that IP within the pool and is only allowed to assign that dynamic IP to that MAC address. – Rex Nov 21 '13 at 17:30
1

Segment/Split your pool.

pool {

                range xxx.xxx.1.20 xxx.xxx.1.22;
                range xxx.xxx.1.24 xxx.xxx.1.249;

}

Now you have xxx.xxx.1.23 available to allocate to a static assignment.

user208837
  • 21
  • 1