towerops/priv/mibs/linksys/LINKSYS-rlBrgMcMngr-MIB
Graham McIntire b4f8b40b7f
Include MIB files in Docker image instead of using PVC
- Remove PVC volume mount from k8s/deployment.yaml
- Delete k8s/mib-pvc.yaml (no longer needed)
- Update .gitignore to commit MIB files to git
- Add mix import_mibs task to copy MIBs from LibreNMS
- Add all MIB files from priv/mibs/ to git

This fixes the multi-attach volume error in Kubernetes where new pods
couldn't start because the RWO (ReadWriteOnce) PVC was attached to the
old pod. MIBs are now part of the Docker image and can be used by all
pods simultaneously.
2026-01-19 14:01:03 -06:00

163 lines
4.9 KiB
Text

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