Hi guys,
I make one LTSP virtual server on a Ubuntu 12.04 machine, an share the folder /opt/ltsp on this machine as "remote" with samba.
Because my DHCP is on a FreeBSD 8.0 Release, I create a mount point on it as /ltsp pointing to the "remote" share on the Ubuntu box.
I add this on the FreeBSD box dhcpd.conf:
My intend is that FreeBSD deploy the ip for the thinclient estation with my configuration all ready working but if they are booting from PXE it deploy the Ubuntu image located at /ltsp/i386/pxelinux.0.
When I was trying this, the thinclient boots from LAN an start to loading tftp...
After some time it says:
and do not load the image.
What am I doing is right? There is another way to keep my dhcp on FreeBSD and deploy the images from Ubuntu?
Thank you all!
I make one LTSP virtual server on a Ubuntu 12.04 machine, an share the folder /opt/ltsp on this machine as "remote" with samba.
Because my DHCP is on a FreeBSD 8.0 Release, I create a mount point on it as /ltsp pointing to the "remote" share on the Ubuntu box.
I add this on the FreeBSD box dhcpd.conf:
Code:
option root-path "/ltsp/i386";
if substring( option vendor-class-identifier, 0, 9 ) = "PXECliente" {
filename "/ltsp/i386/pxelinux.0";
} else {
filename "/ltsp/i386/nbi.img";
}
My intend is that FreeBSD deploy the ip for the thinclient estation with my configuration all ready working but if they are booting from PXE it deploy the Ubuntu image located at /ltsp/i386/pxelinux.0.
When I was trying this, the thinclient boots from LAN an start to loading tftp...
After some time it says:
Code:
"tftp timeout"
What am I doing is right? There is another way to keep my dhcp on FreeBSD and deploy the images from Ubuntu?
Thank you all!