I still get that "tftp access violation error"!

This is my /etc/dhcpd.conf:
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              "/tftpboot/lts/ltsroot";

    subnet 192.168.0.0 netmask 255.255.255.0 {
    range 192.168.0.1 192.168.0.100;
    }

group   {
    use-host-decl-names       on;
    option log-servers        192.168.0.254;

    host ws001 {
        hardware ethernet     00-01-02-96-DF-B7;
        fixed-address         192.168.0.1;
        filename              "/lts/vmlinuz.3c90x";
    }
    host ws002 {
        hardware ethernet     00:D0:09:30:6A:1C;
        fixed-address         192.168.0.2;
        filename              "/lts/vmlinuz.tulip";
    }
}

this is /etc/inetd.conf
tftp    dgram   udp     wait    root    /usr/sbin/tcpd  in.tftpd
# ftp      stream  tcp     nowait  root    /usr/sbin/tcpd  in.proftpd
# VMware authentification daemon
902 stream tcp nowait root /usr/sbin/vmware-authd vmware-authd

this is /etc/xinetd.d/tftp
service tftp
{
        socket_type             = dgram
        protocol                = udp
        wait                    = yes
        user                    = root
        server                  = /usr/sbin/in.tftpd
        server_args             = -s /tftpboot
        disable                 = no
}

Hope this help!

Asbjørn Morell




>Hi
>
>> I have installed LTSP 2.08 on my Redhat 7.1 by the book! Everything
looks 
>> good, and I have no errors in /var/log/messages. Tftp is running and 
>> working. I have succesfully testet my DHCP server! My client has a
3com 
>> 3c905c networkcard. I have set it to TCP/IP => DHCP in the "network
boot 
>> bios". When I try to boot the client I get a "tftp access violation 
>> error".... I have 0777 on tftpboot, lts, and vmlinuz.3c90x. I have
removed >the 
>> -s in /etc/inetd.conf, and I use the full path in my DHCP conf file.
>> I would be gratefull if you can help me! I am totally stuck! >
>
>You can't remove -s on this system. You must change the file path.
>The redhat tftpd is compiled such
>James

_____________________________________________________________________
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.openprojects.net

Reply via email to