SERVIDOR DHCP NAO INICIA

1. SERVIDOR DHCP NAO INICIA

anderson
pipous

(usa RedHat)

Enviado em 16/01/2008 - 11:13h

Este e meu modelo de dhcp.conf


# dhcpd.conf
#
# Configuration file for ISC dhcpd (see 'man dhcpd.conf')
#
# www.brasilnets.com.br

server-identifier BRASILNETS_SERVER;
ddns-update-style ad-hoc;
authoritative;
max-lease-time 2400;
option domain-name "brasilnets.net";
option domain-name-servers 200.175.5.139, 200.175.182.139;
option host-name "BN";
option routers 192.168.1.255;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.15 192.168.1.200;

}

subnet 192.168.5.0 netmask 255.255.255.0{
range 192.168.5.1 192.168.5.15;
option routers 192.168.5.1;
option subnet-mask 255.255.255.0;
option domain-name "brasilnets.net";
option domain-name-servers 200.184.56.3, 200.184.26.4;
option host-name "BN";
host posto1{
hardware ethernet 00:16:76:d3:10:c1;
fixed-address 192.168.5.2;
}

host posto2{
hardware ethernet 00:13:a9:40:e8:fe;
fixed-address 192.168.5.3;
}

host posto3{
hardware ethernet 00:19:d2:45:e7:31;
fixed-address 192.168.5.4;
}

host posto4{
hardware ethernet 00:19:d1:44:e7:33;
fixed-address 192.168.5.5;
}

host posto5{
hardware ethernet 00:0a:e6:c1:bf:32;
fixed-address 192.168.5.6;
}
}
subnet 192.168.6.0 netmask 255.255.255.252{
option routers 192.168.6.1;
option subnet-mask 255.255.255.252;
option domain-name "brasilnets.net";
option domain-name-servers 200.175.5.139, 200.175.182.139;
option host-name "BN";
host anderson{
hardware ethernet 00:18:f3:41:17:bc;
fixed-address 192.168.6.2;
}
}

subnet 192.168.7.0 netmask 255.255.255.252{
option routers 192.168.7.1;
option subnet-mask 255.255.255.252;
option domain-name "brasilnets.net";
option domain-name-servers 200.184.56.3, 200.184.26.4;
option host-name "BN";
host douglas{
hardware ethernet 00:18:e7:26:f8:a3;
fixed-address 192.168.7.2;
}
}

subnet 192.168.8.0 netmask 255.255.255.0{
option routers 192.168.8.1;
option subnet-mask 255.255.255.0;
option domain-name "brasilnets.net";
option domain-name-servers 200.184.56.3, 200.184.26.4;
option host-name "BN";
host mayara{
hardware ethernet 00:18:e7:1c:38:cb;
fixed-address 192.168.8.2;
}
}

subnet 192.168.9.0 netmask 255.255.255.252{
option routers 192.168.9.1;
option subnet-mask 255.255.255.252;
option domain-name "brasilnets.net";
option domain-name-servers 200.184.56.3, 200.184.26.4;
option host-name "BN";
host zailton{
hardware ethernet 00:0c:76:b1:01:9c;
fixed-address 192.168.9.2;
}
}

subnet 192.168.10.0 netmask 255.255.255.252{
option routers 192.168.10.1;
option subnet-mask 255.255.255.252;
option domain-name "brasilnets.net";
option domain-name-servers 200.175.5.139, 200.175.182.139;
option host-name "BN";
host tiago{
hardware ethernet 00:08:54:2f:92:cb;
fixed-address 192.168.10.2;
}
}
subnet 192.168.11.0 netmask 255.255.255.252{
option routers 192.168.11.1;
option subnet-mask 255.255.255.252;
option domain-name "brasilnets.net";
option domain-name-servers 200.184.56.3, 200.184.26.4;
option host-name "BN";
host jackson{
hardware ethernet 00:50:2c:a6:fe:2f;
fixed-address 192.168.11.2;
}
}



E esta e a mensagem de erro ...



Erro ao reiniciar o servidor dhcpd :
Internet Systems Consortium DHCP Server V3.0.3
Copyright 2004-2005 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/
Wrote 0 deleted host decls to leases file.
Wrote 0 new dynamic host decls to leases file.
Wrote 2 leases to leases file.
Interface eth1 matches multiple shared networks

If you did not get this software from ftp.isc.org, please
get the latest from ftp.isc.org and install that before
requesting help.

If you did get this software from ftp.isc.org and have not
yet read the README, please read it before requesting help.
If you intend to request help from the dhcp-server@isc.org
mailing list, please read the section on the README about
submitting bug reports and requests for help.

Please do not under any circumstances send requests for
help directly to the authors of this software - please
send them to the appropriate mailing list as described in
the README file.

exiting.


Alguem sabe me diser onde pode estar o ERRO ?


  


2. Re: SERVIDOR DHCP NAO INICIA

anderson
pipous

(usa RedHat)

Enviado em 16/01/2008 - 13:20h

Ja vi que outros passaram por este mesmo problema ....to quase desistindo ....


3. Calma

Elgio Schlemer
elgio

(usa OpenSuSE)

Enviado em 16/01/2008 - 13:46h

Tudo tem sua lógica!

O dhcp verifica cada interface e procura no dhcp.conf por um subnet específico. TEM QUE BATER!

Se não fechar, ele dá erro.

Exemplo: tu define tua eth0 como 10.0.0.0/255.255.255.0 e no dhcpd.conf tu coloca uma subnet 10.0.0.0/255.255.255.128 NÃO BATE!

No caso ele está DIZENDO que a eth1 fecha com multiplas subnets. Tu não enviaste pra nós o ip máscara da tua eth1, mas eu levantei as subnets que encontrei no teu dhcpd.conf:

subnet 192.168.1.0 netmask 255.255.255.0

subnet 192.168.5.0 netmask 255.255.255.0

subnet 192.168.6.0 netmask 255.255.255.252

subnet 192.168.7.0 netmask 255.255.255.252

subnet 192.168.8.0 netmask 255.255.255.0

subnet 192.168.9.0 netmask 255.255.255.252

subnet 192.168.10.0 netmask 255.255.255.252

subnet 192.168.11.0 netmask 255.255.255.252

As tuas placas tem que casar certinho com UMA DESTAS redes e com APENAS UMA!

No aguardo


4. Em tempo

Elgio Schlemer
elgio

(usa OpenSuSE)

Enviado em 16/01/2008 - 13:47h

o dhcp não trata interfaces virtuais!!

Toda a tua "interface" eth1:Qualquer coisa para ele é eth1!!




5. Interfaces

anderson
pipous

(usa RedHat)

Enviado em 16/01/2008 - 15:01h

Estas sao minhas interfaces

eth0 =addr:10.1.1.151 Bcast:10.255.255.255 Mask:255.0.0.0
eth1 =addr:169.254.249.253 Bcast:169.254.255.255 Mask:255.255.255.0



6. Re: SERVIDOR DHCP NAO INICIA

Elgio Schlemer
elgio

(usa OpenSuSE)

Enviado em 16/01/2008 - 17:26h

eth0 =addr:10.1.1.151 Mask:255.0.0.0
Esta faixa não está relacionada no teu dhcp

eth1 =addr:169.254.249.253 Mask:255.255.255.0
Este ip é estranho! Geralemente ele é setado quando a placa não obteve ip.

Tuas placas não chegam nem perto das redes configuradas no teu dhcpd.conf!

Mesmo que ele seja um servidor central e que existam outros relay apontando para ele, as redes das duas eths devem estar nelas.

E veja este ip da eth1... estranho...






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts