<?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: Network memory utilization in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998461#M576177</link>
    <description>Looks like sar -b reports buffer cache statistics, not memory stats for networking. Also, the ndd settings mentioned are per-socket _limits_ not actual allocations.&lt;BR /&gt;&lt;BR /&gt;Under HP-UX memory isn't "reserved" for networking - that is there is no separate tunable limit to the quantity of memory used by networking.  It "competes" for memory from the global pool(s) just like anything else.&lt;BR /&gt;&lt;BR /&gt;I do not think there is one command that tells how much memory is allocated to "networking." You might get a guess from looking at the bytes queued to sockets data in the output of netstat -an.  Of course, that is a quite _lower_ bound - it is just a count of data bytes, not overhead bytes.  You could also guestimate some quantity of memory per TCP/UDP/etc endpoint - not sure what the quantity to use would be though.&lt;BR /&gt;&lt;BR /&gt;There will be buffers allocated and posted to NICs for inbound DMA, but the lanadmin stats do not show how many buffers are queued for inbound.  They will show the quue length for outbound buffers.  Counting those _could_ be a double count as they will be reflected in the send queue stats from netstat -an for TCP. However, they will not be a double count for UDP since UDP does not store anything in the send socket buffer.&lt;BR /&gt;&lt;BR /&gt;Is there anything in particular that makes you think you have a problem with memory usage by networking?</description>
    <pubDate>Tue, 17 Jun 2003 16:52:40 GMT</pubDate>
    <dc:creator>rick jones</dc:creator>
    <dc:date>2003-06-17T16:52:40Z</dc:date>
    <item>
      <title>Network memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998458#M576174</link>
      <description>Hi Guys! Is there any command to verufy how much memory the system is reserving  for network buffer and how much of that is been used at the moment?&lt;BR /&gt;&lt;BR /&gt;thanks</description>
      <pubDate>Mon, 16 Jun 2003 13:42:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998458#M576174</guid>
      <dc:creator>LucianoCarvalho</dc:creator>
      <dc:date>2003-06-16T13:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Network memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998459#M576175</link>
      <description>I'd start here.&lt;BR /&gt;&lt;BR /&gt; sar -b 1 10800 &amp;gt; /tmp/HP_perf_info.buffer&lt;BR /&gt;&lt;BR /&gt;I'm attaching a script that might give you other ideas.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 16 Jun 2003 13:59:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998459#M576175</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-06-16T13:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Network memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998460#M576176</link>
      <description>You can check ndd command. (man ndd)&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;ndd -h sup | grep buf&lt;BR /&gt;    tcp_recv_hiwater_max      - Upper bound on TCP receive buffer size&lt;BR /&gt;    tcp_xmit_hiwater_max      - Upper bound on TCP send buffer size&lt;BR /&gt;    udp_recv_hiwater_max      - Upper bound on UDP receive buffer size&lt;BR /&gt;    rawip_recv_hiwater_max    - The maximum size of the RAWIP receive buffer&lt;BR /&gt;    socket_buf_max             - Sets maximum socket buffer size for AF_UNIX&lt;BR /&gt;    socket_udp_rcvbuf_default  - Sets the default receive buffer size for&lt;BR /&gt;    socket_udp_sndbuf_default  - Sets the default send buffer size for&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Jun 2003 14:07:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998460#M576176</guid>
      <dc:creator>Norbert  Németh</dc:creator>
      <dc:date>2003-06-16T14:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Network memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998461#M576177</link>
      <description>Looks like sar -b reports buffer cache statistics, not memory stats for networking. Also, the ndd settings mentioned are per-socket _limits_ not actual allocations.&lt;BR /&gt;&lt;BR /&gt;Under HP-UX memory isn't "reserved" for networking - that is there is no separate tunable limit to the quantity of memory used by networking.  It "competes" for memory from the global pool(s) just like anything else.&lt;BR /&gt;&lt;BR /&gt;I do not think there is one command that tells how much memory is allocated to "networking." You might get a guess from looking at the bytes queued to sockets data in the output of netstat -an.  Of course, that is a quite _lower_ bound - it is just a count of data bytes, not overhead bytes.  You could also guestimate some quantity of memory per TCP/UDP/etc endpoint - not sure what the quantity to use would be though.&lt;BR /&gt;&lt;BR /&gt;There will be buffers allocated and posted to NICs for inbound DMA, but the lanadmin stats do not show how many buffers are queued for inbound.  They will show the quue length for outbound buffers.  Counting those _could_ be a double count as they will be reflected in the send queue stats from netstat -an for TCP. However, they will not be a double count for UDP since UDP does not store anything in the send socket buffer.&lt;BR /&gt;&lt;BR /&gt;Is there anything in particular that makes you think you have a problem with memory usage by networking?</description>
      <pubDate>Tue, 17 Jun 2003 16:52:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998461#M576177</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2003-06-17T16:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Network memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998462#M576178</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;Use this will show you info about: ndd -h sup&lt;BR /&gt;Check in man you will find more options.&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
      <pubDate>Tue, 17 Jun 2003 16:59:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998462#M576178</guid>
      <dc:creator>Caesar_3</dc:creator>
      <dc:date>2003-06-17T16:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Network memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998463#M576179</link>
      <description>It's just to monitor that utilization in my system and if there were a limit make sure that the system is not running at it. &lt;BR /&gt;So, if I understand correctly, HP-UX will use how much memory it need for network memory buffer as soon as there is memory available? Is that correct? And if it is correct I should be concerned with the memory available for the system as a whole and not try to find out the utilization of memory for network buffer I think.</description>
      <pubDate>Tue, 17 Jun 2003 17:04:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998463#M576179</guid>
      <dc:creator>LucianoCarvalho</dc:creator>
      <dc:date>2003-06-17T17:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Network memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998464#M576180</link>
      <description>indeed, if you just want to monitor, then you can know that networking may be running out of memory if the system runs out of memory - it will not run-out before that point. fwiw, networking has been that way since HP-UX 8.0 :)</description>
      <pubDate>Tue, 17 Jun 2003 17:06:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-memory-utilization/m-p/2998464#M576180</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2003-06-17T17:06:07Z</dc:date>
    </item>
  </channel>
</rss>

