<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: problem with TFTP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/6966703#M528477</link>
    <description>&lt;P&gt;Ron,&lt;/P&gt;&lt;P&gt;Thanks for the post. The details here helped solve it.&lt;/P&gt;&lt;P&gt;In addition to this, I actually had to kill the tftpd. Although I created the user as active with guest /bin/false etc.. running inetd -c did not fully update the running config. After killing the process and restarting it with extended logging enabled (just in case it wasn't resolved yet), our syslog is finally free of that message. The poor tftpd just needed a home and now is at rest.&lt;/P&gt;</description>
    <pubDate>Thu, 01 Jun 2017 16:46:28 GMT</pubDate>
    <dc:creator>bgwest</dc:creator>
    <dc:date>2017-06-01T16:46:28Z</dc:date>
    <item>
      <title>problem with TFTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669913#M528470</link>
      <description>Hi all&lt;BR /&gt;&lt;BR /&gt;I've a problem with TFTP&lt;BR /&gt;&lt;BR /&gt;In the /etc/inetd.conf:&lt;BR /&gt;&lt;BR /&gt;tftp         dgram  udp wait   root /usr/lbin/tftpd    tftpd /home/tftpdir&lt;BR /&gt;&lt;BR /&gt;In the /etc/passwd:&lt;BR /&gt;&lt;BR /&gt;tftp:*:510:510:tftp server:/home/tftpdir:/usr/bin/false&lt;BR /&gt;&lt;BR /&gt;I execute /usr/sbin/inetd -c     &lt;BR /&gt;&lt;BR /&gt;but when i try get a file i get "Transfer timed out."&lt;BR /&gt;&lt;BR /&gt;In the syslog.log appear:&lt;BR /&gt;&lt;BR /&gt;eb 22 10:55:39 grecods tftpd[14981]: No security mechanism exists; see tftpd(1M)&lt;BR /&gt;Feb 22 10:55:44 grecods tftpd[14984]: No security mechanism exists; see tftpd(1M)&lt;BR /&gt;Feb 22 10:55:49 grecods tftpd[14989]: No security mechanism exists; see tftpd(1M)&lt;BR /&gt;Feb 22 10:55:54 grecods tftpd[14992]: No security mechanism exists; see tftpd(1M)&lt;BR /&gt;Feb 22 10:55:59 grecods tftpd[14994]: No security mechanism exists; see tftpd(1M)&lt;BR /&gt;&lt;BR /&gt;Where is the mistake?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.</description>
      <pubDate>Fri, 22 Feb 2002 10:05:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669913#M528470</guid>
      <dc:creator>Jose Juan</dc:creator>
      <dc:date>2002-02-22T10:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: problem with TFTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669914#M528471</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;1: the group membership should be guest.&lt;BR /&gt;2: Retransmission is defauld 5 secs and timeout is defaulted to 25 secs. If you have a bad connection you can alter these parameters with -R -T specifications (man tftpd)&lt;BR /&gt;&lt;BR /&gt;Hope this will help,&lt;BR /&gt;&lt;BR /&gt;Gideon</description>
      <pubDate>Fri, 22 Feb 2002 10:18:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669914#M528471</guid>
      <dc:creator>G. Vrijhoeven</dc:creator>
      <dc:date>2002-02-22T10:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: problem with TFTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669915#M528472</link>
      <description>In the file /etc/group:&lt;BR /&gt;&lt;BR /&gt;guest::510:tftp&lt;BR /&gt;&lt;BR /&gt;and the connections are very good</description>
      <pubDate>Fri, 22 Feb 2002 10:33:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669915#M528472</guid>
      <dc:creator>Jose Juan</dc:creator>
      <dc:date>2002-02-22T10:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: problem with TFTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669916#M528473</link>
      <description>No security mechanism exists  &lt;BR /&gt;   The pseudo-user tftp was not found in the password database (/etc/passwd), and tftpd was invoked without any path arguments.&lt;BR /&gt;&lt;BR /&gt;Add or correct the entry for the pseudo-user tftp in the password database /etc/passwd. Or, add an access list (path arguments) to the tftpd arguments in the inetd configuration file /etc/inetd.conf. Reconfigure inetd with the command inetd -c. &lt;BR /&gt;&lt;BR /&gt;If no path is specified on the command line, tftpd requires an entry in the /etc/passwd database (see passwd(4) ) for an account (pseudo-user) named tftp. The password field should be *, the group membership should be guest, and the login shell should be /usr/bin/false. For example (assuming the guest group ID is 101): &lt;BR /&gt;&lt;BR /&gt;tftp:*:510:101:tftp server:/home/tftpdir:/usr/bin/false &lt;BR /&gt;&lt;BR /&gt;Also verify that the /home/tftp directory exists and is rw.&lt;BR /&gt;&lt;BR /&gt;Ron&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Feb 2002 14:19:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669916#M528473</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2002-02-22T14:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: problem with TFTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669917#M528474</link>
      <description>in this line:&lt;BR /&gt;&lt;BR /&gt;tftp dgram udp wait root /usr/lbin/tftpd tftpd /home/tftpdir &lt;BR /&gt;&lt;BR /&gt;take out the /home/tftpdir reference, it is redundant because you have the tftp user defined. &lt;BR /&gt;&lt;BR /&gt;then do the inetd -c thing to reread the config file.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;mark</description>
      <pubDate>Fri, 22 Feb 2002 15:07:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669917#M528474</guid>
      <dc:creator>Mark Greene_1</dc:creator>
      <dc:date>2002-02-22T15:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: problem with TFTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669918#M528475</link>
      <description>I'm having the same problem.  I've gone through the steps of {useradd tftp,groupadd guest,usermod -g guest ftp,passwd -r files -l tftp,mkdir /tftpboot,cp [a bunch of files] /tftpboot,chown -R tftp:guest /tftpboot,chmod 755 /tftpboot,chmod 644 /tftpboot/*,usermod -d /tftpboot tftp,echo /usr/bin/false&amp;gt;/etc/shells,chsh tftp /usr/bin/false}, which I believe should be everything required!  "grep ^tftp /etc/inetd.conf" returns&lt;BR /&gt;"tftp        dgram  udp wait   root /usr/lbin/tftpd    tftpd", also.  I get the same messages, however (yes, I have run inetd -c after all changes to inetd.conf)&lt;BR /&gt;&lt;BR /&gt;Does there need to be something special with the guest group?&lt;BR /&gt;&lt;BR /&gt;-os&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Nov 2003 22:56:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669918#M528475</guid>
      <dc:creator>Matthew Williams_3</dc:creator>
      <dc:date>2003-11-05T22:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: problem with TFTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669919#M528476</link>
      <description>Whoops!  I had assumed that, because each log entry recorded a different pid, that every connection loaded a new copy of tftpd from scratch.  It turns out that tftpd was still running and simply forking for each new connection; killing tftpd (and letting inetd restart it) fixed the problem.&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Nov 2003 22:59:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/2669919#M528476</guid>
      <dc:creator>Matthew Williams_3</dc:creator>
      <dc:date>2003-11-05T22:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: problem with TFTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/6966703#M528477</link>
      <description>&lt;P&gt;Ron,&lt;/P&gt;&lt;P&gt;Thanks for the post. The details here helped solve it.&lt;/P&gt;&lt;P&gt;In addition to this, I actually had to kill the tftpd. Although I created the user as active with guest /bin/false etc.. running inetd -c did not fully update the running config. After killing the process and restarting it with extended logging enabled (just in case it wasn't resolved yet), our syslog is finally free of that message. The poor tftpd just needed a home and now is at rest.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2017 16:46:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-with-tftp/m-p/6966703#M528477</guid>
      <dc:creator>bgwest</dc:creator>
      <dc:date>2017-06-01T16:46:28Z</dc:date>
    </item>
  </channel>
</rss>

