-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Description
The udhcp server does not keep running after startup:
pi@rachel:~ $ service udhcpd status
● udhcpd.service - LSB: Start busybox udhcpd at boot time
Loaded: loaded (/etc/init.d/udhcpd)
Active: active (exited) since Wed 2016-03-09 19:30:03 UTC; 21h ago
Process: 365 ExecStart=/etc/init.d/udhcpd start (code=exited, status=0/SUCCESS)
It should be "active (running)". The result is that clients connecting to the wifi hang forever waiting for an IP address. You can fix it with the following:
pi@rachel:~ $ sudo service udhcpd stop
pi@rachel:~ $ sudo service udhcpd start
Which will get it running again, but the same problem will appear on reboot.
Reactions are currently unavailable