This is the problem I am facing . Fortunately, the dhcpd problem is solved out :
1.While loading the workstation, it shows the server add as : 169.254.177.197 where as my server add in lts.conf is set as 192.168.0.254 and on issuing 'dhcpd' only i found that it's listening on eth0 .
2.Second , it shows TFTP Error 1 ( File Not found)
I guess this is because, it tries to load 169.254.177.197:/lts/vmlinu...
For clarification, I have penned down some files:
This is my dhcpd.conf file
# Sample configuration file for ISCD dhcpd # # Don't forget to set run_dhcpd=1 in /etc/init.d/dhcpd # once you adjusted this file and copied it to /etc/dhcpd.conf. #
ddns-update-style none; default-lease-time 21600; max-lease-time 21600;
option subnet-mask 255.255.255.0; option broadcast-address 192.168.0.255; option routers 192.168.0.254; option domain-name-servers 192.168.0.254; option domain-name "yourdomain.com"; option root-path "192.168.0.254:/opt/ltsp/i386";
option option-128 code 128 = string; option option-129 code 129 = text;
shared-network WORKSTATIONS {
subnet 192.168.0.0 netmask 255.255.255.0 {
}
}group {
use-host-decl-names on;
option log-servers 192.168.0.254; host ws001 {
hardware ethernet 00:C0:4F:10:21:2F;
fixed-address 192.168.0.1;
filename "/lts/vmlinuz-2.4.19-ltsp-1"; }
}This is my lts.conf file
#
# Config file for the Linux Terminal Server Project (www.ltsp.org)
#
[Default]
SERVER = 192.168.0.254
XSERVER = auto
X_MOUSE_PROTOCOL = "PS/2"
X_MOUSE_DEVICE = "/dev/psaux"
X_MOUSE_RESOLUTION = 400
X_MOUSE_BUTTONS = 3
USE_XFS = N
LOCAL_APPS = N
RUNLEVEL = 5#------------------------------------------------------------------------------
#
# Example of specifying X settings for a workstation
#
[ws001]
XSERVER = auto
LOCAL_APPS = N
USE_NFS_SWAP = N
SWAPFILE_SIZE = 48m
RUNLEVEL = 5This is my tftp file and after doing the changes I re started the service:
service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
#server_args = -s /var/lib/tftpboot
server_args = -s /tftpboot
per_source = 11
cps = 100 2
flags = IPv4
}
Also when i do ifconfig , the output is as such, where I am wrong.
eth0 Link encap:Ethernet HWaddr 00:C0:4F:0C:DC:7B
inet addr:192.168.0.254 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Interrupt:5 Base address:0xec80
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:273 errors:0 dropped:0 overruns:0 frame:0
TX packets:273 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:20321 (19.8 Kb) TX bytes:20321 (19.8 Kb)
There is one more thing I would like to add is that at the first stage when typed ifconfig i got one more interface eth0:9 which then showed the server address as 169.254.177.197
___________________________________________________
Download the hottest & happening ringtones here!
OR SMS: Top tone to 7333
Click here now: http://sms.rediff.com/cgi-bin/ringtone/ringhome.pl
------------------------------------------------------- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on a single machine. WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the same time. Free trial click here: http://www.vmware.com/wl/offer/345/0 _____________________________________________________________________ Ltsp-discuss mailing list. To un-subscribe, or change prefs, goto: https://lists.sourceforge.net/lists/listinfo/ltsp-discuss For additional LTSP help, try #ltsp channel on irc.freenode.net
