diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/cisco/CISCOSB-FINDIT | |
| download | mibs-main.tar.gz mibs-main.zip | |
Diffstat (limited to 'MIBS/cisco/CISCOSB-FINDIT')
| -rw-r--r-- | MIBS/cisco/CISCOSB-FINDIT | 197 |
1 files changed, 197 insertions, 0 deletions
diff --git a/MIBS/cisco/CISCOSB-FINDIT b/MIBS/cisco/CISCOSB-FINDIT new file mode 100644 index 0000000..b1bda15 --- /dev/null +++ b/MIBS/cisco/CISCOSB-FINDIT @@ -0,0 +1,197 @@ +CISCOSB-FINDIT DEFINITIONS ::= BEGIN + +IMPORTS + switch001 FROM CISCOSB-MIB + MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32,IpAddress FROM SNMPv2-SMI + RowStatus, TEXTUAL-CONVENTION, MacAddress, + DisplayString, TruthValue FROM SNMPv2-TC + SnmpAdminString FROM SNMP-FRAMEWORK-MIB + InetAddressType,InetAddress FROM INET-ADDRESS-MIB; + +rlFindit MODULE-IDENTITY + LAST-UPDATED "202105190000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + "Postal: 170 West Tasman Drive + San Jose , CA 95134-1706 + USA + + Website: Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>" + + DESCRIPTION + "The private MIB module definition for Findit Agent." + REVISION "202105190000Z" + DESCRIPTION + "Added this MODULE-IDENTITY clause." + ::= { switch001 235 } + +rlFinditState OBJECT-TYPE + SYNTAX INTEGER{enabled(1), disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value represents the admin state of the findit Probe feature." + DEFVAL{ 1 } + ::= { rlFindit 1 } + +rlFinditOperState OBJECT-TYPE + SYNTAX INTEGER{active(1), inactive(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value represents the operational state of the findit Probe feature." + DEFVAL{ 2 } + ::= { rlFindit 2 } + +--rlFinditTableEntry definition. +--currently supports one application. +--in case there is a need for additional applications, +--please add appropriate support for it. + +rlFinditTable OBJECT-TYPE + SYNTAX SEQUENCE OF RlFinditTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The (conceptual) table listing the Findit group Entry." + ::= {rlFindit 3} + +rlFinditTableEntry OBJECT-TYPE + SYNTAX RlFinditTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The (conceptual) table listing the Findit entry." + INDEX { rlApplication} + ::= { rlFinditTable 1 } + +RlFinditTableEntry::=SEQUENCE { + rlApplication INTEGER, + rlFinditOrganization DisplayString, + rlFinditNetwork DisplayString, + rlFinditInetAddress InetAddress, + rlFinditManagerPort INTEGER, + rlFinditManagerKeyId DisplayString, + rlFinditManagerSecret DisplayString, + rlFinditVersion DisplayString, + rlFinditManagerConnection INTEGER +} + +rlApplication OBJECT-TYPE + SYNTAX INTEGER (1) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry index for Findit application. + currently supports one application. + in case there is a need for additional applications, + please add appropriate support for it." + ::= { rlFinditTableEntry 1 } + + +rlFinditOrganization OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The Organization name of the FindIT Probe." + ::= { rlFinditTableEntry 2 } + +rlFinditNetwork OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The Network name of the FindIT Probe." + ::= { rlFinditTableEntry 3 } + + +rlFinditInetAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Inet address of the Findit manager (server) + referred to in this table entry." + ::= { rlFinditTableEntry 4 } + +rlFinditManagerPort OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Specifies the TCP port used to connect to Manager 1-65535" + ::= { rlFinditTableEntry 5 } + +rlFinditManagerKeyId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..24)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Key for initial authentication between the FindIT + Probe running on the device and the FindIT Manager." + ::= { rlFinditTableEntry 6 } + +rlFinditManagerSecret OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..160)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "encrypted-secret-string" + ::= { rlFinditTableEntry 7 } + + +rlFinditVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Findit current version." + ::= { rlFinditTableEntry 8 } + +rlFinditManagerConnection OBJECT-TYPE + SYNTAX INTEGER{enabled(1), disabled(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Findit Manager connection configuration state." + ::= { rlFinditTableEntry 9 } + + +rlFinditManagerReconnect OBJECT-TYPE + SYNTAX INTEGER{none(0), renew(1)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "reconnect to manager using the + configured key and secret for + authentication with the manager" + ::= {rlFindit 4} + +rlFinditManagerConnectionOpertional OBJECT-TYPE + SYNTAX INTEGER{enabled(1), disabled(2)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value represents the operational state of the findit Manager connection state." + DEFVAL{ 2 } + ::= { rlFindit 5 } + +rlFinditProbeErrorReportAction OBJECT-TYPE + SYNTAX INTEGER { + nothing(0), + disableAndSyslog(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Action MIB based on FindIT Probe agent error detected." + ::= { rlFindit 6 } + +rlFinditProbeMemoryClear OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Action MIB to trigger FindIT Probe agent memory clear." + ::= { rlFindit 7 } + + +END + |