From 98a672123c7872f6b9b75a9a2b6bb3aea504de6a Mon Sep 17 00:00:00 2001 From: David Leutgeb Date: Tue, 5 Dec 2023 12:25:34 +0100 Subject: Initial commit --- MIBS/ubiquoss/UBQS-CPU-STATS-MIB | 107 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 MIBS/ubiquoss/UBQS-CPU-STATS-MIB (limited to 'MIBS/ubiquoss/UBQS-CPU-STATS-MIB') diff --git a/MIBS/ubiquoss/UBQS-CPU-STATS-MIB b/MIBS/ubiquoss/UBQS-CPU-STATS-MIB new file mode 100644 index 0000000..54e7da1 --- /dev/null +++ b/MIBS/ubiquoss/UBQS-CPU-STATS-MIB @@ -0,0 +1,107 @@ +-- ***************************************************************** +-- UBQS-CPU-STATS-MIB : Ubiquoss CPU queue Statistic information +-- +-- Sep 2015, Choi Jang Hee +-- +-- Copyright (c) 2015 by Ubiquoss, Corp. +-- +-- All rights reserved. +-- *************************************************************** + +UBQS-CPU-STATS-MIB DEFINITIONS ::= BEGIN + +IMPORTS + IpAddress + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString, PhysAddress + FROM SNMPv2-TC + ubiMgmtv2 + FROM UBQS-SMI; + +ubiCpuStatsMIB MODULE-IDENTITY + LAST-UPDATED "201512230000Z" + ORGANIZATION "Ubiquoss Corp." + CONTACT-INFO + " Ubiquoss + Customer Service" + + DESCRIPTION + "The UBQS-CPU-STATS-MIB is used to get + the CPU queue statistic information." + REVISION "201512230000Z" + DESCRIPTION + "Add system clock table" + + ::= { ubiMgmtv2 36 } + +-- *********************************************************** +-- Textual Conventions +-- *********************************************************** + +-- *************************************************************** +-- ubiCpuStatsMIB +-- *************************************************************** +ubiCpuStatsMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiCpuStatsMIB 1 } +ubiCpuStatsMIBObjects OBJECT IDENTIFIER ::= { ubiCpuStatsMIB 2 } +ubiCpuStatsMIBConformance OBJECT IDENTIFIER ::= { ubiCpuStatsMIB 3 } + +-- *************************************************************** +-- ubiCpuStatsTable +-- *************************************************************** + + + ubiCpuStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF UbiCpuStatsEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of CPU queue counter" + ::= { ubiCpuStatsMIBObjects 1 } + + ubiCpuStatsEntry OBJECT-TYPE + SYNTAX UbiCpuStatsEntry + ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the CPU queue counter table, representing + 1. CPU Rx packet couner + 2. CPU drop packet counter" + INDEX {ubiCpuStatsIndex} + ::= { ubiCpuStatsTable 1 } + + UbiCpuStatsEntry ::= SEQUENCE { + ubiCpuStatsIndex INTEGER, + ubiCpuStatsInPkts Counter64, + ubiCpuStatsDropPkts Counter64 + } + + ubiCpuStatsIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS current + DESCRIPTION + "Index of CPU queue counter table" + ::= {ubiCpuStatsEntry 1} + + ubiCpuStatsInPkts OBJECT-TYPE + SYNTAX Counter64 + ACCESS read-only + STATUS current + DESCRIPTION + "received packet counter of CPU queue" + ::= {ubiCpuStatsEntry 2} + + ubiCpuStatsDropPkts OBJECT-TYPE + SYNTAX Counter64 + ACCESS read-only + STATUS current + DESCRIPTION + "dropped packet counter of CPU queue" + ::= {ubiCpuStatsEntry 3} + +END + + + -- cgit v1.2.3