Fedora Linux: Restart / Stop / Start DHCPD Server Command

To manage the DHCPD (Dynamic Host Configuration Protocol Daemon) server on Fedora Linux, you can use the following commands:

  1. To restart the DHCPD server:
    $ sudo systemctl restart dhcpd
  2. To stop the DHCPD server:
    $ sudo systemctl stop dhcpd
  3. To start the DHCPD server:
    $ sudo systemctl start dhcpd

These commands will allow you to restart, stop, or start the DHCPD server on Fedora Linux.

Leave a Comment