Displaying 1 result from an estimated 1 matches for "f_validate".
Did you mean:
_validated
2004 Mar 12
0
tftpd error message (File not found)
...tftpd[15218]: sending NAK (1, File not found) to
10.1.5.121
here my client has asked for a file, and tftpd has said that it does not exist
in its path (or cannot access it).
looking in the tftpd.c (from 0.36) i see that on line 779 this error can be
caused.
<snip>
ecode = (*pf->f_validate)(filename, tp_opcode, pf, &errmsgptr);
if (ecode) {
nak(ecode, errmsgptr);
exit(0);
}
<snip>
i run the tftpd server from xinetd as root, so it cannot be a permissions
problem (i believe ?).
(/etc/xinetd.d/tftp)
service tftp
{
socket_type = dgram...