mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Update MIBs (#14017)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
-- $OpenBSD: OPENBSD-CARP-MIB.txt,v 1.3 2012/09/28 09:21:48 jj Exp $
|
||||
-- $OpenBSD: OPENBSD-CARP-MIB.txt,v 1.4 2018/05/30 18:17:20 sthen Exp $
|
||||
--
|
||||
-- Copyright (c) 2006-2011 Joel Knight <knight.joel@gmail.com>
|
||||
--
|
||||
@@ -32,7 +32,7 @@ IMPORTS
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
carpMIBObjects MODULE-IDENTITY
|
||||
LAST-UPDATED "201201310000Z"
|
||||
LAST-UPDATED "201805140000Z"
|
||||
ORGANIZATION "OpenBSD"
|
||||
CONTACT-INFO "
|
||||
Author: Joel Knight
|
||||
@@ -41,6 +41,8 @@ carpMIBObjects MODULE-IDENTITY
|
||||
"
|
||||
DESCRIPTION "The MIB module for gathering information about
|
||||
Common Address Redundancy Protocol (CARP) interfaces."
|
||||
REVISION "201805140000Z"
|
||||
DESCRIPTION "Add the carpGroupTable to OPENBSD-CARP-MIB."
|
||||
REVISION "201201310000Z"
|
||||
DESCRIPTION "Add the OPENBSD-CARP-MIB to snmpd."
|
||||
::= { openBSD 6 }
|
||||
@@ -176,6 +178,58 @@ carpIfState OBJECT-TYPE
|
||||
::= { carpIfEntry 7 }
|
||||
|
||||
|
||||
-- carpGroup
|
||||
|
||||
carpGroupTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF CarpGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A list of interface groups."
|
||||
::= { carpMIBObjects 4 }
|
||||
|
||||
carpGroupEntry OBJECT-TYPE
|
||||
SYNTAX CarpGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry containing management information applicable to a
|
||||
particular interface group."
|
||||
INDEX { carpGroupIndex }
|
||||
::= { carpGroupTable 1 }
|
||||
|
||||
CarpGroupEntry ::=
|
||||
SEQUENCE {
|
||||
carpGroupIndex Integer32,
|
||||
carpGroupName OCTET STRING,
|
||||
carpGroupDemote Integer32
|
||||
}
|
||||
|
||||
carpGroupIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The demote value of the interface group."
|
||||
::= { carpGroupEntry 1 }
|
||||
|
||||
carpGroupName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the interface group."
|
||||
::= { carpGroupEntry 2 }
|
||||
|
||||
carpGroupDemote OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The demote value of the interface group."
|
||||
::= { carpGroupEntry 3 }
|
||||
|
||||
|
||||
-- carpStats
|
||||
|
||||
carpIpPktsRecv OBJECT-TYPE
|
||||
|
@@ -1,4 +1,4 @@
|
||||
-- $OpenBSD: OPENBSD-PF-MIB.txt,v 1.5 2015/06/10 10:03:59 mikeb Exp $
|
||||
-- $OpenBSD: OPENBSD-PF-MIB.txt,v 1.7 2021/03/23 19:37:51 sthen Exp $
|
||||
--
|
||||
-- Copyright (c) 2004-2013 Joel Knight <knight.joel@gmail.com>
|
||||
--
|
||||
@@ -23,9 +23,12 @@ IMPORTS
|
||||
TimeTicks, enterprises
|
||||
FROM SNMPv2-SMI
|
||||
|
||||
TruthValue
|
||||
TruthValue, DisplayString
|
||||
FROM SNMPv2-TC
|
||||
|
||||
|
||||
SnmpAdminString
|
||||
FROM SNMP-FRAMEWORK-MIB
|
||||
|
||||
openBSD
|
||||
FROM OPENBSD-BASE-MIB
|
||||
|
||||
@@ -33,7 +36,7 @@ IMPORTS
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
pfMIBObjects MODULE-IDENTITY
|
||||
LAST-UPDATED "201506091728Z"
|
||||
LAST-UPDATED "202103231933Z"
|
||||
ORGANIZATION "OpenBSD"
|
||||
CONTACT-INFO "
|
||||
Author: Joel Knight
|
||||
@@ -43,6 +46,8 @@ pfMIBObjects MODULE-IDENTITY
|
||||
DESCRIPTION "The MIB module for gathering information from
|
||||
OpenBSD's packet filter.
|
||||
"
|
||||
REVISION "202103231933Z"
|
||||
DESCRIPTION "Use DisplayString/SnmpAdminString not OCTET STRING where appropriate"
|
||||
REVISION "201506091728Z"
|
||||
DESCRIPTION "Add separate counter for failed 'route-to' applications"
|
||||
REVISION "201308310446Z"
|
||||
@@ -197,7 +202,7 @@ pfCntProtoCksum OBJECT-TYPE
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of packets that were dropped due to memory limitations."
|
||||
"The number of packets that were dropped due to TCP checksum failures."
|
||||
::= { pfCounters 10 }
|
||||
|
||||
pfCntStateMismatch OBJECT-TYPE
|
||||
@@ -300,7 +305,7 @@ pfStateRemovals OBJECT-TYPE
|
||||
-- pfLogInterface
|
||||
|
||||
pfLogIfName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
@@ -683,7 +688,7 @@ pfIfEntry OBJECT-TYPE
|
||||
PfIfEntry ::=
|
||||
SEQUENCE {
|
||||
pfIfIndex Integer32,
|
||||
pfIfDescr OCTET STRING,
|
||||
pfIfDescr DisplayString,
|
||||
pfIfType INTEGER,
|
||||
pfIfRefs Unsigned32,
|
||||
pfIfRules Unsigned32,
|
||||
@@ -719,7 +724,7 @@ pfIfIndex OBJECT-TYPE
|
||||
::= { pfIfEntry 1 }
|
||||
|
||||
pfIfDescr OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
@@ -913,7 +918,7 @@ pfTblEntry OBJECT-TYPE
|
||||
TblEntry ::=
|
||||
SEQUENCE {
|
||||
pfTblIndex Integer32,
|
||||
pfTblName OCTET STRING,
|
||||
pfTblName SnmpAdminString,
|
||||
pfTblAddresses Integer32,
|
||||
pfTblAnchorRefs Integer32,
|
||||
pfTblRuleRefs Integer32,
|
||||
@@ -947,7 +952,7 @@ pfTblIndex OBJECT-TYPE
|
||||
::= { pfTblEntry 1 }
|
||||
|
||||
pfTblName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
SYNTAX SnmpAdminString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
@@ -1363,7 +1368,7 @@ pfLabelEntry OBJECT-TYPE
|
||||
PfLabelEntry ::=
|
||||
SEQUENCE {
|
||||
pfLabelIndex Integer32,
|
||||
pfLabelName OCTET STRING,
|
||||
pfLabelName SnmpAdminString,
|
||||
pfLabelEvals Counter64,
|
||||
pfLabelPkts Counter64,
|
||||
pfLabelBytes Counter64,
|
||||
@@ -1383,7 +1388,7 @@ pfLabelIndex OBJECT-TYPE
|
||||
::= { pfLabelEntry 1 }
|
||||
|
||||
pfLabelName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
SYNTAX SnmpAdminString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
|
@@ -1,4 +1,4 @@
|
||||
-- $OpenBSD: OPENBSD-SENSORS-MIB.txt,v 1.5 2012/09/20 20:51:51 reyk Exp $
|
||||
-- $OpenBSD: OPENBSD-SENSORS-MIB.txt,v 1.7 2018/12/10 13:35:54 landry Exp $
|
||||
--
|
||||
-- Copyright (c) 2006-2007 Joel Knight <knight.joel@gmail.com>
|
||||
--
|
||||
@@ -26,12 +26,12 @@ IMPORTS
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
sensorsMIBObjects MODULE-IDENTITY
|
||||
LAST-UPDATED "201209200000Z"
|
||||
LAST-UPDATED "201812100000Z"
|
||||
ORGANIZATION "OpenBSD"
|
||||
CONTACT-INFO
|
||||
"Editor: Reyk Floeter
|
||||
EMail: reyk@openbsd.org
|
||||
WWW: http://www.openbsd.org/
|
||||
WWW: https://www.openbsd.org/
|
||||
|
||||
Editor: Joel Knight
|
||||
EMail: knight.joel@gmail.com
|
||||
@@ -39,6 +39,9 @@ sensorsMIBObjects MODULE-IDENTITY
|
||||
DESCRIPTION
|
||||
"The MIB module for gathering information from
|
||||
OpenBSD's kernel sensor framework."
|
||||
REVISION "201812100000Z"
|
||||
DESCRIPTION
|
||||
"Add new sensor types."
|
||||
REVISION "201209200000Z"
|
||||
DESCRIPTION
|
||||
"Add new sensor types."
|
||||
@@ -136,7 +139,8 @@ sensorType OBJECT-TYPE
|
||||
angle(17),
|
||||
distance(18),
|
||||
pressure(19),
|
||||
accel(20)
|
||||
accel(20),
|
||||
velocity(21)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
|
Reference in New Issue
Block a user