Hi all,
Trying to use snmp to monitor cehckpoint vpn tunnel status. With respect to this, the checkpoint MIB, has two mib objects
tunnelState OBJECT-TYPE
SYNTAX INTEGER {
active(3),
destroy(4),
idle(129),
phase1(130),
down(131),
init(132)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "No description available"
::= { tunnelEntry 3 }
and
tunnelProbState OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
alive(1),
dead(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "No description available"
::= { tunnelEntry 9 }
My doubt /question is
Is the tunnelProbeState valid only for "Permanent" tunnels and is not relevant / set for "regular " tunnels ?
Thanks in advance for your responses.