Return to site

Mac Asking For Dhcp Client Id Change Ip

broken image


  1. How To View Dhcp Client List
  2. Find Dhcp Client Id

As long as there is a free ip address in the dhcp scope, a normal client receives an ip address, but I if it gets full of 'bad addresses' I have to manually delete them before someone gets an address.

Active10 months ago

I'm experiencing a weird issue where my Ubuntu 18.04 (server) box gets issued a wrong IP address during boot from the DHCP server. Running dhclient after boot on the interface results in the right IP being added to the interface.

The DHCP Server is a Windows box where a reservation was manually configured using the MAC address shown by ip addr in ubuntu (without colons):

My 50-courtin-networking.cfg (cloud-init cfg)

Journalctl entries for DHCP:

Manually calling dhclient after login (verbose):

10.10.10.10 is the correct DHCP server, and 10.10.10.40 is the IP configured on it. On the Windows DHCP, the wrong lease (.162) shows a long 'Unique ID' that does not contain any MAC address present on the ubuntu box: 032e827c00020000ab11d0fc617dced58a43

What's the right way to avoid this? Deny leases for the long UID? Where does that UID come from in the first place? The NIC is onboard in a Dell PowerEdge R710 server.

Mac Asking For Dhcp Client Id Change Ip
NoMadNoMad
21711 gold badge33 silver badges1414 bronze badges

2 Answers

The cause of the problem is that the built-in network config of Ubuntu 18.04 no longer uses the NIC Mac address as the default id for DHCP requests.

The traditional (and I believe 'sensible') behavior can be restored by adding dhcp-identifier: mac to the configuration in the /etc/netplan/xxx.yaml (cloud-init) file as follows:

Where 'nicdevicename' is the name of your network device

Use

to try the new configuration. If you get any errors, please note that precise indentation is very important in .yaml files..

annebanneb

Denying the lease won't work. There's no way networkd could know why it's being denied, so it won't just magically switch to a different ID type if you do so. You have to do that manually.

If your systemd version is recent enough and if you have direct control over the config files written out by cloud-init, you can tell systemd-networkd to send a MAC-address-based client ID via the *.network file:

But if you know that systemd-networkd will always be used, you can just assign the correct lease to client ID 032e827c00020000ab11d0fc617dced58a43, because that's what systemd-networkd will always send for that machine. (It generates the ID based on /etc/machine-id.)

Mos DHCP clients, including dhclient, supply a client-ID field of type '01' (MAC-based). Another common type is '00' (domain name). However, by default, systemd-networkd supplies an 'opaque' client-ID that was generated from the contents of /etc/machine-id.

According to the DHCP protocol, leases are chosen by client ID first (as long as the client supplies a 'client ID' option, which may or may not be MAC-based), then by the MAC address only if the client didn't send an ID.

So when you're configuring a reservation, all good DHCP servers will allow you to enter either the client ID or the MAC address. If you enter just the MAC address, then I suppose that a type-'01' (MAC-based) client ID is automatically implied. There may be a checkbox named 'Ignore client ID', which is convenient for you but technically violates the DHCP spec.

(For example, I have two Wi-Fi adapters with different MACs, but I've configured the OS to send the same client ID no matter which adapter is connected. This way I get the same address via both.)

grawity

How To View Dhcp Client List

grawity
263k4141 gold badges549549 silver badges619619 bronze badges

Find Dhcp Client Id

Not the answer you're looking for? Browse other questions tagged networkingubuntuipdhcp or ask your own question.





broken image