SG6100 Temp monitoring
-
Does the 6100 have any SNMP oids that I can target for Tempture monitoring? There are thresholds I want to set and alerting to take place if reached.
-
@michmoor I can't speak to bsnmp, but you can certainly get the information with net-snmp by using Extends.
In the Extended Commands section of Package / NET-SNMP / Host Information, add a custom Extended Command with Name
temperatures
and a Program containing a script like this:#!/bin/sh /sbin/sysctl dev.cpu | /usr/bin/awk '/temperature/ {print $2;}' | sed 's/[CF]//g'
With that in place, you can access the temperatures as:
NET-SNMP-EXTEND-MIB::nsExtendOutLine."temperatures".1 NET-SNMP-EXTEND-MIB::nsExtendOutLine."temperatures".2 NET-SNMP-EXTEND-MIB::nsExtendOutLine."temperatures".3 NET-SNMP-EXTEND-MIB::nsExtendOutLine."temperatures".4
Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.