towerops/priv/mibs/cambium/TERRAGRAPH-RADIO-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

103 lines
2.7 KiB
Text

TERRAGRAPH-RADIO-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Gauge32, Integer32,
enterprises FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString FROM SNMPv2-TC;
tgRadioMIB MODULE-IDENTITY
LAST-UPDATED "202001080000Z"
ORGANIZATION "Terragraph"
CONTACT-INFO "fbc-terragraph@fb.com"
DESCRIPTION "Terragraph Radio MIB"
REVISION "202001080000Z"
DESCRIPTION "First Draft"
::= { terragraph 60 }
-- cnWave identifier
terragraph OBJECT IDENTIFIER ::= { enterprises 17713 }
interfaces OBJECT IDENTIFIER ::= { tgRadioMIB 1 }
ObjectIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "x"
STATUS current
DESCRIPTION ""
SYNTAX Integer32 (-2147483648..2147483647)
tgRadioInterfacesTable OBJECT-TYPE
SYNTAX SEQUENCE OF TgRadioStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Terragraph Radio Interfaces"
::= { interfaces 1 }
tgRadioStatEntry OBJECT-TYPE
SYNTAX TgRadioStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Terragraph Radio Interface"
INDEX { ifIndex }
::= { tgRadioInterfacesTable 1 }
TgRadioStatEntry ::= SEQUENCE {
ifIndex ObjectIndex,
ifName DisplayString,
-- TODO: Should be MacAddress
macAddr DisplayString,
-- TODO: Should be MacAddress
remoteMacAddr DisplayString,
mcs Gauge32,
snr Integer32,
rssi Integer32
}
ifIndex OBJECT-TYPE
SYNTAX ObjectIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION ""
::= { tgRadioStatEntry 1 }
ifName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { tgRadioStatEntry 2 }
macAddr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { tgRadioStatEntry 3 }
remoteMacAddr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { tgRadioStatEntry 4 }
mcs OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { tgRadioStatEntry 5 }
snr OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { tgRadioStatEntry 6 }
rssi OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { tgRadioStatEntry 7 }
END