Iniciando o dhcpd: [FAILED]

0

Eu tenho uma máquina virtual Centos 6 usando o KVM.

Quando inicio o serviço DHCPd "service dhcpd start", recebo o seguinte:

Starting dhcpd:       [FAILED]

Quando executo o "dhcpd", recebo o seguinte:

Internet Systems Consortium DHCP Server 4.1.1-P1
Copyright 2004-2010 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
Wrote 0 leases to leases file.

No subnet declaration for eth1 (10.0.0.5).
** Ignoring requests on eth1.  If this is not what
   you want, please write a subnet declaration
   in your dhcpd.conf file for the network segment
   to which interface eth1 is attached. **


No subnet declaration for eth0 (192.168.121.176).
** Ignoring requests on eth0.  If this is not what
   you want, please write a subnet declaration
   in your dhcpd.conf file for the network segment
   to which interface eth0 is attached. **


Not configured to listen on any interfaces!

This version of ISC DHCP is based on the release available
on ftp.isc.org.  Features have been added and other changes
have been made to the base software release in order to make
it work better with this distribution.

Please report for this software via the CentOS Bugs Database:
    http://bugs.centos.org/

exiting.

Aqui está o meu dhcpd.conf:

captura de tela do dhcpd.conf

Como posso consertar isso? Eu quero configurar o DHCPd na eth1.

Alguém pode me ajudar por favor e me fornecer os detalhes e comandos exatos?

    
por NSD 08.03.2017 / 11:21

1 resposta

1

Eu sugiro que você leia a página man do dhcp.conf .

O motivo pelo qual o dhcpd não está sendo iniciado é explicitamente declarado em sua pergunta - você não disse para escutar em nenhuma interface.

Para ouvir na eth1, como você afirmou, é necessário, no mínimo, algo semelhante à seguinte cláusula no dhcpd.conf:

subnet 10.0.0.5 netmask 255.255.255.0 {
   range 10.0.0.6 10.0.0.254;
}

Mas você precisará ajustá-lo para adequar-se ao modo como sua eth1 está configurada - assumi uma suposição sobre a máscara e o intervalo necessário.

O arquivo dhcpd.conf que está pré-instalado provavelmente tem muitas pressas que só precisam ser descomentadas para que ele funcione. É provavelmente bem anotado também.

    
por 08.03.2017 / 11:27