SNMP - sun.mib - OID - sunHostPerf
I'm trying to perform SNMP query for the specific OIDs as below,
rsUserProcessTime "1.3.6.1.4.1.42.3.13.1.0"
rsNiceModeTime "1.3.6.1.4.1.42.3.13.2.0"
rsSystemProcessTime "1.3.6.1.4.1.42.3.13.3.0"
rsIdleModeTime "1.3.6.1.4.1.42.3.13.4.0"
I able to perform snmpwalk for the mib-2 with value returned but i failed
to get a value return when i performed the SNMP query for the above OIDs
which are listed in /var/snmp/mib/sun.mib file
Below are the output of the snmpwalk result:
bash-2.05# snmpwalk -v 1 -c public localhost 1.3.6.1.4.1.42.3.13
iso.3.6.1.4.1.42.3.13.1.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.2.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.3.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.4.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.5.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.6.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.7.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.8.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.9.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.10.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.11.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.12.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.13.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.14.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.15.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.16.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.17.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.18.0 = Counter32: 0
End of MIB
I performed the same command in another SUN machine which is running
Solaris 8 and i able to get return value for the query as below:
bash-2.05# snmpwalk -v 1 -c public 10.125.7.100 1.3.6.1.4.1.42.3.13
iso.3.6.1.4.1.42.3.13.1.0 = Counter32: 1150395641
iso.3.6.1.4.1.42.3.13.2.0 = Counter32: 256435875
iso.3.6.1.4.1.42.3.13.3.0 = Counter32: 1660637656
iso.3.6.1.4.1.42.3.13.4.0 = Counter32: 3159917638
iso.3.6.1.4.1.42.3.13.5.0 = Counter32: 30
iso.3.6.1.4.1.42.3.13.6.0 = Counter32: 90
iso.3.6.1.4.1.42.3.13.7.0 = Counter32: 90
iso.3.6.1.4.1.42.3.13.8.0 = Counter32: 90
iso.3.6.1.4.1.42.3.13.9.0 = Counter32: 1210203
iso.3.6.1.4.1.42.3.13.10.0 = Counter32: 4293582
iso.3.6.1.4.1.42.3.13.11.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.12.0 = Counter32: 0
iso.3.6.1.4.1.42.3.13.13.0 = Counter32: 3688910
iso.3.6.1.4.1.42.3.13.14.0 = Counter32: 2186961185
iso.3.6.1.4.1.42.3.13.15.0 = Counter32: 2183223937
iso.3.6.1.4.1.42.3.13.16.0 = Counter32: 1
iso.3.6.1.4.1.42.3.13.17.0 = Counter32: 205281
iso.3.6.1.4.1.42.3.13.18.0 = Counter32: 267605
End of MIB
Thank You

