Configuration ltsp sous ubnutu pour amd64

Fermé
bekkaami Messages postés 2 Date d'inscription mercredi 11 février 2009 Statut Membre Dernière intervention 12 février 2009 - 11 févr. 2009 à 22:30
meehdi8 Messages postés 150 Date d'inscription mardi 22 avril 2008 Statut Membre Dernière intervention 12 octobre 2009 - 4 sept. 2009 à 16:16
Bonjour,
j'aimerais bien configurer le fichier dhcp.conf de serveur ltsp sous ubnutu pour amd64
mon fichier actuel dhcp.conf est sous la forme suivant

#
# Default LTSP dhcpd.conf config file.
#

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.11;
option broadcast-address 192.168.0.255;
option routers 192.168.0.1;
next-server 192.168.0.1;
# get-lease-hostnames true;
option subnet-mask 255.255.255.0;
option root-path "/opt/ltsp/i386";
if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
filename "/ltsp/i386/pxelinux.0";
} else {
filename "/ltsp/i386/nbi.img";
}
}
A voir également:

4 réponses

alors?
ton problème?
0
bekkaami Messages postés 2 Date d'inscription mercredi 11 février 2009 Statut Membre Dernière intervention 12 février 2009
12 févr. 2009 à 21:08
bonsoir
mon problème et j'arrive à specifier le chemin ou se trouve l'image du fichier amd64.img
0
meehdi8 Messages postés 150 Date d'inscription mardi 22 avril 2008 Statut Membre Dernière intervention 12 octobre 2009 26
31 août 2009 à 16:47
meme probleme
0
meehdi8 Messages postés 150 Date d'inscription mardi 22 avril 2008 Statut Membre Dernière intervention 12 octobre 2009 26
4 sept. 2009 à 16:14
J'ai trouvé la solution, la voila
=====================================
#
# Default LTSP dhcpd.conf config file.
#

authoritative;

subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.20 192.168.1.250;
option domain-name "*";
option domain-name-servers 192.168.1.10;
option broadcast-address 192.168.1.255;
option routers 192.168.1.10;
next-server 192.168.1.10;
get-lease-hostnames true;
option subnet-mask 255.255.255.0;
option root-path "/opt/ltsp/amd64";
if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
filename "/ltsp/amd64/pxelinux.0";
} else {
filename "/ltsp/amd64/initrd.img";
}
}
0
meehdi8 Messages postés 150 Date d'inscription mardi 22 avril 2008 Statut Membre Dernière intervention 12 octobre 2009 26
4 sept. 2009 à 16:16
MErci
0