<?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: How to setup  timeout parameter  for a ftp session ? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572826#M228441</link>
    <description>Thanks for the replies.   But what to set for unlimited timeout session.</description>
    <pubDate>Wed, 29 Jun 2005 04:03:37 GMT</pubDate>
    <dc:creator>Deepu Chakravarty</dc:creator>
    <dc:date>2005-06-29T04:03:37Z</dc:date>
    <item>
      <title>How to setup  timeout parameter  for a ftp session ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572821#M228436</link>
      <description>I need to setup timeout parameter for a ftp session.  So that it does not timedout for that period or unlimited connectivity time.</description>
      <pubDate>Wed, 29 Jun 2005 02:35:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572821#M228436</guid>
      <dc:creator>Deepu Chakravarty</dc:creator>
      <dc:date>2005-06-29T02:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup  timeout parameter  for a ftp session ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572822#M228437</link>
      <description>Hm, is it a single client's session that you want to timeout?&lt;BR /&gt; &lt;BR /&gt;Otherwise I'd suggest to have a look at man ftpd.&lt;BR /&gt; &lt;BR /&gt;On start of the FTP server you can pass the daemon a timout through -t &lt;BR /&gt;(if unset it defaults to 15 mins.)&lt;BR /&gt;Since ftpd is usually spawned through inetd you would have to add an apropiate argument in /etc/inetd.conf and send inetd a SIGHUP,&lt;BR /&gt;or execute /sbin/inetd -c&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Jun 2005 02:58:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572822#M228437</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2005-06-29T02:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup  timeout parameter  for a ftp session ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572823#M228438</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;to change the default 15 minutes timeout, edit the system-wide /etc/inetd.conf resource file to start the ftpd with the -t 600 (for 600 seconds) option: &lt;BR /&gt;&lt;BR /&gt;FROM: &lt;BR /&gt;&lt;BR /&gt;    ftp        stream tcp nowait root /usr/lbin/ftpd      ftpd -l&lt;BR /&gt;&lt;BR /&gt;TO:&lt;BR /&gt;&lt;BR /&gt;    ftp        stream tcp nowait root /usr/lbin/ftpd ftpd -l -t 600&lt;BR /&gt;&lt;BR /&gt;to use this new value, restart Internet services daemon:&lt;BR /&gt;&lt;BR /&gt;# /sbin/init.d/inetd -c&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards. &lt;BR /&gt;</description>
      <pubDate>Wed, 29 Jun 2005 03:04:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572823#M228438</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-06-29T03:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup  timeout parameter  for a ftp session ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572824#M228439</link>
      <description>Hi deepu&lt;BR /&gt;&lt;BR /&gt;Option 1:&lt;BR /&gt;&lt;BR /&gt;Instead of adjusting timeout variables, just enter  hash at the ftp&lt;BR /&gt;prompt.&lt;BR /&gt;ftp&amp;gt; hash&lt;BR /&gt;then get your file&lt;BR /&gt;ftp&amp;gt; get &lt;FILENAME&gt;&lt;BR /&gt;&lt;BR /&gt;the hash # will keep the ftp session alive as a # is transmitted every 10k of data transfer...&lt;BR /&gt;and this is a client side solution and will work any where for any user...&lt;BR /&gt;&lt;BR /&gt;Option 2:&lt;BR /&gt;&lt;BR /&gt;If variable need to be tuned then tune using nettune -s, tcp_keepfreq and tcp_keepstop values... as u hav not mentioned the OS version , iam putting the command syntax ...&lt;BR /&gt;&lt;BR /&gt;For 10.x&lt;BR /&gt;nettune -s tcp_keepfreq 1000&lt;BR /&gt;nettune -s tcp_keepstop 1000&lt;BR /&gt;for 11.0&lt;BR /&gt;ndd -set tcp_keepfreq&lt;BR /&gt;Use the netune -h command to print to standard output all variables that&lt;BR /&gt;are defined by nettune on your system.&lt;BR /&gt;&lt;BR /&gt;So to academically incorporate the set_fin_time script to execute at boot-up,&lt;BR /&gt;you should create a compliant HP-UX 10.X start-up script.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Vinod K&lt;/FILENAME&gt;</description>
      <pubDate>Wed, 29 Jun 2005 03:05:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572824#M228439</guid>
      <dc:creator>vinod_25</dc:creator>
      <dc:date>2005-06-29T03:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup  timeout parameter  for a ftp session ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572825#M228440</link>
      <description>Sorry a few flaws.&lt;BR /&gt; &lt;BR /&gt;1st the correct path is&lt;BR /&gt; &lt;BR /&gt;/usr/sbin/inetd&lt;BR /&gt; &lt;BR /&gt;2nd rather set -T of ftpd&lt;BR /&gt; &lt;BR /&gt;and set an "idle" timer in your FTP client.</description>
      <pubDate>Wed, 29 Jun 2005 03:07:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572825#M228440</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2005-06-29T03:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup  timeout parameter  for a ftp session ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572826#M228441</link>
      <description>Thanks for the replies.   But what to set for unlimited timeout session.</description>
      <pubDate>Wed, 29 Jun 2005 04:03:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572826#M228441</guid>
      <dc:creator>Deepu Chakravarty</dc:creator>
      <dc:date>2005-06-29T04:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup  timeout parameter  for a ftp session ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572827#M228442</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;if u mean disabling the timeout, set the -t option to 0 (numerical zero).&lt;BR /&gt;&lt;BR /&gt;regards.&lt;BR /&gt;(p.s. please remember to assign points.)</description>
      <pubDate>Wed, 29 Jun 2005 04:22:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572827#M228442</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-06-29T04:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup  timeout parameter  for a ftp session ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572828#M228443</link>
      <description>hi deepu,&lt;BR /&gt;&lt;BR /&gt;if you do man ftpd, you will get the whole syntax details&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt; -t timeout     Causes ftpd to timeout inactive sessions after timeout seconds.  By default, ftpd terminates an inactive session after 15 minutes.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Wed, 29 Jun 2005 05:47:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-setup-timeout-parameter-for-a-ftp-session/m-p/3572828#M228443</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-06-29T05:47:55Z</dc:date>
    </item>
  </channel>
</rss>

