Skip to content

Commit

Permalink
Add most MIB files used by Zino 1
Browse files Browse the repository at this point in the history
This adds most of the MIB definitions vendored into Zino 1.  While
PySNMP will work with versions translated to Python modules, Net-SNMP
needs the real deal.

Some UNINETT specific MIB definitions were dropped, as they have
parsing problems and are not known to be in use today.
  • Loading branch information
lunkwill42 committed Jan 22, 2025
1 parent 21a80eb commit 6f5f64a
Show file tree
Hide file tree
Showing 53 changed files with 73,423 additions and 0 deletions.
1,226 changes: 1,226 additions & 0 deletions mibs/BGP4-MIB.my

Large diffs are not rendered by default.

1,478 changes: 1,478 additions & 0 deletions mibs/BRIDGE-MIB.my

Large diffs are not rendered by default.

2,275 changes: 2,275 additions & 0 deletions mibs/CISCO-BGP4-MIB.my

Large diffs are not rendered by default.

483 changes: 483 additions & 0 deletions mibs/CISCO-CDP-MIB.my

Large diffs are not rendered by default.

432 changes: 432 additions & 0 deletions mibs/CISCO-CONFIG-MAN-MIB.my

Large diffs are not rendered by default.

3,151 changes: 3,151 additions & 0 deletions mibs/CISCO-ENTITY-FRU-CONTROL-MIB.my

Large diffs are not rendered by default.

932 changes: 932 additions & 0 deletions mibs/CISCO-ENVMON-MIB.my

Large diffs are not rendered by default.

1,090 changes: 1,090 additions & 0 deletions mibs/CISCO-IETF-BFD-MIB.my

Large diffs are not rendered by default.

3,436 changes: 3,436 additions & 0 deletions mibs/CISCO-IF-EXTENSION-MIB.my

Large diffs are not rendered by default.

767 changes: 767 additions & 0 deletions mibs/CISCO-MAC-NOTIFICATION-MIB.my

Large diffs are not rendered by default.

387 changes: 387 additions & 0 deletions mibs/CISCO-PIM-MIB.my
Original file line number Diff line number Diff line change
@@ -0,0 +1,387 @@
-- ********************************************************************
-- CISCO-PIM-MIB.my: cisco specific PIM MIB extensions
--
-- July 2000, Rajiv Raghunarayan
--
-- Copyright (c) 1999-2000 by cisco Systems, Inc.
-- All rights reserved.
--
-- ********************************************************************

CISCO-PIM-MIB DEFINITIONS ::= BEGIN

IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB
MODULE-COMPLIANCE,
-- NOTIFICATION-GROUP,
OBJECT-GROUP
FROM SNMPv2-CONF
ciscoMgmt
FROM CISCO-SMI
pimInterfaceStatus,
pimRPSetHoldTime
FROM PIM-MIB;

ciscoPimMIB MODULE-IDENTITY
LAST-UPDATED "200011020000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service

Postal: 170 W Tasman Drive
San Jose, CA 95134
USA

Tel: +1 800 553-NETS

EMail: [email protected]
"
DESCRIPTION
"This MIB module defines the cisco specific variables
for Protocol Independent Multicast (PIM) management.
These definitions are an extension of those defined in
the IETF PIM MIB (RFC 2934)."
REVISION "200011020000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 184 }


ciscoPimMIBObjects OBJECT IDENTIFIER ::= { ciscoPimMIB 1 }

cpim OBJECT IDENTIFIER ::= { ciscoPimMIBObjects 1 }

cpimInvalidRegisterMsgsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of invalid PIM Register messages
received by this device. A PIM Register message is
termed invalid if
o the encapsulated IP header is malformed,
o the destination of the PIM Register message is not the
RP (Rendezvous Point) for the group in question,
o the source/DR (Designated Router) address is not a valid
unicast address."
::= { cpim 1 }

cpimInvalidJoinPruneMsgsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of invalid PIM Join/Prune
messages received by this device. A PIM Join/Prune
message is termed invalid if

o the RP specified in the packet is not the RP for
the group in question."
::= { cpim 2 }

cpimLastErrorType OBJECT-TYPE
SYNTAX INTEGER { none(1),
invalidRegister(2),
invalidJoinPrune(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the last invalid message that was received by
this device."
::= { cpim 3 }

cpimLastErrorOriginType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the type of address stored in
cpimLastErrorOrigin. The value of this object is
irrelevant if the value of cpimLastErrorType is none(1)."
::= { cpim 4 }

cpimLastErrorOrigin OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the Network Layer Address of the
source that originated the last invalid packet. The type
of address stored depends on the value in
cpimLastErrorOriginType.

The value of this object represents the Network Layer
Address of the Designated Router (DR) whenever the value
of cpimLastErrorGroup is a zero-length address,
for eg. when encapsulated IP header is malformed.

The value of this object is irrelevant if the value of
cpimLastErrorType is none(1)."
::= { cpim 5 }

cpimLastErrorGroupType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the type of address stored in
cpimLastErrorGroup. The value of this object is unknown(0)
if there is a problem in the packet received from the
DR.

The value of this object is irrelevant if the value of
cpimLastErrorType is none(1)."
::= { cpim 6 }

cpimLastErrorGroup OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast group address to which the last invalid
packet was addressed. The type of address stored
depends on the value in cpimLastErrorGroupType.

The value of this object is a zero-length InetAddress if
there is a problem in the packet received from the DR,
for eg. a malformed encapsulated IP header.

The value of this object is irrelevant if the value of
cpimLastErrorType is none(1)."
::= { cpim 7 }

cpimLastErrorRPType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the type of address stored in
cpimLastErrorRP. The value of this object is irrelevant
if the value of cpimLastErrorType is none(1)."
::= { cpim 8 }

cpimLastErrorRP OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address of the RP, as per the last invalid
packet. The type of address stored depends on the value in
cpimLastErrorRPType.

The value of this object is irrelevant if the value of
cpimLastErrorType is none(1)."
::= { cpim 9 }

-- Notifications Section

ciscoPimMIBNotificationPrefix OBJECT IDENTIFIER ::= { ciscoPimMIB 2 }
ciscoPimMIBNotifications OBJECT IDENTIFIER ::=
{ ciscoPimMIBNotificationPrefix 0 }
ciscoPimMIBNotificationObjects OBJECT IDENTIFIER ::=
{ ciscoPimMIBNotificationPrefix 1 }

-- Notification Objects

cpimRPMappingChangeType OBJECT-TYPE
SYNTAX INTEGER { newMapping(1),
deletedMapping(2),
modifiedOldMapping(3),
modifiedNewMapping(4)
}


MAX-ACCESS read-only
-- MAX-ACCESS accessible-for-notify

STATUS current
DESCRIPTION
"Describes the operation that resulted in generation
of cpimRPMappingChange notification.

o newMapping, as the name suggests indicates that a new
mapping has been added into the pimRPSetTable,
o deletedMapping indicates that a mapping has been
deleted from the pimRPSetTable, and,
o modifiedXXXMapping indicates that an RP mapping (which
already existed in the table) has been modified.
The two modifications types i.e. modifiedOldMapping
and modifiedNewMapping, are defined to differentiate
the notification generated before modification from
that generated after modification."
::= { ciscoPimMIBNotificationObjects 1 }

-- Notifications


ciscoPimInterfaceUp NOTIFICATION-TYPE
OBJECTS {
pimInterfaceStatus
}
STATUS current
DESCRIPTION
"A ciscoPimInterfaceUp notification signifies the
restoration of a PIM interface. This notification
should be generated whenever pimInterfaceStatus
transitions into the 'active' state.
pimInterfaceStatus identifies the interface which
was involved in the generation of this notification."
::= { ciscoPimMIBNotifications 1 }

ciscoPimInterfaceDown NOTIFICATION-TYPE
OBJECTS {
pimInterfaceStatus
}
STATUS current
DESCRIPTION
"A ciscoPimInterfaceDown notification signifies the loss
of a PIM interface. This notification should be generated
whenever an entry is about to be deleted from the
PimInterfaceTable.
pimInterfaceStatus identifies the interface which
was involved in the generation of this notification."
::= { ciscoPimMIBNotifications 2 }

ciscoPimRPMappingChange NOTIFICATION-TYPE
OBJECTS {
pimRPSetHoldTime,
cpimRPMappingChangeType
}
STATUS current
DESCRIPTION
"A ciscoPimRPMappingChange notification signifies a change
in the RP Mapping on the device in question. A change in RP
Mapping could be because of addition of new entries to the
RP Mapping cache, deletion of existing entries, or a
modification to an existing mapping. The type of change is
indicated by cpimRPMappingChangeType. pimRPSetHoldTime
is used to identify the row in the pimRPSetTable that is
responsible for the generation of this notification.

In case of modification to existing entries, a
notification should be generated once before the
modification (with cpimRPMappingChangeType set to
modifiedOldMapping) and once after modification (with
cpimRPMappingChangeType set to modifiedNewMapping).

NOTE: A high frequency of RP Mapping change could result
in a large number of ciscoPimRPMappingChange notifications
being generated. Hence, in environments where the
possibility of a high frequency of RP Mapping change
exists, enable this notification with utmost care."
::= { ciscoPimMIBNotifications 3 }

ciscoPimInvalidRegister NOTIFICATION-TYPE
OBJECTS {
cpimLastErrorOriginType,
cpimLastErrorOrigin,
cpimLastErrorGroupType,
cpimLastErrorGroup,
cpimLastErrorRPType,
cpimLastErrorRP,
cpimInvalidRegisterMsgsRcvd
}
STATUS current
DESCRIPTION
"A ciscoPimInvalidRegister notification signifies that
an invalid Register message was received by this device.

This notification is generated whenever the
cpimInvalidRegisterMsgsRcvd counter is incremented.
cpimLastErrorOrigin, cpimLastErrorGroup, and
cpimLastErrorRP should signify the source address, group
address and the RP address in the invalid register
packet."
::= { ciscoPimMIBNotifications 4 }

ciscoPimInvalidJoinPrune NOTIFICATION-TYPE
OBJECTS {
cpimLastErrorOriginType,
cpimLastErrorOrigin,
cpimLastErrorGroupType,
cpimLastErrorGroup,
cpimLastErrorRPType,
cpimLastErrorRP,
cpimInvalidJoinPruneMsgsRcvd
}
STATUS current
DESCRIPTION
"A ciscoPimInvalidJoinPrune notification signifies the
receipt of an invalid join/prune message.

This notification is generated whenever the
cpimInvalidJoinPruneMsgsRcvd counter is incremented.
cpimLastErrorOrigin, cpimLastErrorGroup, and
cpimLastErrorRP should signify the source address, group
address and the RP address in the invalid join/prune
packet."
::= { ciscoPimMIBNotifications 5 }

-- Conformance information

ciscoPimMIBConformance OBJECT IDENTIFIER ::= { ciscoPimMIB 3 }
ciscoPimMIBCompliances OBJECT IDENTIFIER
::= { ciscoPimMIBConformance 1 }
ciscoPimMIBGroups OBJECT IDENTIFIER ::= { ciscoPimMIBConformance 2 }

-- compliance statements

ciscoPimSparseMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for devices running PIM Sparse
Mode and implementing the CISCO PIM MIB."
MODULE -- this module
MANDATORY-GROUPS { ciscoPimSparseMIBGroup,
ciscoPimNotificationObjectGroup
}

::= { ciscoPimMIBCompliances 1 }

-- Units of conformance

ciscoPimSparseMIBGroup OBJECT-GROUP
OBJECTS { cpimInvalidRegisterMsgsRcvd,
cpimInvalidJoinPruneMsgsRcvd,
cpimLastErrorType, cpimLastErrorOriginType,
cpimLastErrorOrigin, cpimLastErrorGroupType,
cpimLastErrorGroup, cpimLastErrorRPType,
cpimLastErrorRP
}
STATUS current
DESCRIPTION
"A collection of objects to support management of PIM
Sparse mode on Cisco devices."
::= { ciscoPimMIBGroups 1 }

ciscoPimNotificationObjectGroup OBJECT-GROUP
OBJECTS { cpimRPMappingChangeType
}
STATUS current
DESCRIPTION
"A collection of objects that are supported only for
notification purpose."
::= { ciscoPimMIBGroups 2 }

--ciscoPimNotificationGroup NOTIFICATION-GROUP
-- NOTIFICATIONS { ciscoPimInterfaceUp,
-- ciscoPimInterfaceDown,
-- ciscoPimRPMappingChange,
-- ciscoPimInvalidRegister,
-- ciscoPimInvalidJoinPrune
-- }
-- STATUS current
-- DESCRIPTION
-- "A collection of notifications which are generated by
-- devices supporting this MIB."
-- ::= { ciscoPimMIBGroups 3 }
END
Loading

0 comments on commit 6f5f64a

Please sign in to comment.