You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to lookup a table entry for CheckPoint VPN Tunnels (CHECKPOINT-MIB). These are apparently indexed by the peer IP address as can be seen in the MIB:
tunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF TunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing VPN tunnel information."
::= { tables 9002 }
tunnelEntry OBJECT-TYPE
SYNTAX TunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "No description available"
INDEX { tunnelPeerIpAddr }
::= { tunnelTable 1 }
TunnelEntry ::=
SEQUENCE {
tunnelPeerIpAddr
IpAddress,
tunnelPeerObjName
DisplayString,
tunnelState
INTEGER,
tunnelCommunity
DisplayString,
tunnelNextHop
IpAddress,
tunnelInterface
DisplayString,
tunnelSourceIpAddr
IpAddress,
tunnelLinkPriority
INTEGER,
tunnelProbState
INTEGER,
tunnelPeerType
INTEGER,
tunnelType
INTEGER
}
tunnelPeerIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "No description available"
::= { tunnelEntry 1 }
Hi!
I'm trying to lookup a table entry for CheckPoint VPN Tunnels (CHECKPOINT-MIB). These are apparently indexed by the peer IP address as can be seen in the MIB:
This is the module in my generator.yml:
The tunnelPeerObjName field in the resulting metric however remains empty:
An snmpwalk however returns data for this OID:
Is this an issue with the CHECKPOINT-MIB or is snmp_exporter mishandling the IpAddress indexed table lookups?
NOTE: All IPs have been changed to 127.0.0.1.
The text was updated successfully, but these errors were encountered: