problema con varios dhcp server
"jorge escalante" <[email protected]>
| Newsgroups | gmane.linux.pxes.spanish |
|---|---|
| Message-ID | <[email protected]> |
hola amigos
instale k12ltsp 6 todo bien las terminales encuentran al servidor al
bootear pero en el bnoteeo me muestra el sgte mensaje
ERROR No root-path received from the DHCP server
Posible reason include
1) Your dhcpd.conf file doesn t include the option root-path entry
2) Your have multiple DHCP servers on your network, and the client
received an offer from the wrong one
Kernel panic - not syncing Attempted to kill init
sabe alguien que puede ser el problema
yo tengo varios servidores dhcp en mi oficina cada uno para 10 terminales
uno en verion 4 y otro en version 5 de k12ltsp
como podria solucionar este problema, envio mi dhcpd.conf favor ayudenme
--
Jorge Escalante
Division sistemas
cel. 70812876
dhcpd.conf
(application/octet-stream, 3.1 KB)
# Sample configuration file for ISCD dhcpd
#
# Don't forget to set run_dhcpd=1 in /etc/init.d/dhcpd
# once you adjusted this file and copied it to /etc/dhcpd.conf.
#
default-lease-time 21600;
max-lease-time 21600;
ddns-update-style none;
allow booting;
allow bootp;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option routers 192.168.0.248;
option domain-name-servers 192.168.0.248;
next-server 192.168.0.248;
option domain-name "hillerelectric.ltsp";
option root-path "192.168.0.248:/opt/ltsp/i386";
option option-128 code 128 = string;
option option-129 code 129 = text;
option option-221 code 221 = text;
shared-network WORKSTATIONS {
subnet 192.168.0.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.0.181 192.168.0.200;
use-host-decl-names on;
option log-servers 192.168.0.248;
# trick from Peter Rundle <[email protected]>
# newer Macs
if substring (option vendor-class-identifier, 0, 9) = "AAPLBSDPC"
{
filename "yaboot";
option vendor-class-identifier "AAPLBSDPC";
}
# really old iMacs
elsif substring (option option-221, 0, 5) = "Apple"
{
filename "yaboot";
option vendor-class-identifier "AAPLBSDPC";
}
# Intel PXE
elsif substring (option vendor-class-identifier, 0, 9) = "PXEClient"
{
# NOTE: kernels are specified in /tftpboot/lts/pxe/pxelinux.cfg/
filename "/lts/pxe/pxelinux.0";
}
# default to an i386 BOOTP image
else
{
filename "/lts/vmlinuz.ltsp";
}
if substring (option vendor-class-identifier, 20, 3) = "ppc" {
option root-path "192.168.0.248:/opt/ltsp/ppc";
} else {
option root-path "192.168.0.248:/opt/ltsp/i386";
}
}
}
# example configurations for specifying specific kernels to specific clients
group {
use-host-decl-names on;
option log-servers 192.168.0.248;
host wshe183 {
hardware ethernet 44:4D:50:00:01:A0;
fixed-address 192.168.0.183;
filename "/lts/pxe/pxelinux.0";
# option option-128 e4:45:74:68:00:00;
# option option-129 "NIC=3c509";
}
host wshe184 {
hardware ethernet 00:D0:09:30:6A:1C;
fixed-address 192.168.0.184;
filename "/lts/vmlinuz.ltsp";
option option-128 e4:45:74:68:00:00;
option option-129 "NIC=ne";
}
host wshe185 {
hardware ethernet 00:D0:09:30:28:B2;
fixed-address 192.168.0.185;
# kernels are specified in /tftpboot/lts/boot/pxe/pxelinux.cfg/
filename "/lts/boot/pxe/pxelinux.0";
}
# Apple Specific Settings
# host wshe186 {
# hardware ethernet 00:30:65:69:23:60;
# fixed-address 192.168.0.186;
# option root-path "192.168.0.248:/opt/ltsp/ppc";
# filename "yaboot";
# option vendor-class-identifier "AAPLBSDPC";
# }
}