<?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: tcp question in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375155#M347797</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Use 'ndd' :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/B3921-60631/ndd.1M.html" target="_blank"&gt;http://www.docs.hp.com/en/B3921-60631/ndd.1M.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF..,</description>
    <pubDate>Mon, 09 Mar 2009 20:47:03 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2009-03-09T20:47:03Z</dc:date>
    <item>
      <title>tcp question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375154#M347796</link>
      <description>how doi change tcp/ip parameter on hpux.11.23&lt;BR /&gt;server io.&lt;BR /&gt;thanks</description>
      <pubDate>Mon, 09 Mar 2009 20:09:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375154#M347796</guid>
      <dc:creator>navin</dc:creator>
      <dc:date>2009-03-09T20:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: tcp question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375155#M347797</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Use 'ndd' :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/B3921-60631/ndd.1M.html" target="_blank"&gt;http://www.docs.hp.com/en/B3921-60631/ndd.1M.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF..,</description>
      <pubDate>Mon, 09 Mar 2009 20:47:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375155#M347797</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-03-09T20:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: tcp question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375156#M347798</link>
      <description>For example:&lt;BR /&gt;&lt;BR /&gt;To modify ndd parameters&lt;BR /&gt;1. Use command&lt;BR /&gt;# ndd -set /dev/tcp tcp_time_wait_interval 60000&lt;BR /&gt;#ndd -set /dev/tcp keep_alive_interval 3600000 ===&amp;gt; Setting&lt;BR /&gt;#ndd -get /dev/tcp tcp_time_wait_interval&lt;BR /&gt;#ndd -get /dev/tcp keep_alive_interval ===&amp;gt; Confirm&lt;BR /&gt;&lt;BR /&gt;2. Use file edit to have this chances permanent across reboots&lt;BR /&gt;&lt;BR /&gt;# vi /etc/rc.config.d/nddconf&lt;BR /&gt;TRANSPORT_NAME[0]=tcp&lt;BR /&gt;NDD_NAME[0]=tcp_time_wait_interval&lt;BR /&gt;NDD_VALUE[0]=60000&lt;BR /&gt;&lt;BR /&gt;TRANSPORT_NAME[1]=tcp&lt;BR /&gt;NDD_NAME[1]=keep_alive_interval&lt;BR /&gt;NDD_VALUE[1]=3600000&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2009 04:08:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375156#M347798</guid>
      <dc:creator>Avinash20</dc:creator>
      <dc:date>2009-03-10T04:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: tcp question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375157#M347799</link>
      <description>SUPPORTED ndd tunable parameters on HP-UX:&lt;BR /&gt;&amp;gt;ndd -h supported&lt;BR /&gt;&lt;BR /&gt;UNSUPPORTED :&lt;BR /&gt;&amp;gt;ndd -h unsupported&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Also "I have assigned points to   472  of   1138  responses to  my questions."&lt;BR /&gt;&lt;BR /&gt;Please assign points to your thread.&lt;BR /&gt;This is a way of saying thanks to your answers and also to get better response.</description>
      <pubDate>Tue, 10 Mar 2009 04:11:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375157#M347799</guid>
      <dc:creator>Avinash20</dc:creator>
      <dc:date>2009-03-10T04:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: tcp question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375158#M347800</link>
      <description>Thanks for Bill.&lt;BR /&gt;You could use the following script to get the ndd values.&lt;BR /&gt;&lt;BR /&gt;for TUNE in $(ndd -h | awk '{print $1}'|grep -e upd_ -e ip_ -e raw_ -e arp_ -e tcp_ )&lt;BR /&gt;do&lt;BR /&gt;echo&lt;BR /&gt;echo "$(tput bold)$TUNE"&lt;BR /&gt;DEV=$(echo $TUNE | cut -f 1 -d_)&lt;BR /&gt;eval "ndd -get /dev/$DEV $TUNE"&lt;BR /&gt;done</description>
      <pubDate>Tue, 10 Mar 2009 04:13:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tcp-question/m-p/4375158#M347800</guid>
      <dc:creator>Avinash20</dc:creator>
      <dc:date>2009-03-10T04:13:11Z</dc:date>
    </item>
  </channel>
</rss>

