IONLINE-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress,
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
snmpModules,
OBJECT-IDENTITY,
enterprises,
Counter32,
Integer32
FROM SNMPv2-SMI
DisplayString,
TEXTUAL-CONVENTION,
TruthValue,
DateAndTime
FROM SNMPv2-TC;
elite MODULE-IDENTITY
LAST-UPDATED "201208220000Z"
ORGANIZATION "E Technologies"
CONTACT-INFO
"
Postal: XXX
E-mail: i@o.c
"
DESCRIPTION
"
This MIB module defines MIB objects which provide
mechanisms to remotely configure the parameters used
by 24Online Agent for the generation of SNMP messages.
"
::= { enterprises 21068 }
ionline OBJECT-IDENTITY
STATUS current
DESCRIPTION ""
::= { elite 3 }
-- Enumerations used in 24online system
-- 24online
onSystem OBJECT IDENTIFIER ::= { ionline 1 }
-- 24online.system
sysStatus OBJECT IDENTIFIER ::= { onSystem 1 }
-- onSystem.sysInstall
poolStatus OBJECT IDENTIFIER ::= { sysStatus 3 }
poolUsage OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "% pool usage"
::= { poolStatus 1 }
END
above is my sample MIB file for scalar Object.. poolUsage is a storage for a single OID... I want to add it as a table with that I can assign values like poolUsage.1, poolUsage.2 etc etc.. I want to convert this scalar to a "table" format... What changes should I do ? Please help me.