I have a Ethernet printer which should be running behind a Raspi which is connected via WiFi to the rest of the network. Network wise this is working fine, but I have issues with the ISC DHCP server using the following /etc/dhcp/dhcpd.conf:
subnet 10.0.50.0 netmask 255.255.255.224 {
    range 10.0.50.10 10.0.50.15;
}
host printer {
  hardware ethernet aa:bb:cc:dd:ee:ff;
  fixed-address 10.0.50.10;
}
Without the explicit mac address, I still ran into issues where 10.0.50.11 (or others) where assigned to the printer.
Question Is there a better way to ensure that only one - and always the same - IP address is provided by my DHCP?
