Serviço DHCP não sobe

1. Serviço DHCP não sobe

mateus schott
mschott

(usa Debian)

Enviado em 28/03/2012 - 19:48h

Boa noite pessoal! Estou tentando criar um servidor dhcp aqui em casa, mas executo "service dhcpd start" e da falha, uso CentOS 6, abaixo meu dhcpd.conf:

ddns-update-style none;
default-lease-time 600;
max-lease-time 7200;
authoritative;

subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.3 192.168.0.199;
option routers 192.168.0.1;
option domain-name-servers 208.67.222.222,208.67.220.220;
option broadcast-address 192.168.0.255;

host net {
hardware ethernet F0:BF:97:47:51:DC;
fixed-address 192.168.0.3;


Se alguém conseguir me dar uma ajudinha eu agradeço.


  


2. Re: Serviço DHCP não sobe

mateus schott
mschott

(usa Debian)

Enviado em 28/03/2012 - 19:51h

a configuração da duas placas de rede:

eth0:

DEVICE=eth0
BOOTPROTO=DHCP
HWADDR=48:5B:39:52:6C:C5
ONBOOT=yes



eth1:

DEVICE=eth1
BOOTPROTO=static
DHCPCLASS=
HWADDR=00:E0:52:BC:8E:51
IPADDR=192.168.0.1
NETMASK=255.255.255.0
ONBOOT=yes


3. Re: Serviço DHCP não sobe

mateus schott
mschott

(usa Debian)

Enviado em 28/03/2012 - 19:52h

Se eu executo "dhcpd -f" ele funciona, mas o serviço nao inicializa no boot, tenho sempre q executar esse comando.


4. Re: Serviço DHCP não sobe

Rodrigo
rodrigom

(usa Debian)

Enviado em 28/03/2012 - 20:00h

Boa noite;

Qual erro que aparece ?


5. Re: Serviço DHCP não sobe

Bruno
BrunoTecnico

(usa Sabayon)

Enviado em 28/03/2012 - 20:05h

Não sei no CentOS, mas ao menos no Debian funciona:
/etc/init.d/dhcp3-server restart
/etc/nit.d/alguma_coisa_dhcp restart


Não muda quase nada, mas eu uso essa estrutura para o arquivo Dhcpd.conf:

deny unknown-clients;
ddns-update-style none;
max-lease-time 86400;
default-lease-time 6400;
option domain-name "meu.dominio";
option domain-name-servers 192.168.0.1;

subnet 192.168.0.0 netmask 255.255.255.0 {
[ tab ] option routers 192.168.0.1;
[ tab ] option broadcast-address 192.168.0.255;
[ tab ] range 192.168.0.10 192.168.0.120
[ tab ] }
group {
[ tab ] use-host-decl-names true;
[ tab ] host nome {
[ tab ] hardware ethernet 00:7a:5a:10:5c;
[ tab ] fixed-address 192.168.1.1;
[ tab ] }
}
#-- Essa parte abaixo é no caso de definir IP fixo á uma determinada Máquina --#

subnet 192.168.0.0 netmask 255.255.255.0 {
[ tab ] option broadcast-address 192.168.0.255;
[ tab ] use-host-decl-names true;
[ tab ] host machine10 { hardware ethernet 00:05:sa:15:0c; fixed-address 192.168.0.10; }
[ tab ] host machine180 { hardware ethernet 00:7a:ds:45:7b; fixed-address 192.168.0.180; }
}


[ tab ] = siginifica apertar a tecla TAB para dar espaço


6. Re: Serviço DHCP não sobe

mateus schott
mschott

(usa Debian)

Enviado em 28/03/2012 - 21:32h

# tail -f /var/log/messages

If you intend to request help from the dhcp-server@isc.org
Mar 28 18:30:31 servidor-casa dhcpd: mailing list, please read the section on the README about
Mar 28 18:30:31 servidor-casa dhcpd: submitting bug reports and requests for help.
Mar 28 18:30:31 servidor-casa dhcpd:
Mar 28 18:30:31 servidor-casa dhcpd: Please do not under any circumstances send requests for
Mar 28 18:30:31 servidor-casa dhcpd: help directly to the authors of this software - please
Mar 28 18:30:31 servidor-casa dhcpd: send them to the appropriate mailing list as described in
Mar 28 18:30:31 servidor-casa dhcpd: the README file.
Mar 28 18:30:31 servidor-casa dhcpd:
Mar 28 18:30:31 servidor-casa dhcpd: exiting



# dhcpd
Internet Systems Consortium DHCP Server 4.2.3rc1
Copyright 2004-2011 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
WARNING: Host declarations are global. They are not limited to the scope you declared them in.
Wrote 0 deleted host decls to leases file.
Wrote 0 new dynamic host decls to leases file.
Wrote 3 leases to leases file.
Listening on LPF/eth1/00:e0:52:bc:8e:51/192.168.0.0/24
Sending on LPF/eth1/00:e0:52:bc:8e:51/192.168.0.0/24

No subnet declaration for eth0 (189.103.97.116).
** 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. **

Sending on Socket/fallback/fallback-net


7. Re: Serviço DHCP não sobe

Joca (Altemir Braz Dantas Junior)
jocajuni

(usa Debian)

Enviado em 28/03/2012 - 21:48h

Vi que vc USA Debian
Edita o arquivo /etc/default/isc-dhcp-server

E anode esta INTERFACE=""
Coloque
INTERFACES="eth1"


[]s
Joca


8. Re: Serviço DHCP não sobe

mateus schott
mschott

(usa Debian)

Enviado em 29/03/2012 - 07:57h

eu uso CentOS 6 e não o Debian.


9. DHCP

cleber
cleberantonio

(usa CentOS)

Enviado em 29/03/2012 - 08:43h

Então o arquivo onde vc determina a interface no centos é "/etc/sysconfig/dhcp"


10. Re: Serviço DHCP não sobe

mateus schott
mschott

(usa Debian)

Enviado em 01/04/2012 - 20:01h

coloquei o eth1 no arquivo /etc/sysconfig/dhcpd mas o serviço continua não subindo.


11. Re: Serviço DHCP não sobe

Bruno
BrunoTecnico

(usa Sabayon)

Enviado em 01/04/2012 - 20:26h

mschott escreveu:

coloquei o eth1 no arquivo /etc/sysconfig/dhcpd mas o serviço continua não subindo.


O problema pode ser seu arquivo de configuração do DHCP.

> Execute o comando dhcpd -d
Este comando serve para checar o arquivo de configuração dhcpd.conf

Se possível poste o resultado do comando dhcpd -d para avaliarmos.


12. Re: Serviço DHCP não sobe

mateus schott
mschott

(usa Debian)

Enviado em 02/04/2012 - 20:19h

[root@servidor-casa ~]# dhcpd -d
Internet Systems Consortium DHCP Server 4.2.3rc1
Copyright 2004-2011 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
WARNING: Host declarations are global. They are not limited to the scope you declared them in.
Wrote 0 deleted host decls to leases file.
Wrote 0 new dynamic host decls to leases file.
Wrote 3 leases to leases file.
Listening on LPF/eth1/00:e0:52:bc:8e:51/192.168.0.0/24
Sending on LPF/eth1/00:e0:52:bc:8e:51/192.168.0.0/24

No subnet declaration for eth0 (189.103.98.53).
** 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. **

Sending on Socket/fallback/fallback-net




01 02



Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts