Isc-dhcp-server not starting error: not configured to listen to any interfaces
Isc-dhcp-server not starting error: not configured to listen to any interfaces
我已经安装了 Isc-dhcp-server 并相应地配置了文件,但它仍然显示未配置为侦听任何接口的错误。
我有 ubuntu 17.04 64 位
接口文件:
auto lo
iface lo inet loopback
iface enp2s0 inet static
address 10.90.90.5
netmask 255.255.255.0
gateway 10.90.90.1
broadcast 10.90.90.255
dns-nameservers 8.8.8.8
up service isc-dhcp-server restart
在/etc/default/isc-dhcp-server文件中
INTERFACES="enp2s0"
/etc/dhcp/dhcpd.conf 文件:
subnet 10.90.90.0 netmask 255.255.255.0 {
range 10.90.90.10 10.90.90.20;
default-lease-time 600;
max-lease-time 7200;
option routers 10.90.90.1;
}
我得到的错误:
error
好吧,您的界面 enp2s0
似乎没有启动。您可以使用 ifconfig
.
进行检查
您可以通过在 /etc/network/interfaces
中的 auto lo
下放置 auto enp2s0
来修复它
问题是我的 isc-dhcp-server 配置文件被重置为带有空白接口的原始文件。
我重新安装了 ubuntu,一切正常。
有点晚了但是:
isc-dhcp-server
作为名为 isc-dhcp-server
的 /etc/default
文件夹中的配置文件是该文件的最后一行,您必须设置 isc-dhcp-server
将监听的接口:
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACESv4="eth0 eth1"
INTERFACESv6=""
尝试使用 INTERFACESv4
键。
然后重启服务器。
server isc-dhcp-server restart
我已经安装了 Isc-dhcp-server 并相应地配置了文件,但它仍然显示未配置为侦听任何接口的错误。 我有 ubuntu 17.04 64 位
接口文件:
auto lo
iface lo inet loopback
iface enp2s0 inet static
address 10.90.90.5
netmask 255.255.255.0
gateway 10.90.90.1
broadcast 10.90.90.255
dns-nameservers 8.8.8.8
up service isc-dhcp-server restart
在/etc/default/isc-dhcp-server文件中
INTERFACES="enp2s0"
/etc/dhcp/dhcpd.conf 文件:
subnet 10.90.90.0 netmask 255.255.255.0 {
range 10.90.90.10 10.90.90.20;
default-lease-time 600;
max-lease-time 7200;
option routers 10.90.90.1;
}
我得到的错误:
error
好吧,您的界面 enp2s0
似乎没有启动。您可以使用 ifconfig
.
您可以通过在 /etc/network/interfaces
auto lo
下放置 auto enp2s0
来修复它
问题是我的 isc-dhcp-server 配置文件被重置为带有空白接口的原始文件。 我重新安装了 ubuntu,一切正常。
有点晚了但是:
isc-dhcp-server
作为名为 isc-dhcp-server
的 /etc/default
文件夹中的配置文件是该文件的最后一行,您必须设置 isc-dhcp-server
将监听的接口:
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACESv4="eth0 eth1"
INTERFACESv6=""
尝试使用 INTERFACESv4
键。
然后重启服务器。
server isc-dhcp-server restart