ā08-12-2019 02:29 AM
ā04-22-2021 09:35 PM
I have found the OID that served my switches to be
- 1.3.6.1.4.1.45.1.6.3.8.1.1.13 # s5ChasUtilMemoryAvailable "This object returns free RAM of unit in megabytes "
- 1.3.6.1.4.1.45.1.6.3.8.1.1.12 # s5ChasUtilMemoryTotalMB "This object returns the total RAM of unit in megabytes "
Using the above 2 for example got me the used memory
and for cpu i used 1.3.6.1.4.1.45.1.6.3.8.1.1.5 # s5ChasUtilCPUUsageLast1Minute " percentage of CPU used in last 1 min"
ā04-23-2021 03:18 PM
first you have to pull the MIB files we deliver for each switch type and release. If you take a proper MIB browser. They allow to search so far the MIB files are successfully compiled to find thinks. Sometime it work using the EDM and put the browser in to debug mode (FF = CTLR-SHIFT-K) and use the inspector like this
ā04-22-2021 09:35 PM
I have found the OID that served my switches to be
- 1.3.6.1.4.1.45.1.6.3.8.1.1.13 # s5ChasUtilMemoryAvailable "This object returns free RAM of unit in megabytes "
- 1.3.6.1.4.1.45.1.6.3.8.1.1.12 # s5ChasUtilMemoryTotalMB "This object returns the total RAM of unit in megabytes "
Using the above 2 for example got me the used memory
and for cpu i used 1.3.6.1.4.1.45.1.6.3.8.1.1.5 # s5ChasUtilCPUUsageLast1Minute " percentage of CPU used in last 1 min"
ā04-22-2021 03:37 PM
if you have a LINUS host you can use the NET-SNMP module. You may have to installed like this
apt install snmp (Ubuntu / Debian)
yum install net-snmp (RHEL 7 / CentOS 7)
dnf install net-snmp (RHEL 8 / CentOS š
snmpwalk -v 2 -c public 1.2.3.4 iso.3.6.1.4.1.2272.1.85.10.1.1.2
snmpwalk -v 3 -u admin -l authNoPriv -a SHA -A <password> 1.2.3.4 iso.3.6.1.4.1.2272.1.85.10.1.1.2
ā04-20-2021 08:36 PM
Thanks Stephan so much, however I donāt have XMC, is there another way to navigate the OIDs I need? I had no problem downloading the mibs. but wanted to explore what OIDs I can use for collecting more data.