damien a écrit:Re...
Peux-tu nous montrer le fichier /etc/dhcpd.conf .
Ce qu'il faudrait savoir, ensuite, c'est si le serveur tftp répond ( tu peux essayer de l'interroger avec un client tftp classique et voir si tu peux récupérer les fichiers ad-hoc ).
Au niveau de la conf du serveur tftp, en installation classique, c'est gérer par inet.d, donc, il faut regarder du coté de /etc/inetd.conf pour voir ou se trouve le répertoire qui gère les fichiers de boot du client léger ( en install classique, c'est /boot ).
Essayes au moins ça, on verra la suite après ...
Cordialement
Damien
re
désolé, je n'avais pas vu ton premier message, jonglant avec pas mal de choses ce matin.
pour les fichiers voici ce que j'ai :
- Code: Tout sélectionner
# more /etc/dhcp3/dhcpd.conf
ddns-update-style none;
option domain-name "example.org";
option domain-name-servers ns1.example.org, ns2.example.org;
default-lease-time 600;
max-lease-time 7200;
log-facility local7;
# more /etc/ltsp/dhcpd.conf
authoritative;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.20 192.168.0.250;
option domain-name "example.com";
option domain-name-servers 192.168.0.1;
option broadcast-address 192.168.0.255;
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
filename "/ltsp/pxelinux.0";
option root-path "/opt/ltsp/i386";
}
j'ai supprimé les commentaire pour faire plus court
il manque ton truce
next-server 192.168.223.253;
option root-path "192.168.223.253:/";
ce qui pourait expliquer le problème
si je cherche le noyau :
- Code: Tout sélectionner
# find / -name "pxelinux.0"
/usr/lib/syslinux/pxelinux.0
/var/lib/tftpboot/ltsp/pxelinux.0
# ls -l /usr/lib/syslinux/
total 196
-rw-r--r-- 1 root root 408 2006-03-16 18:04 copybs.com
-rw-r--r-- 1 root root 12081 2006-03-16 18:04 img1200k.gz
-rw-r--r-- 1 root root 12327 2006-03-16 18:04 img1440k.gz
-rw-r--r-- 1 root root 12663 2006-03-16 18:04 img1743k.gz
-rw-r--r-- 1 root root 11515 2006-03-16 18:04 img720k.gz
-rw-r--r-- 1 root root 12720 2006-03-16 18:04 isolinux.bin
-rw-r--r-- 1 root root 13156 2006-03-16 18:04 isolinux-debug.bin
-rw-r--r-- 1 root root 512 2006-03-16 18:04 ldlinux.bss
-rw-r--r-- 1 root root 12332 2006-03-16 18:04 ldlinux.sys
-rw-r--r-- 1 root root 19132 2006-03-16 18:04 memdisk
-rw-r--r-- 1 root root 26756 2006-03-16 18:04 menu.c32
-rw-r--r-- 1 root root 13156 2006-03-16 18:04 pxelinux.0
-rw-r--r-- 1 root root 19532 2006-03-16 18:04 syslinux.com
# ls -l /var/lib/tftpboot/ltsp/
total 5064
lrwxrwxrwx 1 root root 24 2006-06-13 18:33 initrd.img -> initrd.img-2.6.15-23-386
-rw-r--r-- 1 root root 3737975 2006-06-13 18:33 initrd.img-2.6.15-23-386
-rw-r--r-- 1 root root 13156 2006-06-13 18:33 pxelinux.0
drwxr-xr-x 2 root root 4096 2006-06-13 18:00 pxelinux.cfg
lrwxrwxrwx 1 root root 21 2006-06-13 18:33 vmlinuz -> vmlinuz-2.6.15-23-386
-rw-r--r-- 1 root root 1414477 2006-05-23 18:56 vmlinuz-2.6.15-23-386
lequel je rajoute à j'imagine ceci :
next-server 192.168.0.1;
option root-path "192.168.0.1:/";
pour le deuxieme mail, je commence à comprendre. je suis en phase d'essais ...
A+
Merci
Philippe