- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- LAN port utilisation
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
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
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
09-26-2011 09:48 PM
09-26-2011 09:48 PM
Hello,
Does anyone know how to determine the % utilisation of a LAN port on a HP-UX server?
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2011 04:45 AM
09-27-2011 04:45 AM
Re: LAN port utilisation
try glance if you have it.
if you have access to the switch it might help?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2011 07:10 AM
09-27-2011 07:10 AM
SolutionIn very general terms:
Get the values of the traffic counters of the port (using "lanadmin -g <port number>" or SNMP), wait a certain time, then get the traffic counter values again. Subtract the start values from the end values, and divide the result by (port speed * time waited). Then multiply by 100 to get a percentage value of the average utilization over the time period. Repeat.
Any program that can draw network traffic graphs using data available over SNMP can probably produce a utilization graph with a calculation like this too. For example, Cacti is a free solution that can do exactly this.
If the port is in half-duplex mode, you can add transmit + receive values together to get overall utilization. If the port is in full-duplex mode, the transmit and receive are effectively independent channels, so you might draw useful conclusions from calculating the transmit and receive utilizations separately.
An utilization value is only meaningful over a period of time: instantaneous utilization values would be either 0% (= not transferring data right now) or 100% (= transferring data at the speed dictated by the network technology used).
- Tags:
- lanadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2011 11:01 PM
09-27-2011 11:01 PM
Re: LAN port utilisation
Thanks for the replies. It confirms that there's no simple method, but your info is good to know.