Configuração do ISC-DHCP-SERVER [RESOLVIDO]

1. Configuração do ISC-DHCP-SERVER [RESOLVIDO]

ALCIVAN SILVA DA CRUZ
alcivansilva7

(usa Ubuntu)

Enviado em 11/03/2021 - 16:20h

Olá Boa Tarde,
Estou configurando um servidor LSTP no DEBIAN 10 para umas maquinas aqui, porém quando vou tentar configurar o ISC-DHCP-SERVER ele retorna um erro do qual eu não consegui identificar o problema, reduzi a configuração do dhcpd.conf pra deixar somente a parte do DHCP pra ver se funcionava mas também não funcionou, logo abaixo irei colocar a configuração dos arquivos e o erro que aparece.

arquivo /etc/network/interfaces

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface

allow-hotplug enp0s3
auto enp0s3
iface enp0s3 inet dhcp

allow-hotplug enp0s8
auto enp0s8
iface enp0s8 inet static
address 192.168.1.1
netmask 255.255.255.0


arquivo /etc/default/isc-dhcp-server

# Defaults for isc-dhcp-server (sourced by /etc/init.d/isc-dhcp-server)
# Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf).
#DHCPDv4_CONF=/etc/dhcp/dhcpd.conf
#DHCPDv6_CONF=/etc/dhcp/dhcpd6.conf
# Path to dhcpd's PID file (default: /var/run/dhcpd.pid).
#DHCPDv4_PID=/var/run/dhcpd.pid
#DHCPDv6_PID=/var/run/dhcpd6.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".
INTERFACESv4="enp0s8"
INTERFACESv6="enp0s8"


arquivo /etc/dhcp/dhcpd.conf

ddns-update-style none;
authoritative;
log-facility local7;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.2 192.168.1.255;
option domain-name-server 192.168.1.1;
option domain-name "internal.example.org";
option routers 192.168.1.1;
option broadcast-address 192.168.1.255;
default-lease-time 600;
max-lease-time 7200;
}


ERRO QUE APARECE

isc-dhcp-server[1243]: /etc/dhcp/dhcpd.conf line 12: semicolon expected.
mar 11 15:54:47 ZABBIX isc-dhcp-server[1243]: option
mar 11 15:54:47 ZABBIX isc-dhcp-server[1243]: ^
mar 11 15:54:47 ZABBIX dhcpd[1253]: Configuration file errors encountered -- exiting
mar 11 15:54:47 ZABBIX isc-dhcp-server[1243]: Configuration file errors encountered -- exiting
mar 11 15:54:47 ZABBIX dhcpd[1253]:
mar 11 15:54:47 ZABBIX systemd[1]: isc-dhcp-server.service: Control process exited, code=exited, status=1/FAILURE
-- Subject: Unit process exited
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- An ExecStart= process belonging to unit isc-dhcp-server.service has exited.
--
-- The process' exit code is 'exited' and its exit status is 1.
mar 11 15:54:47 ZABBIX isc-dhcp-server[1243]: If you think you have received this message due to a bug rather
mar 11 15:54:47 ZABBIX isc-dhcp-server[1243]: than a configuration issue please read the section on submitting
mar 11 15:54:47 ZABBIX isc-dhcp-server[1243]: bugs on either our web page at www.isc.org or in the README file
mar 11 15:54:47 ZABBIX isc-dhcp-server[1243]: before submitting a bug. These pages explain the proper
mar 11 15:54:47 ZABBIX isc-dhcp-server[1243]: process and the information we find helpful for debugging.
mar 11 15:54:47 ZABBIX isc-dhcp-server[1243]: exiting.
mar 11 15:54:47 ZABBIX dhcpd[1253]: If you think you have received this message due to a bug rather
mar 11 15:54:47 ZABBIX systemd[1]: isc-dhcp-server.service: Failed with result 'exit-code'.
-- Subject: Unit failed
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- The unit isc-dhcp-server.service has entered the 'failed' state with result 'exit-code'.
mar 11 15:54:47 ZABBIX dhcpd[1253]: than a configuration issue please read the section on submitting
mar 11 15:54:47 ZABBIX systemd[1]: Failed to start LSB: DHCP server.
-- Subject: A unidade isc-dhcp-server.service falhou
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- A unidade isc-dhcp-server.service falhou.
--
-- O resultado é failed.
mar 11 15:54:47 ZABBIX dhcpd[1253]: bugs on either our web page at www.isc.org or in the README file
mar 11 15:54:47 ZABBIX dhcpd[1253]: before submitting a bug. These pages explain the proper
mar 11 15:54:47 ZABBIX dhcpd[1253]: process and the information we find helpful for debugging.
mar 11 15:54:47 ZABBIX dhcpd[1253]:
mar 11 15:54:47 ZABBIX dhcpd[1253]: exiting.



SE ALGUÉM PUDER AJUDAR AGRADEÇO.


  


2. Re: Configuração do ISC-DHCP-SERVER

Gustavo Fernandes Moreira
Gustavo_fm

(usa Debian)

Enviado em 11/03/2021 - 18:54h

É algum erro de sintaxe, qual eu não sei. Dei uma olhada e parece tudo correto. Sugiro que vá testando sem algumas linhas até achar onde está o problema.
O meu está assim:


option domain-name "local";
option domain-name-servers ns1.local;
ddns-update-style none;

subnet 192.168.1.0 netmask 255.255.255.0 {
max-lease-time 172800;
default-lease-time 86400;
ddns-updates off;
range 192.168.1.100 192.168.1.199;
option domain-name-servers 192.168.1.5, 1.1.1.1;
option routers 192.168.1.5;
option broadcast-address 192.168.1.255;
}





3. Re: Configuração do ISC-DHCP-SERVER

ALCIVAN SILVA DA CRUZ
alcivansilva7

(usa Ubuntu)

Enviado em 12/03/2021 - 08:46h

Gustavo_fm escreveu:

É algum erro de sintaxe, qual eu não sei. Dei uma olhada e parece tudo correto. Sugiro que vá testando sem algumas linhas até achar onde está o problema.
O meu está assim:


option domain-name "local";
option domain-name-servers ns1.local;
ddns-update-style none;

subnet 192.168.1.0 netmask 255.255.255.0 {
max-lease-time 172800;
default-lease-time 86400;
ddns-updates off;
range 192.168.1.100 192.168.1.199;
option domain-name-servers 192.168.1.5, 1.1.1.1;
option routers 192.168.1.5;
option broadcast-address 192.168.1.255;
}


Consegui resolver aqui, faltava um S em option domain-name-servers mesmo assim estava dando erro por causa que o arquivo dhcpd.pid já havia sido criado, então exclui e deu certo, obrigado.







Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts