04-24-2025 12:38 AM
Hey
So i have a monitoring tool and i want to check for Temp / memory / CPU
But i seem not to get the querys to work.
seems my SNMP is working, i can get the rcSysVersion OID .1.3.6.1.4.1.2272.1.1.7 to work ex.
but when i try to get Temp rcChasFanAmbientTemperature OID .1.3.6.1.4.1.2272.1.4.7.1.1.3 i just get a time out.
I should be root when asking the SNMP querys.
tyring with the RAPID-CITY.mib
Solved! Go to Solution.
04-24-2025 05:42 AM
Hi @NikAll
Personally, I use these OIDs for VOSS/FabricEngine devices:
'.1.3.6.1.4.1.2272.1.63.1.10' => { 'OID' => 'rcIsisHostName' } # String
'.1.3.6.1.4.1.2272.1.63.10.1.3' => { 'OID' => 'rcIsisAdjHostName' } # Table
'.1.3.6.1.4.1.2272.1.85.10.1.1.2' => { 'OID' => 'rcKhiSlotCpuCurrentUtil' } # %CPU
'.1.3.6.1.4.1.2272.1.85.10.1.1.8' => { 'OID' => 'rcKhiSlotMemUtil' } # %MEM
'.1.3.6.1.4.1.2272.1.212.1' => { 'OID' => 'rcSingleCpSystemCpuTemperature' } # Celsius
'.1.3.6.1.4.1.2272.1.4.8.1.1.2' => { 'OID' => 'rcChasPowerSupplyOperStatus' } # unknown(1) - status can not be determined. - empty(2) - power supply not installed. - up(3) - present and supplying power. - down(4) - present, but failure indicated.
'.1.3.6.1.4.1.2272.1.101.1.1.4.1.4' => { 'OID' => 'rcVossSystemFanInfoOperSpeed' } # unknown(1) - status can not be determined. - up(2) - present and supplying power. - down(3) - present, but failure indicated.
Regards.
Jave
04-24-2025 07:24 AM
According to these release notes 9035640-01_releasenotevoss_8.0.5_rn.pdf those MIBs you were trying to use were deprecated back in VOSS 7.x+
So yes, there are likely other MIB trees available to poll the similar data.
04-24-2025 07:24 AM
According to these release notes 9035640-01_releasenotevoss_8.0.5_rn.pdf those MIBs you were trying to use were deprecated back in VOSS 7.x+
So yes, there are likely other MIB trees available to poll the similar data.
04-24-2025 11:37 PM
Just downloaded the MIB pack from Extremes Downloads!
Anyway seems to be a issue with the Monotoring tool (Opmanager)
as i got another (SnmpB) and then i could find alot of of OIDs! (the ones from Javes work)
04-24-2025 05:42 AM
Hi @NikAll
Personally, I use these OIDs for VOSS/FabricEngine devices:
'.1.3.6.1.4.1.2272.1.63.1.10' => { 'OID' => 'rcIsisHostName' } # String
'.1.3.6.1.4.1.2272.1.63.10.1.3' => { 'OID' => 'rcIsisAdjHostName' } # Table
'.1.3.6.1.4.1.2272.1.85.10.1.1.2' => { 'OID' => 'rcKhiSlotCpuCurrentUtil' } # %CPU
'.1.3.6.1.4.1.2272.1.85.10.1.1.8' => { 'OID' => 'rcKhiSlotMemUtil' } # %MEM
'.1.3.6.1.4.1.2272.1.212.1' => { 'OID' => 'rcSingleCpSystemCpuTemperature' } # Celsius
'.1.3.6.1.4.1.2272.1.4.8.1.1.2' => { 'OID' => 'rcChasPowerSupplyOperStatus' } # unknown(1) - status can not be determined. - empty(2) - power supply not installed. - up(3) - present and supplying power. - down(4) - present, but failure indicated.
'.1.3.6.1.4.1.2272.1.101.1.1.4.1.4' => { 'OID' => 'rcVossSystemFanInfoOperSpeed' } # unknown(1) - status can not be determined. - up(2) - present and supplying power. - down(3) - present, but failure indicated.
Regards.
Jave
04-24-2025 11:40 PM
Seems it was the tool that was the issue, tried the ones you recommended and they work good.