towerops/priv/mibs/awplus/AT-LINKTRAP-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

57 lines
1.7 KiB
Text

-- ============================================================================
-- AT-LINKTRAP.MIB, Allied Telesis enterprise MIB: Link UP/DOWN Trap
--
-- Copyright (c) 2014 by Allied Telesis, Inc.
-- All rights reserved.
--
-- ============================================================================
AT-LINKTRAP-MIB DEFINITIONS ::= BEGIN
IMPORTS
sysinfo
FROM AT-SMI-MIB
Unsigned32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
ifIndex, ifAdminStatus, ifOperStatus, ifDescr
FROM IF-MIB
DisplayString
FROM SNMPv2-TC;
atLinkTrap MODULE-IDENTITY
LAST-UPDATED "201404040000Z"
ORGANIZATION
"Allied Telesis, Inc."
CONTACT-INFO
" http://www.alliedtelesis.com"
DESCRIPTION
"The AT-LINKTRAP MIB contains objects for link
up and down traps."
REVISION "201404040000Z"
DESCRIPTION
"Initial version."
::= { sysinfo 25 }
--
-- Node definitions
--
atLinkDown NOTIFICATION-TYPE
OBJECTS { ifIndex, ifAdminStatus, ifOperStatus, ifDescr }
STATUS current
DESCRIPTION
"A trap generated when an interface is linked down."
::= { atLinkTrap 1 }
atLinkUp NOTIFICATION-TYPE
OBJECTS { ifIndex, ifAdminStatus, ifOperStatus, ifDescr }
STATUS current
DESCRIPTION
"A trap generated when an interface is linked up."
::= { atLinkTrap 2 }
END
--
-- at-linktrap.mib
--