- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- HPE Aruba Networking & ProVision-based
- >
- Re: Monitor Aruba JL679A 6100 CPU,MEM etc via SNMP
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
09-03-2021 03:10 AM - last edited on 09-03-2021 08:23 PM by support_s
09-03-2021 03:10 AM - last edited on 09-03-2021 08:23 PM by support_s
Hello,
We use switch Aruba JL679A 6100.
Switch is monitored by a monitoring tool
I need SNMP OID for CPU, MEM, TEMP etc.
Where can I find these SNMP values?
Thx
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2021 05:02 AM
09-03-2021 05:02 AM
Re: Monitor Aruba JL679A 6100 CPU,MEM etc via SNMP
Hello,
You can download the latest MIBs from this link.
Thw following document explains how to use the OID hrProcessorLoad from the HOST-RESOURCES-MIB.mib for CPU monitoring. The document mentions Aruba 8400 but this should be working for your switch as well.
THis document provides some examples on how the monitor the switch health via SNMP.
The examples for the ArubaOS-CX are using OIDs from the HOST-RESOURCES-MIB(.1.3.6.1.2.1.25), Entity Mib(1.3.6.1.2.1.47), ENTITY-STATE-MIB( 1.3.6.1.2.1.131), ENTITY-SENSOR-MIB(1.3.6.1.2.1.99)
You have to keep in mind that this documents may be a bit outdated because new SNMP capabilities are being added with every new version. For example for monitoring of Temperature, Fans and Power supplies, there are MIBs starting with ARUBAWIRED, like ARUBAWIRED-FAN, ARUBAWIRED-POWERSUPPLY, ARUBAWIRED-TEMPSENSOR which may be providing better options. So you should test and compare.
It is good to know that you can test different OIDs directly on the CLI of the switch in order to see if they are working and what information is returned. SNMP has to be enabled for this to work.
You have to enable diagnostics
6100# diagnostics
Then use the following command with the textual form of the OID
6100# diag utilities snmpwalk oid hrProcessorLoad
HOST-RESOURCES-MIB::hrProcessorLoad.196608 = INTEGER: 13
HOST-RESOURCES-MIB::hrProcessorLoad.196609 = INTEGER: 13
Or with the numeric form which seem to work better for me.
6100# diag utilities snmpwalk oid 1.3.6.1.2.1.25.3.3.1.2
HOST-RESOURCES-MIB::hrProcessorLoad.196608 = INTEGER: 13
HOST-RESOURCES-MIB::hrProcessorLoad.196609 = INTEGER: 13
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2021 06:30 AM