O servidor DHCP do CentOS 7 falha ao iniciar (não será ativado na porta especificada)

1

Eu tenho um miniPC Cent0S 7 com portas de rede com e sem fio. A porta sem fio (wlp3s0) está conectada como um cliente DHCP com endereçamento 192.168.10.X e possui resolução DNS.

Estou tentando configurar a porta com fio (enp2s0) como um servidor DHCP para uma sub-rede privada com o endereçamento 192.168.100.X. O miniPC será anexado a um switch de rede que terá outros dispositivos clientes conectados para teste.

Eu segui as instruções do RedHat aqui para um tee.

Meu /etc/systemd/system/dhcpd.service é o seguinte:

[Unit]
Description=DHCPv4 Server Daemon
Documentation=man:dhcpd(8) man:dhcpd.conf(5)
Wants=network-online.target
After=network-online.target
After=time-sync.target

[Service]
Type=notify
ExecStart=/usr/sbin/dhcpd -f -cf /etc/dhcp/dhcpd.conf -user dhcpd -group dhcpd --no-pid enp2s0

[Install]
WantedBy=multi-user.target

E meu /etc/dhcp/dhcpd.conf é o seguinte:

default-lease-time 600;
max-lease-time 7200;
authoritative;

subnet 192.168.100.0 netmask 255.255.255.0 {
    option routers                  192.168.100.1;
    option subnet-mask              255.255.255.0;
    option broadcast-address        192.168.100.255;
    range 192.168.100.10 192.168.100.100;
}

Quando vou configurar e iniciar o serviço:

sudo systemctl --system daemon-reload
sudo systemctl restart dhcpd.service

Eu recebo isso em /var/log/messages :

localhost systemd: Starting DHCPv4 Server Daemon...
localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.5
localhost dhcpd: Copyright 2004-2013 Internet Systems Consortium.
localhost dhcpd: All rights reserved.
localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
localhost dhcpd: Wrote 0 leases to leases file.
localhost dhcpd: 
localhost dhcpd: No subnet declaration for enp2s0 (no IPv4 addresses).
localhost dhcpd: ** Ignoring requests on enp2s0.  If this is not what
localhost dhcpd:   you want, please write a subnet declaration
localhost dhcpd:   in your dhcpd.conf file for the network segment
localhost dhcpd:   to which interface enp2s0 is attached. **
localhost dhcpd: 
localhost dhcpd: 
localhost dhcpd: Not configured to listen on any interfaces!
localhost dhcpd: 
localhost dhcpd: This version of ISC DHCP is based on the release available
localhost dhcpd: on ftp.isc.org.  Features have been added and other changes
localhost dhcpd: have been made to the base software release in order to make
localhost dhcpd: it work better with this distribution.
localhost dhcpd: 
localhost dhcpd: Please report for this software via the CentOS Bugs Database:
localhost dhcpd:    http://bugs.centos.org/
localhost dhcpd: 
localhost dhcpd: exiting.
localhost systemd: dhcpd.service: main process exited, code=exited, status=1/FAILURE
localhost systemd: Failed to start DHCPv4 Server Daemon.
localhost systemd: Unit dhcpd.service entered failed state.
localhost systemd: dhcpd.service failed.

Alguma ideia do que está errado aqui?

Obrigado.

    
por Sean McVeigh 14.08.2016 / 22:12

2 respostas

1

Sua segunda interface (enp2s0) não possui endereço IP. Configure-o com o endereço da rede definida - ip addr add 192.168.100.1/24 dev enp2s0 e, em seguida, execute o serviço dhcp novamente. O endereço IP dessa interface deve ser estático.

    
por 14.08.2016 / 22:35
1

Configure a interface enp2s0 com o endereço IP estático 192.168.100.1 em / etc / sysconfig / network-scripts / ifcfg-enp2s0.

link

    
por 14.08.2016 / 22:44