I have just setup isc-dhcp on my server. I even setup the correct interface. But still the dhcp server won't boot. Its says Not configured to listen on any interfaces!
in the syslog. And when I try dhcpd -t /etc/dhcp/dhcpd.conf
it gives this error : /etc/dhcp/dhcpd.conf: interface name too long (is 20
Here's my dhcpd.conf :
ddns-update-style none;
option domain-name "thpi";
option domain-name-servers 208.67.222.222, 208.67.220.220;
default-lease-time 86400;
max-lease-time 604800;
authoritative;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
subnet 10.0.0.0 netmask 255.255.255.0 {
## dhcp start and end IP range ##
range 10.0.0.20 10.0.0.90;
option subnet-mask 255.255.255.0; ## subnet
option broadcast-address 10.0.0.255; ## broadcast
option routers 10.0.0.1; ## router IP
host pc1 {
hardware ethernet 60:a4:4c:3d:76:fa;
fixed-address 10.0.0.100;
}
host lap1 {
hardware ethernet 6c:71:d9:1e:f3:4f;
fixed-address 10.0.0.150;
}
host thnote {
hardware ethernet d0:22:be:d3:be:e1;
fixed-address 10.0.0.200;
}
}
/etc/default/isc-dhcp-server
file :
# Defaults for isc-dhcp-server initscript
# sourced by /etc/init.d/isc-dhcp-server
# installed at /etc/default/isc-dhcp-server by the maintainer scripts
#
# This is a POSIX shell fragment
#
# Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf).
#DHCPD_CONF=/etc/dhcp/dhcpd.conf
# Path to dhcpd's PID file (default: /var/run/dhcpd.pid).
#DHCPD_PID=/var/run/dhcpd.pid
# Additional options to start dhcpd with.
# Don't use options -cf or -pf here; use DHCPD_CONF/ DHCPD_PID instead
#OPTIONS=""
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACES="eth0:0"
Interfaces file :
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
auto eth0:0
iface eth0:0 inet static
name Lan
address 10.0.0.1
netmask 255.255.255.0
network 10.0.0.0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
What might be the issue?
Your
/etc/default/isc-dhcp-server
file should haveI got the same issue and it got solved after assigning an IP address to my interface
like,
I had this same problem. For Ubuntu 20.04 1 LTS. I had two NICs and I only wanted to use one of them to vend IPs via dhcp to clients on a LAN.
My fix was a combination of things as shown below. However I belive the real fix was the addition of interface to /etc/dhcp/dhcpd.conf
In hacking around I also changed the following, but not sure now I needed to. Shown for completeness.
Set the static IP of the server...
Start the DHCP server...
And retrieve its status...
There are two ways to start networking
via /etc/network/interfaces
via NetworkManager
DHCPD try to start after 1) but before 2)
If dhcpd can not detect network, try method 1)
I was also getting the same error. I found that I was starting the isc-dhcp-server6.service(IPV6), instead of isc-dhcp-server.service(IPV4). My configuration files were defined for ipv4 only. Hence I was getting "Not configured to listen on any interface" when I tried to do "systemctl start isc-dhcp-server6.service".
I had this issue as well. Dhcpd was starting before the network interface was ready. You can add this to your /etc/init/isc-dhcp-server.conf file (for IPv4).
Near the bottom of the file you will see a line like this (the "exec" is what you are looking for):
Add this to the line above it
This will delay the start of your dhcpd server. It will not slow down the rest of your boot process.
The bottom of that file now looks like this:
I had this issue also, but despite all the above, I needed to declare a scope for the subnet my NIC was directly connected to. This allowed the service to start without error.
http://www.braindisconnect.com/wiki/index.php?title=Linux_DHCP_Server
This message has nothing to do with your dhcpd.conf file or configuration. The error is because dhcpd is interpreting the /etc/dhcp/dhcpd.conf as an interface. The 20 is the character count of "/etc/dhcp/dhcpd.conf" and not the file contents.
Add the -cf to your syntax and so that config file is actually getting tested or just use dhcpd -t.