From 98a672123c7872f6b9b75a9a2b6bb3aea504de6a Mon Sep 17 00:00:00 2001 From: David Leutgeb Date: Tue, 5 Dec 2023 12:25:34 +0100 Subject: Initial commit --- MIBS/linksys/LINKSYS-rlBrgMcMngr-MIB | 163 +++++++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 MIBS/linksys/LINKSYS-rlBrgMcMngr-MIB (limited to 'MIBS/linksys/LINKSYS-rlBrgMcMngr-MIB') diff --git a/MIBS/linksys/LINKSYS-rlBrgMcMngr-MIB b/MIBS/linksys/LINKSYS-rlBrgMcMngr-MIB new file mode 100644 index 0000000..bbc9cba --- /dev/null +++ b/MIBS/linksys/LINKSYS-rlBrgMcMngr-MIB @@ -0,0 +1,163 @@ +LINKSYS-rlBrgMcMngr-MIB DEFINITIONS ::= BEGIN + + +IMPORTS + rnd FROM LINKSYS-MIB + VlanIndex FROM Q-BRIDGE-MIB + MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI + InetAddressType FROM INET-ADDRESS-MIB; + +rlBrgMcMngr MODULE-IDENTITY + LAST-UPDATED "200602120000Z" + ORGANIZATION "Linksys LLC." + CONTACT-INFO + "www.linksys.com/business/support" + DESCRIPTION + "The private MIB module definition for Multicast support in Linksys devices." + REVISION "200602120000Z" + DESCRIPTION + "Editorial changes to support new MIB compilers." + REVISION "200404190000Z" + DESCRIPTION + "Initial version of this MIB." + ::= { rnd 117 } + + +rlBrgMulticastManagerTable OBJECT-TYPE + SYNTAX SEQUENCE OF RlBrgMulticastManagerEntry + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The table containing Multicast information for each VLAN." + ::= { rlBrgMcMngr 1} + +rlBrgMulticastManagerEntry OBJECT-TYPE +SYNTAX RlBrgMulticastManagerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the rlBrgMulticastManagerTable." + INDEX { rlBrgMulticastManagerVlanTag } + ::= { rlBrgMulticastManagerTable 1 } + +RlBrgMulticastManagerEntry ::= +SEQUENCE { + rlBrgMulticastManagerVlanTag VlanIndex, + rlBrgMulticastManagerAdminVlanMode INTEGER, + rlBrgMulticastManagerOperVlanMode INTEGER +} +rlBrgMulticastManagerVlanTag OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " The VLAN tag for which this entry is configured." + ::= { rlBrgMulticastManagerEntry 1 } + +rlBrgMulticastManagerAdminVlanMode OBJECT-TYPE + SYNTAX INTEGER { + mac-group(1), + ip-group(2), + ip-src-group(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Bridge Multicast Admin Lookup Mode." + DEFVAL { mac-group } + ::= { rlBrgMulticastManagerEntry 2 } + +rlBrgMulticastManagerOperVlanMode OBJECT-TYPE + SYNTAX INTEGER { + mac-group(1), + ip-group(2), + ip-src-group(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Bridge Multicast Oper Lookup Mode." + DEFVAL { mac-group } + ::= { rlBrgMulticastManagerEntry 3 } + +-- rlBrgMulticastInetManagerTable (replaced DEPRICATED rlBrgMulticastManagerTable) + +rlBrgMulticastInetManagerTable OBJECT-TYPE + SYNTAX SEQUENCE OF RlBrgMulticastInetManagerEntry + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The table containing Multicast information for each VLAN." + ::= { rlBrgMcMngr 2} + +rlBrgMulticastInetManagerEntry OBJECT-TYPE +SYNTAX RlBrgMulticastInetManagerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the rlBrgMulticastInetManagerTable." + INDEX { rlBrgMulticastInetManagerIpType, rlBrgMulticastInetManagerVlanTag } + ::= { rlBrgMulticastInetManagerTable 1 } + +RlBrgMulticastInetManagerEntry ::= +SEQUENCE { + rlBrgMulticastInetManagerIpType INTEGER, + rlBrgMulticastInetManagerVlanTag VlanIndex, + rlBrgMulticastInetManagerAdminVlanMode INTEGER, + rlBrgMulticastInetManagerOperVlanMode INTEGER +} + +rlBrgMulticastInetManagerIpType OBJECT-TYPE + SYNTAX INTEGER { + unknown(0), + ipv4(1), -- these named numbers are aligned + ipv6(2), -- with AddressFamilyNumbers from + dns(16) -- IANA-ADDRESS-FAMILY-NUMBERS-MIB + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The address type of Vlan Mode." + ::= { rlBrgMulticastInetManagerEntry 1 } + +rlBrgMulticastInetManagerVlanTag OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " The VLAN tag for which this entry is configured." + ::= { rlBrgMulticastInetManagerEntry 2 } + +rlBrgMulticastInetManagerAdminVlanMode OBJECT-TYPE + SYNTAX INTEGER { + mac-group(1), + ip-group(2), + ip-src-group(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Bridge Multicast Admin Lookup Mode." + DEFVAL { mac-group } + ::= { rlBrgMulticastInetManagerEntry 3 } + +rlBrgMulticastInetManagerOperVlanMode OBJECT-TYPE + SYNTAX INTEGER { + mac-group(1), + ip-group(2), + ip-src-group(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Bridge Multicast Oper Lookup Mode." + DEFVAL { mac-group } + ::= { rlBrgMulticastInetManagerEntry 4 } + + +END + + + + + -- cgit v1.2.3