Page 1 of 1
CPU,Memory on Network Device
Posted: Mon Mar 13, 2017 2:07 am
by tsabit
Hi Team Support,
how to show the detail of CPU,memory,fan,temperature,etc on Nagiso XI if the device are like Juiper,Cisco,F5 ?
please help me.
Re: CPU,Memory on Network Device
Posted: Mon Mar 13, 2017 1:11 pm
by mcapra
For the Cisco/Juniper devices, you would probably need to refer to their manuals to get the specific OID/MIB to run an snmp query against. Then, once you know that value, you could set it up as a check using check_snmp.
If you're not incredibly familiar with SNMP, you could share an snmpwalk against the device here and we could probably identify the relevant MIBs/OIDs.
Re: CPU,Memory on Network Device
Posted: Thu Mar 16, 2017 2:57 am
by tsabit
Hi Support,
I have tested oid with adding network device e.g Firewall juniper ssg 520 but still error with error message "No response ....."
i have tried ssh with ip address 161 is working
the oid is here
.1.3.6.1.4.1.3224.16.1.1.0 cpu
.1.3.6.1.4.1.3224.16.2.1.0 memory
please assist me.
Re: CPU,Memory on Network Device
Posted: Thu Mar 16, 2017 3:15 pm
by mcapra
Can you share the output of an snmpwalk from your Nagios XI machine against the respective branches? Like so replacing the arguments with ones appropriate for your device:
Code: Select all
snmpwalk -mALL -v<version> -c<community> <host> 1.3.6.1.4.1.3224.16.4.1
Some other branches I would like to see the output for:
Code: Select all
1.3.6.1.4.1.3224.16.1
1.3.6.1.4.1.3224.16.2
1.3.6.1.4.1.3224.16.3
Here's a sample output for one of the HOST-RESOURCES-MIB trees on one of my lab machines:
Code: Select all
[root@xi-stable ~]# snmpwalk -mALL -v2c -cwelcome2 192.168.67.105 1.3.6.1.2.1.25.2.3.1.3
HOST-RESOURCES-MIB::hrStorageDescr.1 = STRING: Physical memory
HOST-RESOURCES-MIB::hrStorageDescr.3 = STRING: Virtual memory
HOST-RESOURCES-MIB::hrStorageDescr.6 = STRING: Memory buffers
HOST-RESOURCES-MIB::hrStorageDescr.7 = STRING: Cached memory
HOST-RESOURCES-MIB::hrStorageDescr.8 = STRING: Shared memory
HOST-RESOURCES-MIB::hrStorageDescr.10 = STRING: Swap space
HOST-RESOURCES-MIB::hrStorageDescr.31 = STRING: /
HOST-RESOURCES-MIB::hrStorageDescr.36 = STRING: /dev/shm
HOST-RESOURCES-MIB::hrStorageDescr.38 = STRING: /run
HOST-RESOURCES-MIB::hrStorageDescr.39 = STRING: /sys/fs/cgroup
HOST-RESOURCES-MIB::hrStorageDescr.57 = STRING: /boot
Though yours will look very different.