towerops/priv/mibs/dell/DELL-NETWORKING-SYSLOG-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

51 lines
1.9 KiB
Text

-- DELL-NETWORKING-SYSLOG-MIB: Syslog mib
-- Dell Networking OS Syslog Proprietary MIB Definition
-- This SNMP Management Information Specification
-- explains the proprietary MIB implemented for the Syslog support.
DELL-NETWORKING-SYSLOG-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE
FROM SNMPv2-SMI
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
dellNetMgmt FROM DELL-NETWORKING-SMI;
dellNetSyslogMib MODULE-IDENTITY
LAST-UPDATED "201410230000Z"
ORGANIZATION "Dell Inc."
CONTACT-INFO "support.dell.com"
DESCRIPTION
"The Dell Networking OS Private MIB for Syslog support."
REVISION "201410230000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { dellNetMgmt 30 }
--*************************************************************************************
-- Traps
--**************************************************************************************
dellNetSyslogNotifications OBJECT IDENTIFIER ::= { dellNetSyslogMib 1 }
dellNetSyslogTraps OBJECT IDENTIFIER ::= { dellNetSyslogNotifications 1 }
dellNetSyslogServerNotReachableTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This trap is sent when syslog server is not reachable.
It works for syslog servers configured as TCP or TLS"
::= { dellNetSyslogTraps 1 }
dellNetSyslogServerReachableTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This trap is sent when syslog server is reachable.
It works for syslog servers configured as TCP or TLS"
::= { dellNetSyslogTraps 2 }
END