Configuration ltsp sous ubnutu pour amd64

bekkaami Messages postés 2 Date d'inscription   Statut Membre Dernière intervention   -  
meehdi8 Messages postés 150 Date d'inscription   Statut Membre Dernière intervention   -
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

GemsBond
 
alors?
ton problème?
0
bekkaami Messages postés 2 Date d'inscription   Statut Membre Dernière intervention  
 
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   Statut Membre Dernière intervention   26
 
meme probleme
0
meehdi8 Messages postés 150 Date d'inscription   Statut Membre Dernière intervention   26
 
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   Statut Membre Dernière intervention   26
 
MErci
0