En estos dias he estado montando unos clientes ligeros con LTSP. El DHCP me funciona de maravillas, tanto para las PCs como para los thinclients. Pero estos me estan dando el siguiente error:
PXE32- TFTP Time out.
Aqui la conf del DHCP:
Código: Seleccionar todo
ignore-client-updates;
authoritative;
default-lease-time 900;
max-lease-time 7200;
option ip-forwarding off;
option domain-name "apb.hlg.sld.cu";
allow booting;
allow bootp;
subnet 192.168.1.0 netmask 255.255.255.0{
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
option domain-name-servers 201.220.196.178,201.220.222.131;
option netbios-name-servers 192.168.1.1;
range 192.168.1.5 192.168.1.60;
class "pxeclient"{
match if substring(option vendor-class-identifier, 0, 9)="PXEClient";
vendor-option-space PXE;
filename "/srv/tftp/ltsp/i386/pxelinux.0";
}
}
# /etc/default/tftpd-hpa
Código: Seleccionar todo
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/srv/tftp/ltsp/i386"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="--secure"
RUN_DAEMON="yes"
Código: Seleccionar todo
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /srv/tftp/ltsp/i386/
disable = no
}
Uso ltsp-server y dhcp como servicios separados.
Saludos.