Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.misc > #89222

isc-dhcp-server

From Lawrence D’Oliveiro <ldo@nz.invalid>
Newsgroups comp.os.linux.misc
Subject isc-dhcp-server
Date 2026-07-30 02:09 +0000
Organization A noiseless patient Spider
Message-ID <114ebp7$1bcot$1@dont-email.me> (permalink)

Show all headers | View raw


After a Debian Unstable upgrade a couple of months ago, dhcpd (from
the isc-dhcp-server package) would no longer start automatically. This
is because it relies on a sysvinit startup script, and systemd has
finally removed support for that.

Looks like upstream development of that project has largely ceased, in
favour of a more elaborate successor that I am in no hurry to switch
to, for my simple home-internal needs. You can actually manually
launch /usr/sbin/dhcpd as root and it will automatically fork a daemon
process, but this got a bit tiresome. So I created a systemd service
definition for it:

    [Unit]
    Description=ISC DHCP Server

    [Install]
    WantedBy=network.target

    [Service]
    Type=forking
    ExecStart=/usr/sbin/dhcpd
    TimeoutStopSec=5
    Restart=always

That’s just under a dozen lines, including blank ones -- not a bad
replacement for a sysvinit script that is nearly 200 lines in size ...

Back to comp.os.linux.misc | Previous | NextNext in thread | Find similar | Unroll thread


Thread

isc-dhcp-server Lawrence D’Oliveiro <ldo@nz.invalid> - 2026-07-30 02:09 +0000
  Re: isc-dhcp-server Marc Haber <mh+usenetspam2616@zugschl.us> - 2026-07-30 08:02 +0200

csiph-web