cancel
Showing results for 
Search instead for 
Did you mean: 

need oid for cpu and memory utilization for vsp 7k and 9k

need oid for cpu and memory utilization for vsp 7k and 9k

Dileep
New Contributor
I need oid for cpu and memory utilization for vsp 7k and 9k.
1 ACCEPTED SOLUTION

SaharYacout
New Contributor II

@Markus Nikulski Appreciate your response, however my issue was that I needed to know what OIDs to search for when I need to snmpwalk to know memory and cpu utilization and not how to do that. 

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" 

View solution in original post

21 REPLIES 21

Markus_Nikulski
Extreme Employee

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
 

5ce178c217ed46ada3d9824cfd625bcd_2270d231-df31-4dd7-8940-d9271bb70506.jpg

 

SaharYacout
New Contributor II

@Markus Nikulski Appreciate your response, however my issue was that I needed to know what OIDs to search for when I need to snmpwalk to know memory and cpu utilization and not how to do that. 

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" 

Markus_Nikulski
Extreme Employee

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

SaharYacout
New Contributor II

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.

GTM-P2G8KFN