- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Network memory utilization
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 06:42 AM
06-16-2003 06:42 AM
Network memory utilization
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 06:59 AM
06-16-2003 06:59 AM
Re: Network memory utilization
sar -b 1 10800 > /tmp/HP_perf_info.buffer
I'm attaching a script that might give you other ideas.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 07:07 AM
06-16-2003 07:07 AM
Re: Network memory utilization
e.g.
ndd -h sup | grep buf
tcp_recv_hiwater_max - Upper bound on TCP receive buffer size
tcp_xmit_hiwater_max - Upper bound on TCP send buffer size
udp_recv_hiwater_max - Upper bound on UDP receive buffer size
rawip_recv_hiwater_max - The maximum size of the RAWIP receive buffer
socket_buf_max - Sets maximum socket buffer size for AF_UNIX
socket_udp_rcvbuf_default - Sets the default receive buffer size for
socket_udp_sndbuf_default - Sets the default send buffer size for
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2003 09:52 AM
06-17-2003 09:52 AM
Re: Network memory utilization
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.
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.
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.
Is there anything in particular that makes you think you have a problem with memory usage by networking?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2003 09:59 AM
06-17-2003 09:59 AM
Re: Network memory utilization
Use this will show you info about: ndd -h sup
Check in man you will find more options.
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2003 10:04 AM
06-17-2003 10:04 AM
Re: Network memory utilization
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2003 10:06 AM
06-17-2003 10:06 AM