I followed sk92473 to add DHCP reservation for some hosts on my 3100 running R80.10.
But it's not working at all, the reservation isn't working for the specified host and worst then that the DHCP isn't working anymore for any other host.
I can't figure out the problem
here's the content of my dhcpd.conf file :
ddns-update-style none;
subnet 10.10.10.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 10.10.10.10 10.10.10.240;
option routers 10.10.10.1;
option domain-name-servers 9.9.9.9, 8.8.8.8;
}
#dhcpd.private:
host LAP-MTL-007.telesystem.intra {
60:45:BD:FA:C9:E1;
10.10.10.222;
}
Thanks,