Go to the directory /etc/xinetd.d<br>There all the services controlled by xinted reside. If tftp is being controlled by xinetd, then you will find a configuration file specific to it. As Frantisek said, disable=NO should be there if it is xinetd controlled. If not, then disable=YES<br>
<br>In other words, try to check netstat while you put xinetd or tftp on the side of grep. In my experience, I have seen that due to another service listening on the same port, the legit ftp service is not running.<br><br>
Since we are not getting the logs, it is kinda hard to guess. From the strace, it can&#39;t be guessed what is going on. But if the line you mentioned is the only line in strace, then probably something is going very awry. That line is the first line of output that always comes if you attach strace to a running process. Was the right hand value of the line a zero or something else?<br>
<br>Also, I am guessing this problem only appears during transfer of file. If you do a service check on tftp, what appears? Can you toggle the status of the service and try? Also, toggle the tftp status keeping xinetd on and off and find whether that makes any difference?<br>
<br>- Soham<br><br><br><div class="gmail_quote">On Sat, Oct 8, 2011 at 3:53 PM, Frantisek Hanzlik <span dir="ltr">&lt;<a href="mailto:franta@hanzlici.cz">franta@hanzlici.cz</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Aaron Gray wrote:<br>
..<br>
<div class="im">&gt;&gt; I guess, it is running as a xinetd controlled daemon, if so, is there anything else<br>
&gt; listening on the tftp port?<br>
&gt;<br>
&gt; How do I ascertain this ?<br>
<br>
</div>- &quot;netstat&quot; utility should be display xinetd daemon listening at udp<br>
port 69 :<br>
<br>
# netstat -a -n -p --ip|grep 69<br>
udp        0      0 <a href="http://0.0.0.0:69" target="_blank">0.0.0.0:69</a>                  0.0.0.0:*<br>
1595/xinetd<br>
<br>
- and You &quot;/etc/xinetd.d/tftp&quot; should be as (note &quot;disable = no&quot;):<br>
<br>
service tftp<br>
{<br>
        disable = no<br>
        socket_type             = dgram<br>
        protocol                = udp<br>
        wait                    = yes<br>
        user                    = root<br>
        server                  = /usr/sbin/in.tftpd<br>
        server_args             = -s /var/lib/tftpboot<br>
        per_source              = 11<br>
        cps                     = 100 2<br>
        flags                   = IPv4<br>
}<br>
<br>
- and xinetd daemon must be running; on F14 you can use command:<br>
service xinetd status<br>
and on F15 command:<br>
systemctl status xinetd.service<br>
<div><div></div><div class="h5">--<br>
users mailing list<br>
<a href="mailto:users@lists.fedoraproject.org">users@lists.fedoraproject.org</a><br>
To unsubscribe or change subscription options:<br>
<a href="https://admin.fedoraproject.org/mailman/listinfo/users" target="_blank">https://admin.fedoraproject.org/mailman/listinfo/users</a><br>
Guidelines: <a href="http://fedoraproject.org/wiki/Mailing_list_guidelines" target="_blank">http://fedoraproject.org/wiki/Mailing_list_guidelines</a><br>
</div></div></blockquote></div><br>