Escucha las transmisiones DHCP [Dynamic Host Configuration Protocol] y BOOTP [Bootstrap Protocol] en subredes conectadas directamente y las retransmite a servidores DHCP o BOOTP en otros lugares, permitiendo la asignación de direcciones IP incluso si el servidor DHCP no está en la misma subred.
$ dhcp-helper -b -s 192.168.1.100 -i eth0
$ dhcp-helper -b -s 192.168.1.100 -s 192.168.1.101 -i eth0
$ dhcp-helper -b -s 192.168.1.100 -i eth0 -i wlan0
$ $ dhcp-helper -d -s 192.168.1.100 -i eth0
$ dhcp-helper -b -s 192.168.1.100
1.-
Para iniciar automáticamente dhcp-helper al inicio:
# nano /etc/default/dhcp-helper
INTERFACES="eth0"
SERVERS="192.168.1.100"
OPTIONS="-b"
Después, activar el servicio:
# systemctl enable dhcp-helper
# systemctl start dhcp-helper