I have enabled the DHCP server using systemctl start dhcpd.service I have a pretty simple dhcp.conf which looks like this: ************************ ddns-update-style interim; ignore client-updates;
subnet 192.168.2.0 netmask 255.255.255.0 { option routers 192.168.2.1; option subnet-mask 255.255.255.0; option domain-name-servers 151.197.0.38, 199.45.32.38; option ip-forwarding off; range dynamic-bootp 192.168.2.100 192.168.2.254; default-lease-time 21600; max-lease-time 43200; } ************************** If I run the services command, the GUI doesn't show DHCPD as available, much less running, but I don't know if this is just part of the new sysctl way of doing things. I tired connecting to the server using omshell, and I get the following:
# omshell
connect
../../../../lib/isc/unix/socket.c:891: epoll_ctl(DEL), 5: Bad file descriptor ../../../../lib/isc/unix/socket.c:891: epoll_ctl(DEL), 5: Bad file descriptor dhcpctl_connect: no more
Can anyone give me an idea where I might go to troubleshoot this?