Thank you for your response!
Sorry for my late response, but I had already written something, but it either disappeared or never appeared.
So, does that mean I have to enter it in the dhcpd.conf file, right?
Should I do that on both cluster members? Or maybe even on the management server?
Is this syntax correct?
Config example:
ddns-update-style none;
subnet 192.168.89.0 netmask 255.255.255.0 {
default-lease-time 43200;
max-lease-time 86400;
option host-name= pick(option host-name,
concat("dhcp-", binary-to-ascii(10, 8, "-", leased-address)));
range 192.168.89.10 192.168.89.254;
option routers 192.168.89.1;
option domain-name-servers 9.9.9.9, 1.1.1.1;
}
host testclient {
hardware ethernet 08:50:40:A2:F2:3D
fixed-address 192.168.89.20
}