towerops/priv/mibs/junos/JUNIPER-JS-FLOW-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

86 lines
3 KiB
Text

-- *******************************************************************
-- Juniper enterprise Flow MIB.
--
-- Copyright (c) 2017, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
-- *******************************************************************
JUNIPER-JS-FLOW-MIB DEFINITIONS ::= BEGIN
IMPORTS
Gauge32, Unsigned32,
Counter64,
NOTIFICATION-TYPE,
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
DisplayString FROM SNMPv2-TC
jnxJsFlow FROM JUNIPER-JS-SMI;
jnxJsFlowMIB MODULE-IDENTITY
LAST-UPDATED "201701181022Z" -- January 18, 2017
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
"Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net
HTTP://www.juniper.net"
DESCRIPTION
"This module defines the object that are used for flow
related counters or attributes ."
::= { jnxJsFlow 1 }
jnxJsFlowGenPostFrags OBJECT IDENTIFIER ::= { jnxJsFlowMIB 0 }
jnxJsFlowGenPreFrags OBJECT IDENTIFIER ::= { jnxJsFlowMIB 1 }
jnxJsFlowSofSummary OBJECT IDENTIFIER ::= { jnxJsFlowMIB 2 }
-- ***************************************************************
-- FLOW Table
-- ***************************************************************
-- **********************************************************************
-- Tunnel fragment counters information summary:
-- **********************************************************************
jnxJsFlowGenPostFragsCounter OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total ipv4 post fragments generated."
::= { jnxJsFlowGenPostFrags 1 }
jnxJsFlowGenPreFragsCounter OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total ipv4 pre fragments generated."
::= { jnxJsFlowGenPreFrags 1 }
jnxJsFlowSofPktProcessedNum OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of services-offload packets processed."
::= { jnxJsFlowSofSummary 1 }
jnxJsFlowSofSessNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of current services-offload sessions."
::= { jnxJsFlowSofSummary 2 }
-- ***************************************************************
-- END of File
-- ***************************************************************
END