[Search for users]
[Overall Top Noters]
[List of all Conferences]
[Download this site]
Title: | DEC TCP/IP Services for OpenVMS |
Notice: | Note 2-SSB Kits, 3-FT Kits, 4-Patch Info, 7-QAR System |
Moderator: | ucxaxp.ucx.lkg.dec.com::TIBBERT |
|
Created: | Thu Nov 17 1994 |
Last Modified: | Fri Jun 06 1997 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 5568 |
Total number of notes: | 21492 |
5355.0. "SNMP director" by AUBER::VOUTERS (Philippe VOUTERS, Evry (France)) Wed Mar 19 1997 04:07
Hello UCX Community,
Below is a SNMP director that interogates agents. It has fully been
tested on OpenVMS V6.1 (VAX) and V7.1 (AXP). It fits with the data
file SNMPINFO.DAT provided in next reply.
Commands to rebuild SNMP.EXE :
$ CC[/DECC] SNMP
$ LINK SNMP
$ RUN SNMP
At program's prompt ("SNMP> "), enter "help". This lists the valid
commands.
This program should run on Digital Unix (partially tested).
Have fun.
Philippe Vouters (MCS France)
#ifdef __DECC
#pragma module snmpc "SNMPC V1.0-00"
#endif
/*
* Copyright (c) 1997
* by Digital Equipment Corporation, Maynard, Mass.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the inclusion
* of the above copyright notice. This software or any other copies thereof
* may not be provided or otherwise made available to any other person. No
* title to and ownership of the software is hereby transferred.
*
* The information in this software is subject to change without notice and
* should not be construed as a commitment by Digital Equipment Corporation.
*
* Digital assumes no responsibility for the use or reliability of its
* software on equipment which is not supported by Digital.
*/
/*
* Data types and routines implement SNMP protocol as described in RFC 1155
* and RFC 1157.
*
* Author : Philippe Vouters
* Creation date : 24-FEB-1997
*
* Modification history :
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <strings.h>
#include <ctype.h>
#ifdef __VMS
#ifdef __DECC
#pragma extern_prefix save
#pragma extern_prefix "decc$"
#include <socket.h>
#include <file.h>
#include <in.h>
#include <netdb.h>
#include <inet.h>
#include <unixio.h>
#include <strings.h>
#include <fcntl.h>
#pragma extern_prefix restore
#include <lbr$routines.h>
#else /* __VAXC */
#include <socket.h>
#include <file.h>
#include <in.h>
#include <netdb.h>
#include <inet.h>
#include <unixio.h>
#include <fcntl.h>
#endif /* #ifdef __DECC */
#include <smg$routines.h>
#include <lib$routines.h>
#include <descrip.h>
#else /* other than __VMS */
#include <sys/socket.h>
#include <fcntl.h>
#include </sys/include/netinet/in.h>
#include <netdb.h>
#include <sys/file.h>
#include <arpa/inet.h>
#include <sys/time.h>
#endif /* #ifdef __VMS */
/*
** The following defines where to place the first command parameter in the
** call_arg array by the parser.
*/
#define FIRST_COMMAND_ARG 4
/*
** The following defines the maximum number of parameters parsed in a command
** line.
*/
#define MAX_NBR_PARAMS 16
/*
** The following defines the number of command available in the dispatch
** table
*/
#define MAX_ENTRIES 6
/*
** The following defines the screen width for entering a command to the
** parser. Defines the number of bytes of the screen.
*/
#define SCREENWIDTH 80
#define BOOLEAN char
#ifndef FALSE
#define FALSE 0
#define TRUE 1
#endif
#define PRIMITIVE 0
#define CONSTRUCTOR 1
#define UNIVERSAL 0
#define APPLICATION 1
#define CONTEXT_SPECIFIC 2
#define PRIVATE 3
#define BOOL 1
#define INTEGER 2
#define BIT_STRING 3
#define OCTET_STRING 4
#define NUL 5
#define OBJECT_IDENTIFIER 6
#define ObjectDescriptor 7
#define EXTERNAL 8
#define REAL 9
#define ENUMERATED 10
#define SEQUENCE 16+32
#define SET 17+32
#define IpAddress 0 /* IMPLICIT OCTET STRING SIZE(4) */
#define Counter 1 /* IMPLICIT INTEGER (0..42949667295) */
#define Gauge 2 /* IMPLICIT INTEGER (0..42949667295) */
#define TimeTicks 3 /* IMPLICIT INTEGER (0..42949667295) */
#define Opaque 4 /* IMPLICIT OCTET STRING */
/*
** define ASN.1 functions
*/
#define GETREQUEST 0
#define GETNEXTREQUEST 1
#define GETRESPONSE 2
#define SETREQUEST 3
#define SNMP_SERVICE 161
#define UDPERR -1 /* UDP error */
#define TMO -2 /* timeout */
#define RETRY 2
/*
** The following is the size of buffers allocated.
*/
#define DATASIZ 512
#ifndef FD_SET
struct fd_set_struct {u_char fds_bits[8];};
typedef struct fd_set_struct fd_set;
#define NFDBITS sizeof(struct fd_set_struct)/sizeof (u_char)
#define FD_SETSIZE NFDBITS
#define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
#define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
#define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
#define FD_ZERO(p) memset ((char *)(p),0, sizeof(*(p)))
#endif
/* Convert short port number from host to network byte order */
#define htons(x) ((unsigned short)((x<<8)|(x>>8)))
/* Convert short port number from network to host byte order */
#define ntohs(x) ((unsigned short)((x<<8)|(x>>8)))
struct dispatch_table_type {
char *command;
unsigned char *(*routine)();
};
unsigned char keep_going = TRUE;
struct {char *type;
unsigned char value;
} type_specifier[] = { "0",0,
"BOOLEAN",BOOL,
"INTEGER",INTEGER,
"BIT STRING",BIT_STRING,
"OctetString", OCTET_STRING,
"DisplayString", OCTET_STRING,
"NULL",NUL,
"OBJECT IDENTIFIER",OBJECT_IDENTIFIER,
"ObjectDescriptor",ObjectDescriptor,
"EXTERNAL",EXTERNAL,
"REAL",REAL,
"ENUMERATED",ENUMERATED,
"Reserved 11",11,
"Reserved 12",12,
"Reserved 13",13,
"Reserved 14",14,
"Reserved 15",15,
"SEQUENCE",SEQUENCE,
"SET",SET,
"IpAddress",IpAddress+(APPLICATION<<6),
"NetworkAddress",IpAddress+(APPLICATION<<6),
"Counter",Counter+(APPLICATION<<6),
"Gauge",Gauge+(APPLICATION<<6),
"TimeTicks",TimeTicks+(APPLICATION<<6),
"Opaque",Opaque+(APPLICATION<<6),
"GetRequest",GETREQUEST + 32 + (CONTEXT_SPECIFIC<<6),
"GetNextRequest",GETNEXTREQUEST + 32 + (CONTEXT_SPECIFIC<<6),
"GetResponse",GETRESPONSE + 32 + (CONTEXT_SPECIFIC<<6),
"SetRequest",SETREQUEST + 32 + (CONTEXT_SPECIFIC<<6)
};
typedef struct identifier {
unsigned char tag:5;
unsigned char P_C:1;
unsigned char class:2;
} identifier_t;
void cleanup (socket)
int socket ;
{
(void) shutdown (socket,0) ;
(void) close (socket) ;
}
/*
** exchange_data :
** Sends a datagram to the remote SNMP port using UDP and receives
** the response.
** Inputs : remote_address : Internet address of the SNMP server host.
** port : the remote SNMP port. If port = 0, then the default
** assigned SNMP port (161) is used.
** buffer: the buffer to be sent to the remote destination.
** Output: buffer: the buffer received from the remote peer.
** Return : 0 success
** TMO timeout.
** UDPERR error with socket functions.
*/
int exchange_data (unsigned int remote_address,
unsigned short port,
unsigned char *buffer) {
int s;
struct sockaddr_in *s_name;
fd_set read_mask,write_mask,exception_mask ;
int retry_nbr, sendlen, added_size;
int received_bytes ;
int status, i;
struct timeval timeout ;
BOOLEAN connected ;
unsigned int fromlen;
unsigned char *cp;
/*
* Compute buffer length.
*/
cp = buffer;
cp++;
sendlen = 0;
added_size = 1;
if ((*cp & 0x80) == 0x80){
added_size = *cp & 0x3f;
cp++;
}
for (i=0;i < added_size; i++){
sendlen = (sendlen<<8) + *cp;
cp++;
}
sendlen += added_size + 1;
/*
* Get a UDP socket number.
*/
if ((s = socket (AF_INET, SOCK_DGRAM, 0)) == -1)
return (UDPERR) ;
/*
* Setup the structure name and bind it to the socket s.
*/
s_name = calloc (1,sizeof(struct sockaddr_in));
s_name->sin_family = AF_INET ;
s_name->sin_port = htons (0) ;
s_name->sin_addr.s_addr = htonl (INADDR_ANY) ;
if (bind (s, (struct sockaddr *)s_name, sizeof(struct sockaddr_in))!= 0)
{
cleanup (s) ;
return (UDPERR) ;
}
/*
* Setup remote peer sockaddr_in structure.
*/
s_name->sin_family = AF_INET ;
if (port != 0)
s_name->sin_port = htons (port) ;
else s_name->sin_port = htons (SNMP_SERVICE) ;
s_name->sin_addr.s_addr = remote_address;
do
{
/*
* send buffer containing SNMP protocol to remote destination
* specified by s_name
*/
if (sendto (s,(char *)buffer,sendlen,0,(struct sockaddr *)s_name,
sizeof (struct sockaddr_in)) ==-1 )
{
cleanup (s) ;
return (UDPERR) ;
}
/*
* check if there is a response.
*/
FD_ZERO(&read_mask);
FD_SET( s, &read_mask);
FD_ZERO(&exception_mask);
FD_ZERO(&write_mask);
timeout.tv_sec = 10 ;
timeout.tv_usec = 0 ;
switch ( select (s+1,&read_mask,&write_mask,&exception_mask,&timeout) )
{
case -1:
cleanup (s) ;
return (UDPERR) ;
break ;
case 0 :
retry_nbr++ ;
connected = FALSE ;
break ;
default :
if (!FD_ISSET( s, &read_mask))
retry_nbr++ ;
else
connected = TRUE ;
}/* end switch */
} while ((retry_nbr < RETRY) & (!connected)) ;
if (!connected)
{
cleanup (s) ;
return (TMO) ;
}
/*
* Remote peer answered. Get data into buffer.
*/
fromlen = sizeof (struct sockaddr_in) ;
if ((received_bytes = recvfrom (s,(char *)buffer,DATASIZ,0,
(struct sockaddr *)s_name,
&fromlen))==-1)
{
cleanup (s) ;
return (UDPERR) ;
}
/*
* Cleanup socket and return success.
*/
cleanup (s) ;
return (0);
}
void lower (char *s,char stpchr){
for (;(*s!=stpchr)&&(*s!=0);s++) *s = tolower(*s);
}
/*
** format_ia
** Returns the ASCII equivalent in Internet notation of an internet address.
** Inputs : ia: the internet address.
** Returns : pointer to a character string containing the ASCII internet
** address
*/
char *format_ia(ia)
unsigned long ia;
{
static char str[16];
sprintf (str, "%d.%d.%d.%d", ia&0xFF, (ia>>8)&0xFF, (ia>>16)&0xFF,
(ia>>24)&0xFF);
return (str);
}
/*
** format_ia
** Returns the Internet address of ASCII string in Internet notation.
** Inputs : str: the ASCII string in Internet notation.
** Returns : Internet address
** -1 in case of failure to convert.
*/
unsigned long get_ia(char *str)
{
unsigned long ia;
unsigned long temp[4];
char ch;
for(;;) {
if (sscanf (str, "%d.%d.%d.%d%c",
&temp[0],&temp[1],&temp[2],
&temp[3],&ch) != 4) return (-1);
if ((temp[0] > 255) ||
(temp[1] > 255) ||
(temp[2] > 255) ||
(temp[3] > 255)) return(-1);
break;
}
ia = temp[0] + (temp[1] << 8) + (temp[2] << 16) + (temp[3] << 24);
return (ia);
}
/*
** insert_length
** Sets the length value in ASN.1 notation inside a buffer.
** Inputs: cp : character pointer inside the buffer.
** length : the value to be written
** Returns: cp : updated to point to first free byte.
*/
unsigned char *insert_length (unsigned char *cp,int length) {
unsigned char count = 0;
unsigned char *cp1,*cp2;
int i;
cp1 = cp;
if (length >= 0x80) *cp--;
if (length == 0x80) {
*cp-- = 1; /* Most significant byte */
*cp-- = 0; /* Least significant byte */
*cp1 = 0x82;
}
if (length > 0x80){
cp2 = (unsigned char *)&length + sizeof(int) - 1;
for (;*cp2 == 0; cp2--);
for (i=sizeof(int);i>0;i--) {
count++;
*cp-- = *cp2--;
}
*cp1 = 0x80 + count;
}
if (length < 0x80) *cp-- = (unsigned char) length;
return (cp);
}
/*
** strnmatch
** returns the number of matching bytes of two buffers.
** Inputs : s1,s2 : buffers to compare.
** max : maximum number of bytes to compare.
*/
int strnmatch (char *s1,char *s2,int max) {
int num_match = 0;
for (;*s1 != 0,*s2 != 0,max > 0;s1++,s2++,max--)
if (*s1 == *s2) num_match++;
else break;
return (num_match);
}
/*
** find_names
** Returns the ASCII equivalent of ASN.1 numbers from the SNMP data file.
** The tree and leaf is located.
*/
char *find_names (char *names,int max_index) {
char buffer[100];
static char buffer1[256];
char line [256];
char saved_line[256];
char *cp,*cp1,*cp2;
BOOLEAN comments;
int match = 0;
int i,j;
FILE *fp;
/*
* Clear all bytes of buffer.
*/
memset (buffer,0,sizeof(buffer));
memset (buffer1,0,sizeof(buffer1));
/*
* Recompute data bytes whose value is
* greater than 128 (0x80) which are in two
* bytes.
*/
cp1 = &names[max_index];
for (cp = cp2 = names;cp <= cp1;cp++,cp2++){
if ((*cp & 0x80) == 0x80) {
*cp2 = *(cp+1) +0x80;
cp++;
max_index--;
}
else *cp2 = *cp;
}
/*
* format the buffer using numeric string in dot notation.
*/
for (i=0;i<max_index;i++)
sprintf (&buffer[strlen(buffer)],"%1u.",(unsigned char)names[i]);
sprintf (&buffer[strlen(buffer)],"%1u",(unsigned char)names[i]);
/*
* open the MIB compiled file
*/
if ((fp = fopen ("snmpinfo.dat","r")) == NULL) {
strcpy (line,"error opening file snmpinfo.dat");
perror (line);
exit(0);
}
/*
* Read the file until found or end of file
*/
while (!(feof(fp))){
memset (line,0,sizeof(line));
if (fgets(line,sizeof(line),fp) == NULL) break;
/*
* Skip comments in file.
*/
cp = line;
for (;*cp == ' ';cp++);
if ((strcmp (cp,"/*") == 0) && (*cp == '/'))comments = TRUE;
/*
* check for end of comments in line.
*/
cp1 = strstr (cp,"*/");
if (cp1 != NULL) {
cp = cp1 + 2;
comments = FALSE;
}
if (*cp == 0) continue;
if (comments) continue;
/*
* Locate open and close parenthesis
*/
if (strcmp (cp,"(") == 0) comments = TRUE;
cp1 = strchr (cp,')');
if (cp1 != NULL) {
cp = cp1 + 1;
comments = FALSE;
}
if (comments) continue;
/*
* Locate the first numeric digit inside the line
* and replace the first blank by a null character.
*/
cp = strchr(line,' ');
if (cp == NULL) continue;
cp = strpbrk (cp,"1234567890");
if (cp == NULL) continue;
if (strchr (cp,' ') == NULL) continue;
*strchr(cp,' ') = 0;
/*
* If the numeric notation is contained
* inside the line read, exit loop.
*/
if (strnmatch(buffer,cp,strlen(cp)) > match){
if ((strnmatch(buffer,cp,strlen(cp)) == strlen(cp)) &&
((buffer[strnmatch(buffer,cp,strlen(cp))] == '.') ||
(buffer[strnmatch(buffer,cp,strlen(cp))] == 0)))
match = strlen(cp);
else continue;
*strchr(line,' ') = 0;
strcat(buffer1,line);
/*
* save line into matching line.
*/
cp = cp + strlen(cp) + 1;
strcpy (saved_line,cp);
if (match != strlen(buffer))
strcat(buffer1,".");
}
if (match == strlen(buffer)) break;
} /* end while */
fclose(fp);
strcat (buffer1,&buffer[match+1]);
free(names);
return (buffer1);
}
/*
** find_object
** Locates from SNMP data file the matching string equal to the object
** string, translates the ASCII numeric digits into an ASN.1 notation
** and returns the number of bytes of the translated buffer.
** Inputs : object : the SNMP identifier (ASCII string).
** idents : the address of a character pointer that will receive
** the start of the allocated buffer.
** Returns: the number of effictive bytes of the allocated buffer.
*/
int find_object (char *object, unsigned char **idents) {
char line [256];
char ascii_values[40];
char object_name[256];
char *cp, *cp1;
unsigned char *cp2, *cp3;
char **cp4,*cp5;
BOOLEAN comments;
unsigned char value;
int i = 0, match, object_id =0;
int object_max=0;
FILE *fp;
/*
* Initialize all variables.
*/
*idents = NULL;
memset (ascii_values,0,sizeof(ascii_values));
strcpy (object_name,object);
cp4 = malloc (30*sizeof(char *));
cp = object_name;
object_max = 0;
/*
* Separate ASCII identifiers from numeric digits.
*/
do {
if (isdigit (*cp) == 0) { /* non digit character */
cp5 = strchr (cp,'.');
if (cp5 != NULL) {
*cp5 = 0;
cp4[object_max] = cp;
cp = cp5+1;
object_max++;
}
else cp4[object_max] = cp;
}
}while ((cp5 != NULL) && (isdigit (*cp) == 0));
if (isdigit (*cp) == 0)
cp5 = cp + strlen(cp);
else {
object_max--;
cp5 = cp;
}
/*
* open the MIB compiled file
*/
if ((fp = fopen ("snmpinfo.dat","r")) == NULL) {
strcpy (line,"error opening file snmpinfo.dat");
perror (line);
exit(0);
}
/*
* Read the file until found or end of file
*/
while ((!(feof(fp))) && (object_id <= object_max)){
memset (line,0,sizeof(line));
if (fgets(line,sizeof(line),fp) == NULL) break;
/*
* Skip comments in file.
*/
cp = line;
for (;*cp == ' ';cp++);
if ((strcmp (cp,"/*") == 0) && (*cp == '/'))comments = TRUE;
/*
* check for end of comments in line.
*/
cp1 = strstr (cp,"*/");
if (cp1 != NULL) {
cp = cp1 + 2;
comments = FALSE;
}
if (*cp == 0) continue;
if (comments) continue;
/*
* Lowercase the identifier
*/
lower(line,' ');
/*
* Compare the Object Identifier in file with the searched one.
*/
if (strncmp(line,cp4[object_id], strlen(cp4[object_id])) == 0) {
cp = strchr(line,' ');
cp = strpbrk (cp,"1234567890");
if (cp == NULL) continue;
*strchr (cp,' ') = 0;
/*
* If the numeric notation is contained
* inside the line read, exit loop.
*/
match = strnmatch(ascii_values,cp,strlen(ascii_values));
if (match == strlen(ascii_values))
strcat(ascii_values,&cp[match]);
object_id++;
}/* end if strstr */
else continue;
} /* end while */
/*
* If at end-of-file, the translation between an object name
* and object identifier has not been found. Return 0 as the
* size of object.
*/
free(cp4);
if (feof(fp)) {
fclose (fp);
return (0);
}
fclose(fp);
/*
* Append a dot to the numeric buffer if there is a numeric
* digit passed to this routine in an Object Identifier.
* (example : ipRouteDest.16.189.144.0)
*/
if ((strcmp(object_name,cp5) != 0) && ( *cp5 != 0))
strcat(ascii_values,".");
strcat (ascii_values,cp5);
/*
* Setup the numeric values according to ASN.1 rules.
*/
value = 0;
*idents = malloc (50);
cp2 = cp3 = *idents;
for (cp1 = ascii_values;*cp1!=0;cp1++)
if (*cp1 == '.') {
if (value >= 0x80) {
*cp2 = 0x81;
cp2++;
*cp2 = value - 0x80;
}
else *cp2 = value;
cp2++;
value = 0;
}
else value = value*10 + *cp1 - '0';
if (value >= 0x80) {
*cp2 = 0x81;
cp2++;
*cp2 = value - 0x80;
}
else *cp2 = value;
*cp3 = (*cp3)*40+*(cp3+1);
for (cp3 = cp3+1,i=1; cp3 <cp2;cp3++,i++)
*cp3 = *(cp3 + 1);
/*
* If the object identifier is a Leaf and
* no numeric digits was appended to the object
* identifier, then append a trailing null byte.
*/
cp = cp +strlen(cp) + 1;
if ((strstr(cp,"nonLeaf") == NULL) &&
(*cp5 == 0)){
*cp3 = 0;
i++;
}
/*
* Last check. Return an error if the identifier is
* not accessible.
*/
if (strstr(cp,"not-accessible") != NULL) i = -1;
return (i);
}
/*
** set_object
** Locates from SNMP data file the matching string equal to the object
** string, translates the ASCII numeric digits into an ASN.1 notation
** and returns the number of bytes of the translated buffer.Also appends
** in the buffer the value to be set of the Object Identifier.
** Inputs : object : the SNMP identifier (ASCII string).
** object_value : the ASCII string of the new value to be set.
** idents : the address of a character pointer that will receive
** the start of the allocated buffer.
** Output : len : receives the effective length of the allocated buffer.
** Returns: the number of bytes of the identifier inside the allocated buffer.
*/
int set_object (char *object, char *object_value,
unsigned char **idents,unsigned int *len) {
char line [256];
char ascii_values[40];
char object_name[256];
char *cp, *cp1;
unsigned char *cp2, *cp3;
char **cp4,*cp5;
BOOLEAN comments;
unsigned char value;
int i = 0, match, object_id =0;
int object_max=0;
FILE *fp;
/*
* Initialize all variables.
*/
*idents = NULL;
memset (ascii_values,0,sizeof(ascii_values));
strcpy (object_name,object);
cp4 = malloc (30*sizeof(char *));
cp = object_name;
object_max = 0;
/*
* Separate ASCII identifiers from numeric digits.
*/
do {
if (isdigit (*cp) == 0) { /* non digit character */
cp5 = strchr (cp,'.');
if (cp5 != NULL) {
*cp5 = 0;
cp4[object_max] = cp;
cp = cp5+1;
object_max++;
}
else cp4[object_max] = cp;
}
}while ((cp5 != NULL) && (isdigit (*cp) == 0));
if (isdigit (*cp) == 0)
cp5 = cp + strlen(cp);
else {
object_max--;
cp5 = cp;
}
/*
* open the MIB compiled file
*/
if ((fp = fopen ("snmpinfo.dat","r")) == NULL) {
strcpy (line,"error opening file snmpinfo.dat");
perror (line);
exit(0);
}
/*
* Read the file until found or end of file
*/
while ((!(feof(fp))) && (object_id <= object_max)){
memset (line,0,sizeof(line));
if (fgets(line,sizeof(line),fp) == NULL) break;
/*
* Skip comments in file.
*/
cp = line;
for (;*cp == ' ';cp++);
if ((strcmp (cp,"/*") == 0) && (*cp == '/'))comments = TRUE;
/*
* check for end of comments in line.
*/
cp1 = strstr (cp,"*/");
if (cp1 != NULL) {
cp = cp1 + 2;
comments = FALSE;
}
if (*cp == 0) continue;
if (comments) continue;
/*
* Lowercase the identifier
*/
lower(line,' ');
/*
* Compare the Object Identifier in file with the searched one.
*/
if (strstr(line,cp4[object_id]) != NULL) {
cp = strchr(line,' ');
cp = strpbrk (cp,"1234567890");
if (cp == NULL) continue;
*strchr (cp,' ') = 0;
/*
* If the numeric notation is contained
* inside the line read, exit loop.
*/
match = strnmatch(ascii_values,cp,strlen(ascii_values));
if (match == strlen(ascii_values))
strcat(ascii_values,&cp[match]);
object_id++;
}/* end if strstr */
else continue;
} /* end while */
/*
* If at end-of-file, the translation between an object name
* and object identifier has not been found. Return 0 as the
* size of object.
*/
free(cp4);
if (feof(fp)) {
fclose (fp);
return (0);
}
/*
* Append a dot to the numeric buffer if there is a numeric
* digit passed to this routine in an Object Identifier.
* (example : ipRouteDest.16.189.144.0)
*/
if ((strcmp(object_name,cp5) != 0) && ( *cp5 != 0))
strcat(ascii_values,".");
strcat(ascii_values,cp5);
/*
* Setup the numeric values according to ASN.1 rules.
*/
value = 0;
*idents = malloc (50);
cp2 = cp3 = *idents;
for (cp1 = ascii_values;*cp1!=0;cp1++)
if (*cp1 == '.') {
if (value >= 0x80) {
*cp2 = 0x81;
cp2++;
*cp2 = value - 0x80;
}
else *cp2 = value;
cp2++;
value = 0;
}
else value = value*10 + *cp1 - '0';
*cp2 = value;
*cp3 = (*cp3)*40+*(cp3+1);
for (cp3 = cp3+1,i=1; cp3 <cp2;cp3++,i++)
*cp3 = *(cp3 + 1);
cp = cp +strlen(cp) + 1;
/*
* If the object identifier is a Leaf and
* no numeric digits was appended to the object
* identifier, then append a trailing null byte.
*/
if ((strstr(cp,"nonLeaf") == NULL) &&
(*cp5 == 0)){
*cp3++ = 0;
i++;
}
/*
* If the identifier is not read/write then returns
* an error.
*/
if (strstr(cp,"read-write") == NULL) return(-1);
/*
* Add the object identifier value to be set.
*/
if ((strstr(cp,"DisplayString") != NULL) ||
(strstr(cp,"OctetString") != NULL)) {
*cp3++ = OCTET_STRING;
*cp3++ = strlen(object_value);
strncpy((char *)cp3,object_value,strlen(object_value));
*len =i + 2 + strlen(object_value);
}
if (strstr(cp,"INTEGER") != NULL){
int value;
unsigned int l;
sscanf(object_value,"%d",&value);
*cp3++ = INTEGER;
cp2 = cp3;
cp3++;
l = 0;
do {
*cp3++= value&0xFF;
value = ((value&0xFFFFFF00) >> 8);
l++;
} while (value > 0);
*cp2 = l;
*len = i + l + 2;
}
if ((strstr(cp,"NetworkAddress") != NULL) ||
(strstr(cp,"IpAddress") != NULL)){
unsigned long value;
unsigned int l;
value = get_ia(object_value);
if (value == -1) {
fclose(fp);
return (-2);
}
*cp3++ = IpAddress+(APPLICATION<<6);
*cp3++ = sizeof(unsigned long);
for (l=0;l<sizeof(unsigned long);l++) {
*cp3++= value&0xFF;
value = ((value&0xFFFFFF00) >> 8);
}
*len = i + 6;
}
if (strstr(cp,"Gauge") != NULL){
unsigned int value;
unsigned int l;
sscanf(object_value,"%u",&value);
*cp3++ = Gauge+(APPLICATION<<6);
cp2 = cp3;
cp3++;
l = 0;
do {
*cp3++= value&0xFF;
value = ((value&0xFFFFFF00) >> 8);
l++;
} while (value > 0);
*cp2 = l;
*len = i + l + 2;
}
fclose(fp);
return (i);
}
/*
** interpret
** Interpret an SNMP coded buffer into readable ASCII data.
** Inputs : the buffer.
** Outputs : none
*/
void interpret (unsigned char *buffer){
unsigned char *cp;
int length;
int number_of_ints = 0,integer_value;
unsigned int unsigned_value;
identifier_t *ident;
int i,number_of_spaces = 0;
char spaces[3] = " ";
int added_size;
int number_of_length_octets;
int size;
char *names;
char *error_table[] = {"noError","tooBig","noSuchName",
"badValue","readOnly","genErr"};
/*
* first determine size of whole packet.
*/
cp = buffer;
cp++;
size = 0;
added_size = 1;
if ((*cp & 0x80) == 0x80){
added_size = *cp & 0x3f;
cp++;
}
for (i=0;i < added_size; i++){
size = (size<<8) + *cp;
cp++;
}
/*
* decompose buffer
*/
cp = buffer;
while (cp <buffer + size + added_size + 1){
/*
* get type field
*/
ident = (identifier_t *)cp;
for (i = 0; i < number_of_spaces; i++)
printf ("%s",spaces);
/*
* Search matching value
*/
for (i=0;i< sizeof (type_specifier)/sizeof (type_specifier[0]);i++)
if (type_specifier[i].value == *cp) break;
switch(ident->class) {
case CONTEXT_SPECIFIC:
printf ("[CONTEXT %2d]",ident->tag);
break;
case APPLICATION :
printf ("[APPLICATION %2d]",ident->tag);
break;
case UNIVERSAL :
printf ("[UNIVERSAL %2d] ",ident->tag);
break;
case PRIVATE:
printf ("[PRIVATE %2d]",ident->tag);
}/* end switch */
/*
* Display the ASCII type code. (ex: 2 == "INTEGER")
*/
if (i < sizeof (type_specifier)/sizeof (type_specifier[0]))
printf("(%s)",type_specifier[i].type);
if (ident->P_C == CONSTRUCTOR) {
cp++;
/* determine bytes to skip */
if ((*cp & 0x80) == 0x80)
cp = cp +(*cp & 0x3f);
cp++;
printf ("(\n");
number_of_spaces ++;
} /* end then */
else {
cp++;
/*
* cp points to the length octets;
* get length.
*/
length = 0;
number_of_length_octets = 1;
if ((*cp & 0x80) == 0x80){
number_of_length_octets = *cp & 0x3f;
cp++;
}
for (i=0;i <number_of_length_octets;i++){
length = (length<<8) + *cp;
cp++;
}
/*
* Display length of item.
*/
printf ("Length = %d",length);
/*
* Display value of item according to type field.
*/
printf ("; value = ");
switch (*((unsigned char *)ident)) {
case OCTET_STRING :
printf ("%.*s",length,cp);
cp = cp+length;
break;
case OBJECT_IDENTIFIER:
names = calloc (length+1,sizeof (char));
printf ("%1x.",*cp/40);
names [0] = *cp/40;
printf ("%1x.",*cp%40);
names [1] = *cp%40;
cp++;
for (i = 1; i < length ; i++) {
names [1+i] = *cp;
printf ("%1x",*cp);
if (i < length - 1) printf (".");
cp++;
} /* end for */
printf (" (%s)",find_names(names,length));
break;
case INTEGER:
integer_value = 0;
for (i = 0; i < length ; i++) {
integer_value = (integer_value<<8) + *cp;
cp++;
} /* end for */
printf ("%d",integer_value);
switch (number_of_ints) {
case 0 : printf (" (snmp version)");
break;
case 1 : printf (" (Request ID)");
break;
case 2 : printf (" (Error status = %s)",
error_table[integer_value]);
break;
case 3 : printf (" (Error Index)");
}
number_of_ints++;
break;
case IpAddress+(APPLICATION<<6):
printf ("%s",format_ia(*((unsigned int *)cp)));
cp = cp+length;
break;
case Counter+(APPLICATION<<6):
case Gauge+(APPLICATION<<6):
case TimeTicks+(APPLICATION<<6):
unsigned_value = 0;
for (i = 0; i < length ; i++) {
unsigned_value = (unsigned_value<<8) + *cp;
cp++;
} /* end for */
printf ("%u",unsigned_value);
break;
case Opaque+(APPLICATION<<6):
interpret(cp);
cp = cp+length;
break;
default:
for (i = 0; i < length ; i++) {
printf ("%1x",*cp);
if (i < length - 1) printf (".");
cp++;
} /* end for */
}/* end switch */
printf ("\n");
} /* end else */
}
}
/*
** GetRequest
** This highlevel routine sets up an SNMP buffer for the get function.
** Inputs : argc : count of arguments in line.
** argv : pointer to an array of pointers to command line
** arguments.
** Returns: SNMP allocated buffer.
*/
unsigned char *GetRequest (int argc,char **argv) {
int i,j;
unsigned char *buffer;
unsigned int length;
int remainder,divider;
int size_object;
unsigned char *cp,*cp1;
unsigned int *request_id;
unsigned char *objects;
buffer = malloc(2*DATASIZ);
length = 0;
/* The buffer is filled from the end. */
cp = buffer+(2*DATASIZ)-1;
for (i=argc-1; i>0;i--) {
*cp-- = 0;
*cp-- = NUL;
/* Lowercase object */
lower(argv[i],0);
/* get object identifier in binary format */
size_object = find_object (argv[i], &cp1);
if (size_object == 0) {
printf ("%%SNMP-F-NOSUCHOBJ, no such object %s\n",argv[i]);
free(buffer);
free (cp1);
return (NULL);
}
if (size_object == -1) {
printf ("%%SNMP-F-NOACCESS, no access to object %s\n",argv[i]);
free(buffer);
free (cp1);
return (NULL);
}
else
for (j=size_object-1;j>=0;j--) *cp-- = cp1[j];
free (cp1);
cp = insert_length (cp,size_object);
*cp-- = OBJECT_IDENTIFIER;
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp-- = SEQUENCE;
}/* end for */
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp-- = SEQUENCE;
*cp-- = 0; /* Error index */
*cp-- = 1;
*cp-- = INTEGER;
*cp-- = 0; /* Error status */
*cp-- = 1;
*cp-- = INTEGER;
cp = cp - sizeof (int) + 1;
request_id = (unsigned int *)cp;
*request_id-- = 0x1CB50E7E;
cp--;
*cp-- = sizeof(int);
*cp-- = INTEGER;
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp-- = GETREQUEST + 32 + (CONTEXT_SPECIFIC<<6);
/* Fetch community */
cp = cp - strlen(argv[0]) + 1;
strncpy ((char *)cp,argv[0],strlen(argv[0]));
cp--;
cp = insert_length (cp,strlen(argv[0]));
*cp-- = OCTET_STRING;
*cp-- = 0; /* snmp version */
*cp-- = 1;
*cp-- = INTEGER;
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp = SEQUENCE;
length = (int)buffer + 2*DATASIZ - (int)cp;
memcpy (buffer,cp,length);
return (buffer);
}
/*
** ExitCommand
** This highlevel routine causes an exit of the application by setting
** main variable keep_going to FALSE.
** Inputs : argc : count of arguments in line.
** argv : pointer to an array of pointers to command line
** arguments.
** Returns: SNMP allocated buffer.
*/
unsigned char *ExitCommand(int argc,char **argv) {
keep_going--;
return(NULL);
}
/*
** Help
** This highlevel routine causes an exit of the application by setting
** main variable keep_going to FALSE.
** Inputs : argc : count of arguments in line.
** argv : pointer to an array of pointers to command line
** arguments.
** Returns: SNMP allocated buffer.
*/
unsigned char *Help(int argc,char **argv) {
printf ("Available commands :\n");
printf (" get\n");
printf (" getnext\n");
printf (" set\n");
printf (" exit\n");
printf (" help\n\n");
printf (" For get, getnext and set : Syntax :\n");
printf (" \tget/getNext hostname community object1 [objectn]\n");
printf (" \tset hostname community object1 value1 [objectn valuen]\n");
return(NULL);
}
/*
** GetNextRequest
** This highlevel routine sets up an SNMP buffer for the getnext function.
** Inputs : argc : count of arguments in line.
** argv : pointer to an array of pointers to command line
** arguments.
** Returns: SNMP allocated buffer.
*/
unsigned char *GetNextRequest (int argc,char **argv) {
int i,j;
unsigned char *buffer;
unsigned int length;
int remainder,divider;
int size_object;
unsigned char *cp,*cp1;
unsigned int *request_id;
unsigned char *objects;
buffer = malloc(2*DATASIZ);
length = 0;
/* The buffer is filled from the end. */
cp = buffer+(2*DATASIZ)-1;
for (i=argc-1; i>0;i--) {
*cp-- = 0;
*cp-- = NUL;
/* Lowercase object */
lower(argv[i],0);
/* get object identifier in binary format */
size_object = find_object (argv[i], &cp1);
if (size_object == 0) {
printf ("%%SNMP-F-NOSUCHOBJ, no such object %s\n",argv[i]);
free(buffer);
free (cp1);
return (NULL);
}
if (size_object == -1) {
printf ("%%SNMP-F-NOACCESS, no access to object %s\n",argv[i]);
free(buffer);
free (cp1);
return (NULL);
}
else
for (j=size_object-1;j>=0;j--) *cp-- = cp1[j];
free (cp1);
cp = insert_length (cp,size_object);
*cp-- = OBJECT_IDENTIFIER;
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp-- = SEQUENCE;
}/* end for */
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp-- = SEQUENCE;
*cp-- = 0; /* Error index */
*cp-- = 1;
*cp-- = INTEGER;
*cp-- = 0; /* Error status */
*cp-- = 1;
*cp-- = INTEGER;
cp = cp - sizeof (int) + 1;
request_id = (unsigned int *)cp;
*request_id-- = 0x1CB50E7E;
cp--;
*cp-- = sizeof(int);
*cp-- = INTEGER;
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp-- = GETNEXTREQUEST + 32 + (CONTEXT_SPECIFIC<<6);
/* Fetch community */
cp = cp - strlen(argv[0]) + 1;
strncpy ((char *)cp,argv[0],strlen(argv[0]));
cp--;
cp = insert_length (cp,strlen(argv[0]));
*cp-- = OCTET_STRING;
*cp-- = 0; /* snmp version */
*cp-- = 1;
*cp-- = INTEGER;
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp = SEQUENCE;
length = (int)buffer + 2*DATASIZ - (int)cp;
memcpy (buffer,cp,length);
return (buffer);
}
/*
** SetRequest
** This highlevel routine sets up an SNMP buffer for the set function.
** Inputs : argc : count of arguments in line.
** argv : pointer to an array of pointers to command line
** arguments.
** Returns: SNMP allocated buffer.
*/
unsigned char *SetRequest (int argc,char **argv) {
int i,j;
unsigned char *buffer;
unsigned int length;
int remainder,divider;
int size_object;
unsigned char *cp,*cp1;
unsigned int total_len;
unsigned int *request_id;
unsigned char *objects;
buffer = malloc(2*DATASIZ);
length = 0;
/* The buffer is filled from the end. */
cp = buffer+(2*DATASIZ)-1;
for (i=argc-2; i>0;i-=2) {
/* Lowercase object */
lower(argv[i],0);
/* get object identifier in binary format */
size_object = set_object (argv[i],argv[i+1], &cp1,&total_len);
switch (size_object) {
case 0:
printf ("%%SNMP-F-NOSUCHOBJ, no such object %s\n",argv[i]);
free(buffer);
free (cp1);
return (NULL);
break;
case -1:
printf ("%%SNMP-F-NOACCESS, no read-write access to object %s\n",argv[i]);
free(buffer);
free (cp1);
return (NULL);
break;
case -2:
printf ("%%SNMP-F-BADVAL, bad value %s\n",argv[i+1]);
free(buffer);
free (cp1);
return (NULL);
break;
default:
for (j=total_len-1;j>=0;j--) *cp-- = cp1[j];
}
free (cp1);
cp = insert_length (cp,size_object);
*cp-- = OBJECT_IDENTIFIER;
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp-- = SEQUENCE;
}/* end for */
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp-- = SEQUENCE;
*cp-- = 0; /* Error index */
*cp-- = 1;
*cp-- = INTEGER;
*cp-- = 0; /* Error status */
*cp-- = 1;
*cp-- = INTEGER;
cp = cp - sizeof (int) + 1;
request_id = (unsigned int *)cp;
*request_id-- = 0x1CB50E7E;
cp--;
*cp-- = sizeof(int);
*cp-- = INTEGER;
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp-- = SETREQUEST + 32 + (CONTEXT_SPECIFIC<<6);
/* Fetch community */
cp = cp - strlen(argv[0]) + 1;
strncpy ((char *)cp,argv[0],strlen(argv[0]));
cp--;
cp = insert_length (cp,strlen(argv[0]));
*cp-- = OCTET_STRING;
*cp-- = 0; /* snmp version */
*cp-- = 1;
*cp-- = INTEGER;
length = (int)buffer + 2*DATASIZ - (int)cp;
cp = insert_length (cp,length-1);
*cp = SEQUENCE;
length = (int)buffer + 2*DATASIZ - (int)cp;
memcpy (buffer,cp,length);
return (buffer);
}
#ifdef __VMS
unsigned long screen_setup()
{
/*
* Returns a keyboard id for a pasteboard
*/
int kbdid,stat;
stat = smg$create_virtual_keyboard(&kbdid,0,0,0);
if (!(stat&1)) lib$stop(stat);
return (kbdid);
}
int parse (char *line_buff,int length,
struct dispatch_table_type dispatch_table[],
unsigned int *call_args)
{
int i,j,k;
int matching_entry;
char *verb;
int keyword_length;
BOOLEAN match_found;
BOOLEAN in_quotes = FALSE;
for (i=0;i<length;i++) {
if (line_buff[i] == '"') {
in_quotes = !in_quotes;
}
else {
if (!in_quotes) {
if ((line_buff[i] == ' ') || (line_buff[i] == '\t'))
line_buff [i] = '\0';
}
}
}
while (*line_buff == '\0'){ *line_buff++; length--;}
match_found = FALSE;
keyword_length = strlen (line_buff);
matching_entry = MAX_ENTRIES;
for (j=0;j<MAX_ENTRIES;j++) {
if (strncmp (line_buff,dispatch_table[j].command,keyword_length) == 0) {
if (keyword_length == strlen (dispatch_table[j].command)) {
matching_entry = j;
break; /* an exact match */
}
if (match_found) {
printf ("%%SNMP-W-AMVERB, ambiguous command verb - supply more characters");
return (-1);
}
else {
matching_entry = j;
match_found = TRUE;
}
}
}
k = i = 0;
length = length - strlen (line_buff);
verb = line_buff;
line_buff = line_buff + strlen (line_buff);
if (matching_entry <MAX_ENTRIES) {
call_args [0] = (unsigned int) dispatch_table[matching_entry].routine;
while (i< length) {
if (*line_buff =='\0'){
i++; line_buff++;
}
else {
if (k == MAX_NBR_PARAMS) {
printf ("%%SNMP-W-MAXPARM, too many parameters - reenter command with fewer parameters");
return(-1);
}
k++;
call_args[3] = (unsigned int)&call_args[FIRST_COMMAND_ARG];
call_args[3+k] = (unsigned int)line_buff;
i = i +strlen (line_buff);
line_buff = line_buff +strlen (line_buff);
}
}/* end while */
call_args[1] = 2;
call_args[2] = k;
return (0);
}
return (-1);
}
int main(){
int argc;
char **argv;
$DESCRIPTOR (prompt,"SNMP> ");
unsigned long keyboard_id;
short len;
struct dsc$descriptor_s command_desc;
char string[SCREENWIDTH+1];
unsigned int call_args[MAX_NBR_PARAMS+FIRST_COMMAND_ARG];
#else
int main(int argc,char **argv){
int keyword_length,matching_entry,j;
#endif
int ia, status, remote_address;
struct hostent *hp;
char *hostname =NULL;
unsigned char *buffer;
unsigned char *(*dispatch)();
struct dispatch_table_type dispatch_table[]= {
"get",GetRequest,
"getnext",GetNextRequest,
"set",SetRequest,
"exit",ExitCommand,
"help",Help,
"?",Help};
unsigned char *buffer1;
#ifdef __VMS
keyboard_id = screen_setup();
while (keep_going){
cont:;
/*
** Setup the CLASS S descriptor.
*/
command_desc.dsc$w_length = SCREENWIDTH;
command_desc.dsc$b_dtype = DSC$K_DTYPE_T;
command_desc.dsc$b_class = DSC$K_CLASS_S;
command_desc.dsc$a_pointer = string;
status = smg$read_composed_line(&keyboard_id,NULL,&command_desc,
&prompt,&len,NULL,NULL,NULL,
NULL,NULL,NULL,NULL);
if (!(status & 1)) break;
status = parse (string,len+1,dispatch_table,call_args);
if (status != -1)
dispatch = (unsigned char *(*)()) call_args[0];
else {
printf ("%%SNMP-F-UNRECOG, unrecognized command\n");
goto cont;
}
argc = (int) call_args[2];
argv = (char **)call_args[3];
#else
argc -= 2;
argv++;
#endif
if ((argc <3)
#ifdef __VMS
&& ((call_args[0] != (unsigned int) dispatch_table[3].routine) &&
(call_args[0] != (unsigned int) dispatch_table[4].routine))
#endif
) {
printf ("%%SNMP-F-TOOFEWARGS, Too few arguments\n");
#ifdef __VMS
goto cont;
#else
exit(0);
#endif
}
#ifndef __VMS
keyword_length = strlen (argv[0]);
matching_entry = MAX_ENTRIES;
for (j=0;j<MAX_ENTRIES;j++)
if (strncmp (argv[0],dispatch_table[j].command,keyword_length) == 0)
if (keyword_length == strlen (dispatch_table[j].command)) {
matching_entry = j;
break; /* an exact match */
}
if (matching_entry <MAX_ENTRIES)
dispatch = dispatch_table[matching_entry].routine;
else {
printf ("%%SNMP-F-UNRECOG, unrecognized command\n");
exit(0);
}
argv++;
#endif
if (argc > 1){
ia = (int) inet_addr(argv[0]);
if ( ia == -1) {
hp = gethostbyname(argv[0]);
if (hp) {
memcpy((char *)&ia,(char *)*hp->h_addr_list,
hp->h_length);
hostname = hp->h_name;
}
else {
printf("%%SNMP-F-NOSUCHHOST, Unknown host %s\n",argv[0]);
#ifdef __VMS
goto cont;
#else
exit(0);
#endif
}
}
else hostname = 0;
remote_address = ia;
}
argc--; argv++;
buffer = dispatch (argc,argv);
if (buffer != NULL) {
printf ("***** buffer sent : *****\n");
interpret (buffer);
if ((status = exchange_data(remote_address,0,buffer)) == 0) {
printf ("***** buffer received : *****\n");
interpret (buffer);
}
else switch (status) {
case -1 : printf ("%%SNMP-F-UDPERR, UDP error\n");
break;
case -2 : printf ("%%SNMP-F-TMO, no answer from agent\n");
}
free (buffer);
}
#ifdef __VMS
}/* end keep_going */
#endif
}/* end main */
T.R | Title | User | Personal Name | Date | Lines |
---|
5355.1 | SNMPINFO.DAT | AUBER::VOUTERS | Philippe VOUTERS, Evry (France) | Wed Mar 19 1997 04:09 | 2795 |
| /*
*
* Copyright (C) 1994 by SNMP Research, Incorporated.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the
* inclusion of the above copyright notice. This software or any other
* copies thereof may not be provided or otherwise made available to any
* other person. No title to and ownership of the software is hereby
* transferred.
*
* The information in this software is subject to change without notice
* and should not be construed as a commitment by SNMP Research, Incorporated.
*
* Restricted Rights Legend:
* Use, duplication, or disclosure by the Government is subject to
* restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS 52.227-7013
* and in similar clauses in the FAR and NASA FAR Supplement.
*
*/
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
directory 1.3.6.1.1 nonLeaf
mgmt 1.3.6.1.2 nonLeaf
mib_2 1.3.6.1.2.1 nonLeaf
system 1.3.6.1.2.1.1 nonLeaf
sysDescr 1.3.6.1.2.1.1.1 OctetString read-only
sysObjectID 1.3.6.1.2.1.1.2 ObjectID read-only
sysUpTime 1.3.6.1.2.1.1.3 TimeTicks read-only
sysContact 1.3.6.1.2.1.1.4 OctetString read-write
sysName 1.3.6.1.2.1.1.5 OctetString read-write
sysLocation 1.3.6.1.2.1.1.6 OctetString read-write
sysServices 1.3.6.1.2.1.1.7 INTEGER read-only
interfaces 1.3.6.1.2.1.2 nonLeaf
ifNumber 1.3.6.1.2.1.2.1 INTEGER read-only
ifTable 1.3.6.1.2.1.2.2 Aggregate not-accessible
ifEntry 1.3.6.1.2.1.2.2.1 Aggregate not-accessible
ifIndex 1.3.6.1.2.1.2.2.1.1 INTEGER read-only
ifDescr 1.3.6.1.2.1.2.2.1.2 OctetString read-only
ifType 1.3.6.1.2.1.2.2.1.3 INTEGER read-only
(
1 other
2 regular1822
3 hdh1822
4 ddn-x25
5 rfc877-x25
6 ethernet-csmacd
7 iso88023-csmacd
8 iso88024-tokenBus
9 iso88025-tokenRing
10 iso88026-man
11 starLan
12 proteon-10Mbit
13 proteon-80Mbit
14 hyperchannel
15 fddi
16 lapb
17 sdlc
18 ds1
19 e1
20 basicISDN
21 primaryISDN
22 propPointToPointSerial
23 ppp
24 softwareLoopback
25 eon
26 ethernet-3Mbit
27 nsip
28 slip
29 ultra
30 ds3
31 sip
32 frame-relay
)
ifMtu 1.3.6.1.2.1.2.2.1.4 INTEGER read-only
ifSpeed 1.3.6.1.2.1.2.2.1.5 Gauge read-only
ifPhysAddress 1.3.6.1.2.1.2.2.1.6 OctetString read-only
ifAdminStatus 1.3.6.1.2.1.2.2.1.7 INTEGER read-write
(
1 up
2 down
3 testing
)
ifOperStatus 1.3.6.1.2.1.2.2.1.8 INTEGER read-only
(
1 up
2 down
3 testing
)
ifLastChange 1.3.6.1.2.1.2.2.1.9 TimeTicks read-only
ifInOctets 1.3.6.1.2.1.2.2.1.10 Counter read-only
ifInUcastPkts 1.3.6.1.2.1.2.2.1.11 Counter read-only
ifInNUcastPkts 1.3.6.1.2.1.2.2.1.12 Counter read-only
ifInDiscards 1.3.6.1.2.1.2.2.1.13 Counter read-only
ifInErrors 1.3.6.1.2.1.2.2.1.14 Counter read-only
ifInUnknownProtos 1.3.6.1.2.1.2.2.1.15 Counter read-only
ifOutOctets 1.3.6.1.2.1.2.2.1.16 Counter read-only
ifOutUcastPkts 1.3.6.1.2.1.2.2.1.17 Counter read-only
ifOutNUcastPkts 1.3.6.1.2.1.2.2.1.18 Counter read-only
ifOutDiscards 1.3.6.1.2.1.2.2.1.19 Counter read-only
ifOutErrors 1.3.6.1.2.1.2.2.1.20 Counter read-only
ifOutQLen 1.3.6.1.2.1.2.2.1.21 Gauge read-only
ifSpecific 1.3.6.1.2.1.2.2.1.22 ObjectID read-only
at 1.3.6.1.2.1.3 nonLeaf
atTable 1.3.6.1.2.1.3.1 Aggregate not-accessible
atEntry 1.3.6.1.2.1.3.1.1 Aggregate not-accessible
atIfIndex 1.3.6.1.2.1.3.1.1.1 INTEGER read-write
atPhysAddress 1.3.6.1.2.1.3.1.1.2 OctetString read-write
atNetAddress 1.3.6.1.2.1.3.1.1.3 NetworkAddress read-write
ip 1.3.6.1.2.1.4 nonLeaf
ipForwarding 1.3.6.1.2.1.4.1 INTEGER read-write
(
1 forwarding
2 not-forwarding
)
ipDefaultTTL 1.3.6.1.2.1.4.2 INTEGER read-write
ipInReceives 1.3.6.1.2.1.4.3 Counter read-only
ipInHdrErrors 1.3.6.1.2.1.4.4 Counter read-only
ipInAddrErrors 1.3.6.1.2.1.4.5 Counter read-only
ipForwDatagrams 1.3.6.1.2.1.4.6 Counter read-only
ipInUnknownProtos 1.3.6.1.2.1.4.7 Counter read-only
ipInDiscards 1.3.6.1.2.1.4.8 Counter read-only
ipInDelivers 1.3.6.1.2.1.4.9 Counter read-only
ipOutRequests 1.3.6.1.2.1.4.10 Counter read-only
ipOutDiscards 1.3.6.1.2.1.4.11 Counter read-only
ipOutNoRoutes 1.3.6.1.2.1.4.12 Counter read-only
ipReasmTimeout 1.3.6.1.2.1.4.13 INTEGER read-only
ipReasmReqds 1.3.6.1.2.1.4.14 Counter read-only
ipReasmOKs 1.3.6.1.2.1.4.15 Counter read-only
ipReasmFails 1.3.6.1.2.1.4.16 Counter read-only
ipFragOKs 1.3.6.1.2.1.4.17 Counter read-only
ipFragFails 1.3.6.1.2.1.4.18 Counter read-only
ipFragCreates 1.3.6.1.2.1.4.19 Counter read-only
ipAddrTable 1.3.6.1.2.1.4.20 Aggregate not-accessible
ipAddrEntry 1.3.6.1.2.1.4.20.1 Aggregate not-accessible
ipAdEntAddr 1.3.6.1.2.1.4.20.1.1 IpAddress read-only
ipAdEntIfIndex 1.3.6.1.2.1.4.20.1.2 INTEGER read-only
ipAdEntNetMask 1.3.6.1.2.1.4.20.1.3 IpAddress read-only
ipAdEntBcastAddr 1.3.6.1.2.1.4.20.1.4 INTEGER read-only
ipAdEntReasmMaxSize 1.3.6.1.2.1.4.20.1.5 INTEGER read-only
ipRouteTable 1.3.6.1.2.1.4.21 Aggregate not-accessible
ipRouteEntry 1.3.6.1.2.1.4.21.1 Aggregate not-accessible
ipRouteDest 1.3.6.1.2.1.4.21.1.1 IpAddress read-write
ipRouteIfIndex 1.3.6.1.2.1.4.21.1.2 INTEGER read-write
ipRouteMetric1 1.3.6.1.2.1.4.21.1.3 INTEGER read-write
ipRouteMetric2 1.3.6.1.2.1.4.21.1.4 INTEGER read-write
ipRouteMetric3 1.3.6.1.2.1.4.21.1.5 INTEGER read-write
ipRouteMetric4 1.3.6.1.2.1.4.21.1.6 INTEGER read-write
ipRouteNextHop 1.3.6.1.2.1.4.21.1.7 IpAddress read-write
ipRouteType 1.3.6.1.2.1.4.21.1.8 INTEGER read-write
(
1 other
2 invalid
3 direct
4 indirect
)
ipRouteProto 1.3.6.1.2.1.4.21.1.9 INTEGER read-only
(
1 other
2 local
3 netmgmt
4 icmp
5 egp
6 ggp
7 hello
8 rip
9 is-is
10 es-is
11 ciscoIgrp
12 bbnSpfIgp
13 ospf
14 bgp
)
ipRouteAge 1.3.6.1.2.1.4.21.1.10 INTEGER read-write
ipRouteMask 1.3.6.1.2.1.4.21.1.11 IpAddress read-write
ipRouteMetric5 1.3.6.1.2.1.4.21.1.12 INTEGER read-write
ipRouteInfo 1.3.6.1.2.1.4.21.1.13 ObjectID read-only
ipNetToMediaTable 1.3.6.1.2.1.4.22 Aggregate not-accessible
ipNetToMediaEntry 1.3.6.1.2.1.4.22.1 Aggregate not-accessible
ipNetToMediaIfIndex 1.3.6.1.2.1.4.22.1.1 INTEGER read-write
ipNetToMediaPhysAddress 1.3.6.1.2.1.4.22.1.2 OctetString read-write
ipNetToMediaNetAddress 1.3.6.1.2.1.4.22.1.3 IpAddress read-write
ipNetToMediaType 1.3.6.1.2.1.4.22.1.4 INTEGER read-write
(
1 other
2 invalid
3 dynamic
4 static
)
ipRoutingDiscards 1.3.6.1.2.1.4.23 Counter read-only
icmp 1.3.6.1.2.1.5 nonLeaf
icmpInMsgs 1.3.6.1.2.1.5.1 Counter read-only
icmpInErrors 1.3.6.1.2.1.5.2 Counter read-only
icmpInDestUnreachs 1.3.6.1.2.1.5.3 Counter read-only
icmpInTimeExcds 1.3.6.1.2.1.5.4 Counter read-only
icmpInParmProbs 1.3.6.1.2.1.5.5 Counter read-only
icmpInSrcQuenchs 1.3.6.1.2.1.5.6 Counter read-only
icmpInRedirects 1.3.6.1.2.1.5.7 Counter read-only
icmpInEchos 1.3.6.1.2.1.5.8 Counter read-only
icmpInEchoReps 1.3.6.1.2.1.5.9 Counter read-only
icmpInTimestamps 1.3.6.1.2.1.5.10 Counter read-only
icmpInTimestampReps 1.3.6.1.2.1.5.11 Counter read-only
icmpInAddrMasks 1.3.6.1.2.1.5.12 Counter read-only
icmpInAddrMaskReps 1.3.6.1.2.1.5.13 Counter read-only
icmpOutMsgs 1.3.6.1.2.1.5.14 Counter read-only
icmpOutErrors 1.3.6.1.2.1.5.15 Counter read-only
icmpOutDestUnreachs 1.3.6.1.2.1.5.16 Counter read-only
icmpOutTimeExcds 1.3.6.1.2.1.5.17 Counter read-only
icmpOutParmProbs 1.3.6.1.2.1.5.18 Counter read-only
icmpOutSrcQuenchs 1.3.6.1.2.1.5.19 Counter read-only
icmpOutRedirects 1.3.6.1.2.1.5.20 Counter read-only
icmpOutEchos 1.3.6.1.2.1.5.21 Counter read-only
icmpOutEchoReps 1.3.6.1.2.1.5.22 Counter read-only
icmpOutTimestamps 1.3.6.1.2.1.5.23 Counter read-only
icmpOutTimestampReps 1.3.6.1.2.1.5.24 Counter read-only
icmpOutAddrMasks 1.3.6.1.2.1.5.25 Counter read-only
icmpOutAddrMaskReps 1.3.6.1.2.1.5.26 Counter read-only
tcp 1.3.6.1.2.1.6 nonLeaf
tcpRtoAlgorithm 1.3.6.1.2.1.6.1 INTEGER read-only
(
1 other
2 constant
3 rsre
4 vanj
)
tcpRtoMin 1.3.6.1.2.1.6.2 INTEGER read-only
tcpRtoMax 1.3.6.1.2.1.6.3 INTEGER read-only
tcpMaxConn 1.3.6.1.2.1.6.4 INTEGER read-only
tcpActiveOpens 1.3.6.1.2.1.6.5 Counter read-only
tcpPassiveOpens 1.3.6.1.2.1.6.6 Counter read-only
tcpAttemptFails 1.3.6.1.2.1.6.7 Counter read-only
tcpEstabResets 1.3.6.1.2.1.6.8 Counter read-only
tcpCurrEstab 1.3.6.1.2.1.6.9 Gauge read-only
tcpInSegs 1.3.6.1.2.1.6.10 Counter read-only
tcpOutSegs 1.3.6.1.2.1.6.11 Counter read-only
tcpRetransSegs 1.3.6.1.2.1.6.12 Counter read-only
tcpConnTable 1.3.6.1.2.1.6.13 Aggregate not-accessible
tcpConnEntry 1.3.6.1.2.1.6.13.1 Aggregate not-accessible
tcpConnState 1.3.6.1.2.1.6.13.1.1 INTEGER read-write
(
1 closed
2 listen
3 synSent
4 synReceived
5 established
6 finWait1
7 finWait2
8 closeWait
9 lastAck
10 closing
11 timeWait
12 deleteTCB
)
tcpConnLocalAddress 1.3.6.1.2.1.6.13.1.2 IpAddress read-only
tcpConnLocalPort 1.3.6.1.2.1.6.13.1.3 INTEGER read-only
tcpConnRemAddress 1.3.6.1.2.1.6.13.1.4 IpAddress read-only
tcpConnRemPort 1.3.6.1.2.1.6.13.1.5 INTEGER read-only
tcpInErrs 1.3.6.1.2.1.6.14 Counter read-only
tcpOutRsts 1.3.6.1.2.1.6.15 Counter read-only
udp 1.3.6.1.2.1.7 nonLeaf
udpInDatagrams 1.3.6.1.2.1.7.1 Counter read-only
udpNoPorts 1.3.6.1.2.1.7.2 Counter read-only
udpInErrors 1.3.6.1.2.1.7.3 Counter read-only
udpOutDatagrams 1.3.6.1.2.1.7.4 Counter read-only
udpTable 1.3.6.1.2.1.7.5 Aggregate not-accessible
udpEntry 1.3.6.1.2.1.7.5.1 Aggregate not-accessible
udpLocalAddress 1.3.6.1.2.1.7.5.1.1 IpAddress read-only
udpLocalPort 1.3.6.1.2.1.7.5.1.2 INTEGER read-only
egp 1.3.6.1.2.1.8 nonLeaf
egpInMsgs 1.3.6.1.2.1.8.1 Counter read-only
egpInErrors 1.3.6.1.2.1.8.2 Counter read-only
egpOutMsgs 1.3.6.1.2.1.8.3 Counter read-only
egpOutErrors 1.3.6.1.2.1.8.4 Counter read-only
egpNeighTable 1.3.6.1.2.1.8.5 Aggregate not-accessible
egpNeighEntry 1.3.6.1.2.1.8.5.1 Aggregate not-accessible
egpNeighState 1.3.6.1.2.1.8.5.1.1 INTEGER read-only
(
1 idle
2 acquisition
3 down
4 up
5 cease
)
egpNeighAddr 1.3.6.1.2.1.8.5.1.2 IpAddress read-only
egpNeighAs 1.3.6.1.2.1.8.5.1.3 INTEGER read-only
egpNeighInMsgs 1.3.6.1.2.1.8.5.1.4 Counter read-only
egpNeighInErrs 1.3.6.1.2.1.8.5.1.5 Counter read-only
egpNeighOutMsgs 1.3.6.1.2.1.8.5.1.6 Counter read-only
egpNeighOutErrs 1.3.6.1.2.1.8.5.1.7 Counter read-only
egpNeighInErrMsgs 1.3.6.1.2.1.8.5.1.8 Counter read-only
egpNeighOutErrMsgs 1.3.6.1.2.1.8.5.1.9 Counter read-only
egpNeighStateUps 1.3.6.1.2.1.8.5.1.10 Counter read-only
egpNeighStateDowns 1.3.6.1.2.1.8.5.1.11 Counter read-only
egpNeighIntervalHello 1.3.6.1.2.1.8.5.1.12 INTEGER read-only
egpNeighIntervalPoll 1.3.6.1.2.1.8.5.1.13 INTEGER read-only
egpNeighMode 1.3.6.1.2.1.8.5.1.14 INTEGER read-only
(
1 active
2 passive
)
egpNeighEventTrigger 1.3.6.1.2.1.8.5.1.15 INTEGER read-write
(
1 start
2 stop
)
egpAs 1.3.6.1.2.1.8.6 INTEGER read-only
transmission 1.3.6.1.2.1.10 nonLeaf
snmp 1.3.6.1.2.1.11 nonLeaf
snmpInPkts 1.3.6.1.2.1.11.1 Counter read-only
snmpOutPkts 1.3.6.1.2.1.11.2 Counter read-only
snmpInBadVersions 1.3.6.1.2.1.11.3 Counter read-only
snmpInBadCommunityNames 1.3.6.1.2.1.11.4 Counter read-only
snmpInBadCommunityUses 1.3.6.1.2.1.11.5 Counter read-only
snmpInASNParseErrs 1.3.6.1.2.1.11.6 Counter read-only
snmpInTooBigs 1.3.6.1.2.1.11.8 Counter read-only
snmpInNoSuchNames 1.3.6.1.2.1.11.9 Counter read-only
snmpInBadValues 1.3.6.1.2.1.11.10 Counter read-only
snmpInReadOnlys 1.3.6.1.2.1.11.11 Counter read-only
snmpInGenErrs 1.3.6.1.2.1.11.12 Counter read-only
snmpInTotalReqVars 1.3.6.1.2.1.11.13 Counter read-only
snmpInTotalSetVars 1.3.6.1.2.1.11.14 Counter read-only
snmpInGetRequests 1.3.6.1.2.1.11.15 Counter read-only
snmpInGetNexts 1.3.6.1.2.1.11.16 Counter read-only
snmpInSetRequests 1.3.6.1.2.1.11.17 Counter read-only
snmpInGetResponses 1.3.6.1.2.1.11.18 Counter read-only
snmpInTraps 1.3.6.1.2.1.11.19 Counter read-only
snmpOutTooBigs 1.3.6.1.2.1.11.20 Counter read-only
snmpOutNoSuchNames 1.3.6.1.2.1.11.21 Counter read-only
snmpOutBadValues 1.3.6.1.2.1.11.22 Counter read-only
snmpOutGenErrs 1.3.6.1.2.1.11.24 Counter read-only
snmpOutGetRequests 1.3.6.1.2.1.11.25 Counter read-only
snmpOutGetNexts 1.3.6.1.2.1.11.26 Counter read-only
snmpOutSetRequests 1.3.6.1.2.1.11.27 Counter read-only
snmpOutGetResponses 1.3.6.1.2.1.11.28 Counter read-only
snmpOutTraps 1.3.6.1.2.1.11.29 Counter read-only
snmpEnableAuthenTraps 1.3.6.1.2.1.11.30 INTEGER read-write
(
1 enabled
2 disabled
)
experimental 1.3.6.1.3 nonLeaf
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
snmpResearchNode 1.3.6.1.4.1.99.1 nonLeaf
snmpResearchAgent 1.3.6.1.4.1.99.1.1 nonLeaf
snmpResearchUNIXAgent 1.3.6.1.4.1.99.1.1.1 nonLeaf
snmpResearchSnmpd 1.3.6.1.4.1.99.1.1.1.1 nonLeaf
snmpResearchProxyAgent 1.3.6.1.4.1.99.1.1.2 nonLeaf
snmpResearchLb100Proxy 1.3.6.1.4.1.99.1.1.2.1 nonLeaf
snmpResearchVarVersion 1.3.6.1.4.1.99.2 nonLeaf
snmpResearchVarVer1 1.3.6.1.4.1.99.2.1 nonLeaf
snmpResearchVarLb100 1.3.6.1.4.1.99.2.1.1 nonLeaf
lb100PktTrans 1.3.6.1.4.1.99.2.1.1.1 nonLeaf
lb100PktRecv 1.3.6.1.4.1.99.2.1.1.2 nonLeaf
lb100Seconds 1.3.6.1.4.1.99.2.1.1.3 nonLeaf
security 1.3.6.1.5 nonLeaf
snmpV2 1.3.6.1.6 nonLeaf
snmpDomains 1.3.6.1.6.1 nonLeaf
snmpUDPDomain 1.3.6.1.6.1.1 nonLeaf
snmpCLNSDomain 1.3.6.1.6.1.2 nonLeaf
snmpCONSDomain 1.3.6.1.6.1.3 nonLeaf
snmpDDPDomain 1.3.6.1.6.1.4 nonLeaf
snmpIPXDomain 1.3.6.1.6.1.5 nonLeaf
snmpProxys 1.3.6.1.6.2 nonLeaf
rfc1157Proxy 1.3.6.1.6.2.1 nonLeaf
rfc1157Domain 1.3.6.1.6.2.1.1 nonLeaf
rfc1157noAuth 1.3.6.1.6.2.1.2 nonLeaf
snmpModules 1.3.6.1.6.3 nonLeaf
snmpMIB 1.3.6.1.6.3.1 nonLeaf
snmpMIBObjects 1.3.6.1.6.3.1.1 nonLeaf
snmpStats 1.3.6.1.6.3.1.1.1 nonLeaf
snmpStatsPackets 1.3.6.1.6.3.1.1.1.1 Counter32 read-only
snmpStats30Something 1.3.6.1.6.3.1.1.1.2 Counter32 read-only
snmpStatsEncodingErrors 1.3.6.1.6.3.1.1.1.3 Counter32 read-only
snmpStatsUnknownDstParties 1.3.6.1.6.3.1.1.1.4 Counter32 read-only
snmpStatsDstPartyMismatches 1.3.6.1.6.3.1.1.1.5 Counter32 read-only
snmpStatsUnknownSrcParties 1.3.6.1.6.3.1.1.1.6 Counter32 read-only
snmpStatsBadAuths 1.3.6.1.6.3.1.1.1.7 Counter32 read-only
snmpStatsNotInLifetimes 1.3.6.1.6.3.1.1.1.8 Counter32 read-only
snmpStatsWrongDigestValues 1.3.6.1.6.3.1.1.1.9 Counter32 read-only
snmpStatsUnknownContexts 1.3.6.1.6.3.1.1.1.10 Counter32 read-only
snmpStatsBadOperations 1.3.6.1.6.3.1.1.1.11 Counter32 read-only
snmpStatsSilentDrops 1.3.6.1.6.3.1.1.1.12 Counter32 read-only
snmpV1 1.3.6.1.6.3.1.1.2 nonLeaf
snmpV1BadCommunityNames 1.3.6.1.6.3.1.1.2.1 Counter32 read-only
snmpV1BadCommunityUses 1.3.6.1.6.3.1.1.2.2 Counter32 read-only
snmpOR 1.3.6.1.6.3.1.1.3 nonLeaf
snmpORLastChange 1.3.6.1.6.3.1.1.3.1 TimeTicks read-only
snmpORTable 1.3.6.1.6.3.1.1.3.2 Aggregate not-accessible
snmpOREntry 1.3.6.1.6.3.1.1.3.2.1 Aggregate not-accessible
snmpORIndex 1.3.6.1.6.3.1.1.3.2.1.1 Integer32 not-accessible
snmpORID 1.3.6.1.6.3.1.1.3.2.1.2 ObjectID read-only
snmpORDescr 1.3.6.1.6.3.1.1.3.2.1.3 OctetString read-only
snmpTrap 1.3.6.1.6.3.1.1.4 nonLeaf
snmpTrapOID 1.3.6.1.6.3.1.1.4.1 ObjectID not-accessible
snmpTrapTable 1.3.6.1.6.3.1.1.4.2 Aggregate not-accessible
snmpTrapEntry 1.3.6.1.6.3.1.1.4.2.1 Aggregate not-accessible
snmpTrapNumbers 1.3.6.1.6.3.1.1.4.2.1.1 Counter32 read-only
snmpTrapEnterprise 1.3.6.1.6.3.1.1.4.3 ObjectID not-accessible
snmpV2EnableAuthenTraps 1.3.6.1.6.3.1.1.4.4 INTEGER read-write
(
1 true
2 false
)
snmpTraps 1.3.6.1.6.3.1.1.5 nonLeaf
coldStart 1.3.6.1.6.3.1.1.5.1 nonLeaf
warmStart 1.3.6.1.6.3.1.1.5.2 nonLeaf
linkDown 1.3.6.1.6.3.1.1.5.3 nonLeaf
linkUp 1.3.6.1.6.3.1.1.5.4 nonLeaf
authenticationFailure 1.3.6.1.6.3.1.1.5.5 nonLeaf
egpNeighborLoss 1.3.6.1.6.3.1.1.5.6 nonLeaf
snmpSet 1.3.6.1.6.3.1.1.6 nonLeaf
snmpSetSerialNo 1.3.6.1.6.3.1.1.6.1 INTEGER read-write
snmpMIBConformance 1.3.6.1.6.3.1.2 nonLeaf
snmpMIBCompliances 1.3.6.1.6.3.1.2.1 nonLeaf
snmpMIBCompliance 1.3.6.1.6.3.1.2.1.1 nonLeaf
snmpMIBGroups 1.3.6.1.6.3.1.2.2 nonLeaf
snmpStatsGroup 1.3.6.1.6.3.1.2.2.1 nonLeaf
snmpV1Group 1.3.6.1.6.3.1.2.2.2 nonLeaf
snmpORGroup 1.3.6.1.6.3.1.2.2.3 nonLeaf
snmpTrapGroup 1.3.6.1.6.3.1.2.2.4 nonLeaf
snmpSetGroup 1.3.6.1.6.3.1.2.2.5 nonLeaf
partyMIB 1.3.6.1.6.3.3 nonLeaf
partyAdmin 1.3.6.1.6.3.3.1 nonLeaf
partyProtocols 1.3.6.1.6.3.3.1.1 nonLeaf
noAuth 1.3.6.1.6.3.3.1.1.1 nonLeaf
noPriv 1.3.6.1.6.3.3.1.1.2 nonLeaf
desPrivProtocol 1.3.6.1.6.3.3.1.1.3 nonLeaf
v2md5AuthProtocol 1.3.6.1.6.3.3.1.1.4 nonLeaf
temporalDomains 1.3.6.1.6.3.3.1.2 nonLeaf
currentTime 1.3.6.1.6.3.3.1.2.1 nonLeaf
restartTime 1.3.6.1.6.3.3.1.2.2 nonLeaf
cacheTime 1.3.6.1.6.3.3.1.2.3 nonLeaf
initialPartyId 1.3.6.1.6.3.3.1.3 nonLeaf
initialContextId 1.3.6.1.6.3.3.1.4 nonLeaf
partyMIBObjects 1.3.6.1.6.3.3.2 nonLeaf
snmpParties 1.3.6.1.6.3.3.2.1 nonLeaf
partyTable 1.3.6.1.6.3.3.2.1.1 Aggregate not-accessible
partyEntry 1.3.6.1.6.3.3.2.1.1.1 Aggregate not-accessible
partyIdentity 1.3.6.1.6.3.3.2.1.1.1.1 ObjectID not-accessible
partyIndex 1.3.6.1.6.3.3.2.1.1.1.2 INTEGER read-only
partyTDomain 1.3.6.1.6.3.3.2.1.1.1.3 ObjectID read-create
partyTAddress 1.3.6.1.6.3.3.2.1.1.1.4 OctetString read-create
partyMaxMessageSize 1.3.6.1.6.3.3.2.1.1.1.5 INTEGER read-create
partyLocal 1.3.6.1.6.3.3.2.1.1.1.6 INTEGER read-create
(
1 true
2 false
)
partyAuthProtocol 1.3.6.1.6.3.3.2.1.1.1.7 ObjectID read-create
partyAuthClock 1.3.6.1.6.3.3.2.1.1.1.8 UInteger32 read-create
partyAuthPrivate 1.3.6.1.6.3.3.2.1.1.1.9 OctetString read-create
partyAuthPublic 1.3.6.1.6.3.3.2.1.1.1.10 OctetString read-create
partyAuthLifetime 1.3.6.1.6.3.3.2.1.1.1.11 INTEGER read-create
partyPrivProtocol 1.3.6.1.6.3.3.2.1.1.1.12 ObjectID read-create
partyPrivPrivate 1.3.6.1.6.3.3.2.1.1.1.13 OctetString read-create
partyPrivPublic 1.3.6.1.6.3.3.2.1.1.1.14 OctetString read-create
partyCloneFrom 1.3.6.1.6.3.3.2.1.1.1.15 ObjectID read-create
partyStorageType 1.3.6.1.6.3.3.2.1.1.1.16 INTEGER read-create
(
1 other
2 volatile
3 nonVolatile
4 permanent
)
partyStatus 1.3.6.1.6.3.3.2.1.1.1.17 INTEGER read-create
(
1 active
2 notInService
3 notReady
4 createAndGo
5 createAndWait
6 destroy
)
snmpContexts 1.3.6.1.6.3.3.2.2 nonLeaf
contextTable 1.3.6.1.6.3.3.2.2.1 Aggregate not-accessible
contextEntry 1.3.6.1.6.3.3.2.2.1.1 Aggregate not-accessible
contextIdentity 1.3.6.1.6.3.3.2.2.1.1.1 ObjectID not-accessible
contextIndex 1.3.6.1.6.3.3.2.2.1.1.2 INTEGER read-only
contextLocal 1.3.6.1.6.3.3.2.2.1.1.3 INTEGER read-create
(
1 true
2 false
)
contextViewIndex 1.3.6.1.6.3.3.2.2.1.1.4 INTEGER read-create
contextLocalEntity 1.3.6.1.6.3.3.2.2.1.1.5 OctetString read-create
contextLocalTime 1.3.6.1.6.3.3.2.2.1.1.6 ObjectID read-create
contextProxyDstParty 1.3.6.1.6.3.3.2.2.1.1.7 ObjectID read-create
contextProxySrcParty 1.3.6.1.6.3.3.2.2.1.1.8 ObjectID read-create
contextProxyContext 1.3.6.1.6.3.3.2.2.1.1.9 ObjectID read-create
contextStorageType 1.3.6.1.6.3.3.2.2.1.1.10 INTEGER read-create
(
1 other
2 volatile
3 nonVolatile
4 permanent
)
contextStatus 1.3.6.1.6.3.3.2.2.1.1.11 INTEGER read-create
(
1 active
2 notInService
3 notReady
4 createAndGo
5 createAndWait
6 destroy
)
snmpAccess 1.3.6.1.6.3.3.2.3 nonLeaf
aclTable 1.3.6.1.6.3.3.2.3.1 Aggregate not-accessible
aclEntry 1.3.6.1.6.3.3.2.3.1.1 Aggregate not-accessible
aclTarget 1.3.6.1.6.3.3.2.3.1.1.1 INTEGER not-accessible
aclSubject 1.3.6.1.6.3.3.2.3.1.1.2 INTEGER not-accessible
aclResources 1.3.6.1.6.3.3.2.3.1.1.3 INTEGER not-accessible
aclPrivileges 1.3.6.1.6.3.3.2.3.1.1.4 INTEGER read-create
aclStorageType 1.3.6.1.6.3.3.2.3.1.1.5 INTEGER read-create
(
1 other
2 volatile
3 nonVolatile
4 permanent
)
aclStatus 1.3.6.1.6.3.3.2.3.1.1.6 INTEGER read-create
(
1 active
2 notInService
3 notReady
4 createAndGo
5 createAndWait
6 destroy
)
snmpViews 1.3.6.1.6.3.3.2.4 nonLeaf
viewTable 1.3.6.1.6.3.3.2.4.1 Aggregate not-accessible
viewEntry 1.3.6.1.6.3.3.2.4.1.1 Aggregate not-accessible
viewIndex 1.3.6.1.6.3.3.2.4.1.1.1 INTEGER not-accessible
viewSubtree 1.3.6.1.6.3.3.2.4.1.1.2 ObjectID not-accessible
viewMask 1.3.6.1.6.3.3.2.4.1.1.3 OctetString read-create
viewType 1.3.6.1.6.3.3.2.4.1.1.4 INTEGER read-create
(
1 included
2 excluded
)
viewStorageType 1.3.6.1.6.3.3.2.4.1.1.5 INTEGER read-create
(
1 other
2 volatile
3 nonVolatile
4 permanent
)
viewStatus 1.3.6.1.6.3.3.2.4.1.1.6 INTEGER read-create
(
1 active
2 notInService
3 notReady
4 createAndGo
5 createAndWait
6 destroy
)
partyMIBConformance 1.3.6.1.6.3.3.3 nonLeaf
partyMIBCompliances 1.3.6.1.6.3.3.3.1 nonLeaf
unSecurableCompliance 1.3.6.1.6.3.3.3.1.1 nonLeaf
partyNoPrivacyCompliance 1.3.6.1.6.3.3.3.1.2 nonLeaf
partyPrivacyCompliance 1.3.6.1.6.3.3.3.1.3 nonLeaf
fullPrivacyCompliance 1.3.6.1.6.3.3.3.1.4 nonLeaf
partyMIBGroups 1.3.6.1.6.3.3.3.2 nonLeaf
partyMIBGroup 1.3.6.1.6.3.3.3.2.1 nonLeaf
joint_iso_ccitt 2 nonLeaf
/* START PMGRDINFO.DAT */
/*
*
* Copyright (C) 1994 by SNMP Research, Incorporated.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the
* inclusion of the above copyright notice. This software or any other
* copies thereof may not be provided or otherwise made available to any
* other person. No title to and ownership of the software is hereby
* transferred.
*
* The information in this software is subject to change without notice
* and should not be construed as a commitment by SNMP Research, Incorporated.
*
* Restricted Rights Legend:
* Use, duplication, or disclosure by the Government is subject to
* restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS 52.227-7013
* and in similar clauses in the FAR and NASA FAR Supplement.
*
*/
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
dec 1.3.24 nonLeaf
pm 1.3.24.11 nonLeaf
pmPrivate 1.3.24.11.1 nonLeaf
pmCommon 1.3.24.11.1.1 nonLeaf
pmCmSystem 1.3.24.11.1.1.1 nonLeaf
pmCmSysProcessorType 1.3.24.11.1.1.1.1 INTEGER read-only
(
1 other
2 alpha
3 sparc
4 hp9000-700
5 rs6000
)
pmCmSysOperatingSystem 1.3.24.11.1.1.1.2 INTEGER read-only
(
1 other
2 digital-unix
3 solaris
4 hpux
5 aix
)
pmCmSysOSMajorVersion 1.3.24.11.1.1.1.3 INTEGER read-only
pmCmSysOSMinorVersion 1.3.24.11.1.1.1.4 INTEGER read-only
pmCmSysPageSize 1.3.24.11.1.1.1.5 INTEGER read-only
pmCmSysNumCpusOnline 1.3.24.11.1.1.1.6 INTEGER read-only
pmCmSysPhysMem 1.3.24.11.1.1.1.7 INTEGER read-only
pmCmSysPhysMemUsed 1.3.24.11.1.1.1.8 Gauge read-only
pmCmSysUpTime 1.3.24.11.1.1.1.9 TimeTicks read-only
pmCmSysDate 1.3.24.11.1.1.1.10 OctetString read-only
pmCmSysNumUsers 1.3.24.11.1.1.1.11 Gauge read-only
pmCmSysProcesses 1.3.24.11.1.1.1.12 Gauge read-only
pmCmSysMaxProcesses 1.3.24.11.1.1.1.13 INTEGER read-only
pmCmSysTtyInChars 1.3.24.11.1.1.1.15 Counter read-only
pmCmSysTtyOutChars 1.3.24.11.1.1.1.16 Counter read-only
pmCmSysDeviceInterrupts 1.3.24.11.1.1.1.17 Counter read-only
pmCmSysSystemCalls 1.3.24.11.1.1.1.18 Counter read-only
pmCmSysContextSwitches 1.3.24.11.1.1.1.19 Counter read-only
pmCmSysTotalSwap 1.3.24.11.1.1.1.20 INTEGER read-only
pmCmCpu 1.3.24.11.1.1.2 nonLeaf
pmCmIo 1.3.24.11.1.1.3 nonLeaf
pmCmIoTransfersTable 1.3.24.11.1.1.3.1 Aggregate not-accessible
pmCmIoTransfersEntry 1.3.24.11.1.1.3.1.1 Aggregate not-accessible
pmCmIoXfrsDeviceId 1.3.24.11.1.1.3.1.1.1 INTEGER read-only
pmCmIoXfrsDeviceName 1.3.24.11.1.1.3.1.1.2 DisplayString read-only
pmCmIoXfrsCompletedTransfers 1.3.24.11.1.1.3.1.1.3 Counter read-only
pmCmIoXfrsTransferredBytes 1.3.24.11.1.1.3.1.1.4 Counter read-only
pmCmProcesses 1.3.24.11.1.1.4 nonLeaf
pmCmProcsMinUpdatePeriod 1.3.24.11.1.1.4.1 INTEGER read-only
pmCmProcsRunnable 1.3.24.11.1.1.4.2 Gauge read-only
pmCmProcsWaiting 1.3.24.11.1.1.4.3 Gauge read-only
pmCmProcsUninterruptible 1.3.24.11.1.1.4.4 Gauge read-only
pmCmProcsTopNLastUpdate 1.3.24.11.1.1.4.5 INTEGER read-only
pmCmProcsTopNSize 1.3.24.11.1.1.4.6 INTEGER read-only
pmCmProcsTopNUsersLastUpdate 1.3.24.11.1.1.4.7 INTEGER read-only
pmCmProcsTopNUsersSize 1.3.24.11.1.1.4.8 INTEGER read-only
pmCmProcsTopNSortAlgorithm 1.3.24.11.1.1.4.9 INTEGER read-only
(
1 pctcpu-cputime-vsize
2 vsize-pctcpu-cputime
3 cputime-vsize-pctcpu
)
pmCmProcsTopNTable 1.3.24.11.1.1.4.10 Aggregate not-accessible
pmCmProcsTopNEntry 1.3.24.11.1.1.4.10.1 Aggregate not-accessible
pmCmTnRank 1.3.24.11.1.1.4.10.1.1 INTEGER read-only
pmCmTnPid 1.3.24.11.1.1.4.10.1.2 INTEGER read-only
pmCmTnParentPid 1.3.24.11.1.1.4.10.1.3 INTEGER read-only
pmCmTnUserId 1.3.24.11.1.1.4.10.1.4 INTEGER read-only
pmCmTnEffUserId 1.3.24.11.1.1.4.10.1.5 INTEGER read-only
pmCmTnUserName 1.3.24.11.1.1.4.10.1.6 DisplayString read-only
pmCmTnUserPriority 1.3.24.11.1.1.4.10.1.7 Gauge read-only
pmCmTnNice 1.3.24.11.1.1.4.10.1.8 INTEGER read-only
pmCmTnState 1.3.24.11.1.1.4.10.1.9 INTEGER read-only
(
1 other
2 run
3 stop
4 wait
5 unintr
6 halt
7 zombie
8 exit
)
pmCmTnVirtSize 1.3.24.11.1.1.4.10.1.10 Gauge read-only
pmCmTnResSetSize 1.3.24.11.1.1.4.10.1.11 Gauge read-only
pmCmTnCpuTicks 1.3.24.11.1.1.4.10.1.12 Counter read-only
pmCmTnPercentCpu 1.3.24.11.1.1.4.10.1.13 INTEGER read-only
pmCmTnCpuTime 1.3.24.11.1.1.4.10.1.14 TimeTicks read-only
pmCmTnWhat 1.3.24.11.1.1.4.10.1.15 DisplayString read-only
pmCmProcsTopNUsersTable 1.3.24.11.1.1.4.11 Aggregate not-accessible
pmCmProcsTopNUsersEntry 1.3.24.11.1.1.4.11.1 Aggregate not-accessible
pmCmTnuRank 1.3.24.11.1.1.4.11.1.1 INTEGER read-only
pmCmTnuUserId 1.3.24.11.1.1.4.11.1.2 INTEGER read-only
pmCmTnuUserName 1.3.24.11.1.1.4.11.1.4 DisplayString read-only
pmCmTnuTotalPercentCpu 1.3.24.11.1.1.4.11.1.5 INTEGER read-only
pmCmTnuTotalMemoryUsage 1.3.24.11.1.1.4.11.1.6 Gauge read-only
pmCmTnuTotalCpuTime 1.3.24.11.1.1.4.11.1.7 TimeTicks read-only
pmCmTnuTotalProcesses 1.3.24.11.1.1.4.11.1.8 Gauge read-only
pmCmVirtualMemory 1.3.24.11.1.1.5 nonLeaf
pmCmVmPageFaults 1.3.24.11.1.1.5.1 Counter read-only
pmCmVmPageInEvents 1.3.24.11.1.1.5.2 Counter read-only
pmCmVmPageOutEvents 1.3.24.11.1.1.5.3 Counter read-only
pmCmVmPagedInPages 1.3.24.11.1.1.5.4 Counter read-only
pmCmVmPagedOutPages 1.3.24.11.1.1.5.5 Counter read-only
pmCmFileSystem 1.3.24.11.1.1.6 nonLeaf
pmCmFsTableMinUpdatePeriod 1.3.24.11.1.1.6.1 INTEGER read-only
pmCmFsTableLastUpdate 1.3.24.11.1.1.6.2 INTEGER read-only
pmCmFsTable 1.3.24.11.1.1.6.3 Aggregate not-accessible
pmCmFsEntry 1.3.24.11.1.1.6.3.1 Aggregate not-accessible
pmCmFsIndex 1.3.24.11.1.1.6.3.1.1 INTEGER read-only
pmCmFsName 1.3.24.11.1.1.6.3.1.2 DisplayString read-only
pmCmFsMountPoint 1.3.24.11.1.1.6.3.1.3 DisplayString read-only
pmCmFsType 1.3.24.11.1.1.6.3.1.4 INTEGER read-only
(
1 other
2 unknown
3 berkeley-ffs
4 sys5-fs
10 vnode
11 journaled
12 iso9660
13 rock-ridge
114 cdfs
14 nfs
115 nfs3
16 afs
17 dfs
19 rfs
20 dgcfs
21 bfs
122 mem-fs
123 proc-fs
124 ufs
125 advfs
126 ffm-fs
)
pmCmFsBlockSize 1.3.24.11.1.1.6.3.1.5 INTEGER read-only
pmCmFsTotalSize 1.3.24.11.1.1.6.3.1.6 INTEGER read-only
pmCmFsFreeSize 1.3.24.11.1.1.6.3.1.7 Gauge read-only
pmCmFsAvailableSize 1.3.24.11.1.1.6.3.1.8 Gauge read-only
pmCmFsUsedSize 1.3.24.11.1.1.6.3.1.9 Gauge read-only
pmCmFsTotalInodes 1.3.24.11.1.1.6.3.1.10 INTEGER read-only
pmCmFsFreeInodes 1.3.24.11.1.1.6.3.1.11 Gauge read-only
pmCmFsUsedInodes 1.3.24.11.1.1.6.3.1.12 Gauge read-only
pmCmOncRpc 1.3.24.11.1.1.7 nonLeaf
pmCmOncRpcClCalls 1.3.24.11.1.1.7.1 Counter read-only
pmCmOncRpcClBadCalls 1.3.24.11.1.1.7.2 Counter read-only
pmCmOncRpcClRetransmits 1.3.24.11.1.1.7.3 Counter read-only
pmCmOncRpcClBadXids 1.3.24.11.1.1.7.4 Counter read-only
pmCmOncRpcClTimeouts 1.3.24.11.1.1.7.5 Counter read-only
pmCmOncRpcClWaits 1.3.24.11.1.1.7.6 Counter read-only
pmCmOncRpcClNewCreds 1.3.24.11.1.1.7.7 Counter read-only
pmCmOncRpcClBadVerfs 1.3.24.11.1.1.7.8 Counter read-only
pmCmOncRpcSvCalls 1.3.24.11.1.1.7.9 Counter read-only
pmCmOncRpcSvBadCalls 1.3.24.11.1.1.7.10 Counter read-only
pmCmOncRpcSvNullRcvs 1.3.24.11.1.1.7.11 Counter read-only
pmCmOncRpcSvBadLens 1.3.24.11.1.1.7.12 Counter read-only
pmCmOncRpcSvXdrCalls 1.3.24.11.1.1.7.13 Counter read-only
pmCmNfs 1.3.24.11.1.1.8 nonLeaf
pmCmNfsNClSleeps 1.3.24.11.1.1.8.1 Counter read-only
pmCmNfsNClGets 1.3.24.11.1.1.8.2 Counter read-only
pmCmNfsNClCalls 1.3.24.11.1.1.8.3 Counter read-only
pmCmNfsNClBadCalls 1.3.24.11.1.1.8.4 Counter read-only
pmCmNfsNSvCalls 1.3.24.11.1.1.8.5 Counter read-only
pmCmNfsNSvBadCalls 1.3.24.11.1.1.8.6 Counter read-only
pmCmNfsClFileAttReqs 1.3.24.11.1.1.8.7 Counter read-only
pmCmNfsClFileAttChngs 1.3.24.11.1.1.8.8 Counter read-only
pmCmNfsClRcvFileHandles 1.3.24.11.1.1.8.9 Counter read-only
pmCmNfsClSymLinkInfoReads 1.3.24.11.1.1.8.10 Counter read-only
pmCmNfsClFileReads 1.3.24.11.1.1.8.11 Counter read-only
pmCmNfsClFileWrites 1.3.24.11.1.1.8.12 Counter read-only
pmCmNfsClFileCreates 1.3.24.11.1.1.8.13 Counter read-only
pmCmNfsClFileRemoves 1.3.24.11.1.1.8.14 Counter read-only
pmCmNfsClFileRenames 1.3.24.11.1.1.8.15 Counter read-only
pmCmNfsClHardLinkCreates 1.3.24.11.1.1.8.16 Counter read-only
pmCmNfsClSymLinkCreates 1.3.24.11.1.1.8.17 Counter read-only
pmCmNfsClDirCreates 1.3.24.11.1.1.8.18 Counter read-only
pmCmNfsClDirRemoves 1.3.24.11.1.1.8.19 Counter read-only
pmCmNfsClDirReads 1.3.24.11.1.1.8.20 Counter read-only
pmCmNfsClFsStatReqs 1.3.24.11.1.1.8.21 Counter read-only
pmCmNfsSvFileAttReqs 1.3.24.11.1.1.8.22 Counter read-only
pmCmNfsSvFileAttChngs 1.3.24.11.1.1.8.23 Counter read-only
pmCmNfsSvRcvFileHandles 1.3.24.11.1.1.8.24 Counter read-only
pmCmNfsSvSymLinkInfoReads 1.3.24.11.1.1.8.25 Counter read-only
pmCmNfsSvFileReads 1.3.24.11.1.1.8.26 Counter read-only
pmCmNfsSvFileWrites 1.3.24.11.1.1.8.27 Counter read-only
pmCmNfsSvFileCreates 1.3.24.11.1.1.8.28 Counter read-only
pmCmNfsSvFileRemoves 1.3.24.11.1.1.8.29 Counter read-only
pmCmNfsSvFileRenames 1.3.24.11.1.1.8.30 Counter read-only
pmCmNfsSvHardLinkCreates 1.3.24.11.1.1.8.31 Counter read-only
pmCmNfsSvSymLinkCreates 1.3.24.11.1.1.8.32 Counter read-only
pmCmNfsSvDirCreates 1.3.24.11.1.1.8.33 Counter read-only
pmCmNfsSvDirRemoves 1.3.24.11.1.1.8.34 Counter read-only
pmCmNfsSvDirReads 1.3.24.11.1.1.8.35 Counter read-only
pmCmNfsSvFsStatReqs 1.3.24.11.1.1.8.36 Counter read-only
pmCmNfs3ClFileAttReqs 1.3.24.11.1.1.8.37 Counter read-only
pmCmNfs3ClFileAttChngs 1.3.24.11.1.1.8.38 Counter read-only
pmCmNfs3ClRcvFileHandles 1.3.24.11.1.1.8.39 Counter read-only
pmCmNfs3ClAccess 1.3.24.11.1.1.8.40 Counter read-only
pmCmNfs3ClSymLinkInfoReads 1.3.24.11.1.1.8.41 Counter read-only
pmCmNfs3ClFileReads 1.3.24.11.1.1.8.42 Counter read-only
pmCmNfs3ClFileWrites 1.3.24.11.1.1.8.43 Counter read-only
pmCmNfs3ClFileCreates 1.3.24.11.1.1.8.44 Counter read-only
pmCmNfs3ClDirCreates 1.3.24.11.1.1.8.45 Counter read-only
pmCmNfs3ClSymLinkCreates 1.3.24.11.1.1.8.46 Counter read-only
pmCmNfs3ClMknod 1.3.24.11.1.1.8.47 Counter read-only
pmCmNfs3ClFileRemoves 1.3.24.11.1.1.8.48 Counter read-only
pmCmNfs3ClDirRemoves 1.3.24.11.1.1.8.49 Counter read-only
pmCmNfs3ClFileRenames 1.3.24.11.1.1.8.50 Counter read-only
pmCmNfs3ClHardLinkCreates 1.3.24.11.1.1.8.51 Counter read-only
pmCmNfs3ClDirReads 1.3.24.11.1.1.8.52 Counter read-only
pmCmNfs3ClDirReadsPlus 1.3.24.11.1.1.8.53 Counter read-only
pmCmNfs3ClFsStatReqs 1.3.24.11.1.1.8.54 Counter read-only
pmCmNfs3ClFsInfoReqs 1.3.24.11.1.1.8.55 Counter read-only
pmCmNfs3ClPathConf 1.3.24.11.1.1.8.56 Counter read-only
pmCmNfs3ClCommits 1.3.24.11.1.1.8.57 Counter read-only
pmCmNfs3SvFileAttReqs 1.3.24.11.1.1.8.58 Counter read-only
pmCmNfs3SvFileAttChngs 1.3.24.11.1.1.8.59 Counter read-only
pmCmNfs3SvRcvFileHandles 1.3.24.11.1.1.8.60 Counter read-only
pmCmNfs3SvAccess 1.3.24.11.1.1.8.61 Counter read-only
pmCmNfs3SvSymLinkInfoReads 1.3.24.11.1.1.8.62 Counter read-only
pmCmNfs3SvFileReads 1.3.24.11.1.1.8.63 Counter read-only
pmCmNfs3SvFileWrites 1.3.24.11.1.1.8.64 Counter read-only
pmCmNfs3SvFileCreates 1.3.24.11.1.1.8.65 Counter read-only
pmCmNfs3SvDirCreates 1.3.24.11.1.1.8.66 Counter read-only
pmCmNfs3SvSymLinkCreates 1.3.24.11.1.1.8.67 Counter read-only
pmCmNfs3SvMknod 1.3.24.11.1.1.8.68 Counter read-only
pmCmNfs3SvFileRemoves 1.3.24.11.1.1.8.69 Counter read-only
pmCmNfs3SvDirRemoves 1.3.24.11.1.1.8.70 Counter read-only
pmCmNfs3SvFileRenames 1.3.24.11.1.1.8.71 Counter read-only
pmCmNfs3SvHardLinkCreates 1.3.24.11.1.1.8.72 Counter read-only
pmCmNfs3SvDirReads 1.3.24.11.1.1.8.73 Counter read-only
pmCmNfs3SvDirReadsPlus 1.3.24.11.1.1.8.74 Counter read-only
pmCmNfs3SvFsStatReqs 1.3.24.11.1.1.8.75 Counter read-only
pmCmNfs3SvFsInfoReqs 1.3.24.11.1.1.8.76 Counter read-only
pmCmNfs3SvPathConf 1.3.24.11.1.1.8.77 Counter read-only
pmCmNfs3SvCommits 1.3.24.11.1.1.8.78 Counter read-only
pmAlphaDigitalUNIX 1.3.24.11.1.2 nonLeaf
pmAoSystem 1.3.24.11.1.2.1 nonLeaf
pmAoSharedMemory 1.3.24.11.1.2.2 nonLeaf
pmAoShMemMaxSegSize 1.3.24.11.1.2.2.1 INTEGER read-only
pmAoShMemMinSegSize 1.3.24.11.1.2.2.2 INTEGER read-only
pmAoShMemMaxSegsPerProcess 1.3.24.11.1.2.2.3 INTEGER read-only
pmAoShMemNumIds 1.3.24.11.1.2.2.4 INTEGER read-only
pmAoSemaphores 1.3.24.11.1.2.3 nonLeaf
pmAoSemMaxSemsPerId 1.3.24.11.1.2.3.1 INTEGER read-only
pmAoSemMaxOpsPerSemopCall 1.3.24.11.1.2.3.2 INTEGER read-only
pmAoSemMaxUndosPerProcess 1.3.24.11.1.2.3.3 INTEGER read-only
pmAoSemMaxValue 1.3.24.11.1.2.3.4 INTEGER read-only
pmAoSemNumIds 1.3.24.11.1.2.3.5 INTEGER read-only
pmAoCpu 1.3.24.11.1.2.4 nonLeaf
pmAoCpuAvgRunQLen5Sec 1.3.24.11.1.2.4.1 INTEGER read-only
pmAoCpuAvgRunQLen30Sec 1.3.24.11.1.2.4.2 INTEGER read-only
pmAoCpuAvgRunQLen60Sec 1.3.24.11.1.2.4.3 INTEGER read-only
pmAoCpuUtilTable 1.3.24.11.1.2.4.4 Aggregate not-accessible
pmAoCpuUtilEntry 1.3.24.11.1.2.4.4.1 Aggregate not-accessible
pmAoCuIndex 1.3.24.11.1.2.4.4.1.1 INTEGER read-only
pmAoCuCpuId 1.3.24.11.1.2.4.4.1.2 DisplayString read-only
pmAoCuUser 1.3.24.11.1.2.4.4.1.3 Counter read-only
pmAoCuNice 1.3.24.11.1.2.4.4.1.4 Counter read-only
pmAoCuSystem 1.3.24.11.1.2.4.4.1.5 Counter read-only
pmAoCuIdle 1.3.24.11.1.2.4.4.1.6 Counter read-only
pmAoCuWait 1.3.24.11.1.2.4.4.1.7 Counter read-only
pmAoIo 1.3.24.11.1.2.5 nonLeaf
pmAoProcesses 1.3.24.11.1.2.6 nonLeaf
pmAoVirtualMemory 1.3.24.11.1.2.7 nonLeaf
pmAoVmSwappedInProcs 1.3.24.11.1.2.7.1 Counter read-only
pmAoVmSwappedOutProcs 1.3.24.11.1.2.7.2 Counter read-only
pmAoVmVmstatActive 1.3.24.11.1.2.7.3 Gauge read-only
pmAoVmVmstatInactive 1.3.24.11.1.2.7.4 Gauge read-only
pmAoVmVmstatFree 1.3.24.11.1.2.7.5 Gauge read-only
pmAoVmVmstatWire 1.3.24.11.1.2.7.6 Gauge read-only
pmAoVmSwapRemaining 1.3.24.11.1.2.7.7 Gauge read-only
pmAoVmSwapInUse 1.3.24.11.1.2.7.8 Gauge read-only
pmAoVmSwapDefault 1.3.24.11.1.2.7.9 DisplayString read-only
pmAoVmSwapConfigTable 1.3.24.11.1.2.7.10 Aggregate not-accessible
pmAoVmSwapConfigEntry 1.3.24.11.1.2.7.10.1 Aggregate not-accessible
pmAoVmSiIndex 1.3.24.11.1.2.7.10.1.1 INTEGER read-only
pmAoVmSiPartition 1.3.24.11.1.2.7.10.1.2 DisplayString read-only
pmAoVmSiPagesAllocated 1.3.24.11.1.2.7.10.1.3 INTEGER read-only
pmAoVmSiPagesInUse 1.3.24.11.1.2.7.10.1.4 Gauge read-only
pmAoVmSiPagesFree 1.3.24.11.1.2.7.10.1.5 Gauge read-only
pmAoBufferCache 1.3.24.11.1.2.8 nonLeaf
pmAoBcReadHits 1.3.24.11.1.2.8.1 Counter read-only
pmAoBcReadMisses 1.3.24.11.1.2.8.2 Counter read-only
pmAoInterfaces 1.3.24.11.1.2.9 nonLeaf
pmAoIfEthTable 1.3.24.11.1.2.9.1 Aggregate not-accessible
pmAoIfEthEntry 1.3.24.11.1.2.9.1.1 Aggregate not-accessible
pmAoIfEthIndex 1.3.24.11.1.2.9.1.1.1 INTEGER read-only
pmAoIfEthName 1.3.24.11.1.2.9.1.1.2 DisplayString read-only
pmAoIfEthCollisions 1.3.24.11.1.2.9.1.1.3 Counter read-only
pmSparcSolaris 1.3.24.11.1.3 nonLeaf
pmSsSystem 1.3.24.11.1.3.1 nonLeaf
pmSsSharedMemory 1.3.24.11.1.3.2 nonLeaf
pmSsSemaphores 1.3.24.11.1.3.3 nonLeaf
pmSsCpu 1.3.24.11.1.3.4 nonLeaf
pmSsIo 1.3.24.11.1.3.5 nonLeaf
pmSsProcesses 1.3.24.11.1.3.6 nonLeaf
pmSsBufferCache 1.3.24.11.1.3.7 nonLeaf
pmSsVirtualMemory 1.3.24.11.1.3.8 nonLeaf
pmHppaHpux 1.3.24.11.1.4 nonLeaf
pmHhSystem 1.3.24.11.1.4.1 nonLeaf
pmHhSharedMemory 1.3.24.11.1.4.2 nonLeaf
pmHhSemaphores 1.3.24.11.1.4.3 nonLeaf
pmHhCpu 1.3.24.11.1.4.4 nonLeaf
pmHhIo 1.3.24.11.1.4.5 nonLeaf
pmHhProcesses 1.3.24.11.1.4.6 nonLeaf
pmHhVirtualMemory 1.3.24.11.1.4.7 nonLeaf
pmHhBufferCache 1.3.24.11.1.4.8 nonLeaf
pmRs6kAix 1.3.24.11.1.5 nonLeaf
pmRaSystem 1.3.24.11.1.5.1 nonLeaf
pmRaSharedMemory 1.3.24.11.1.5.2 nonLeaf
pmRaSemaphores 1.3.24.11.1.5.3 nonLeaf
pmRaCpu 1.3.24.11.1.5.4 nonLeaf
pmRaIo 1.3.24.11.1.5.5 nonLeaf
pmRaProcesses 1.3.24.11.1.5.6 nonLeaf
pmRaVirtualMemory 1.3.24.11.1.5.7 nonLeaf
pmRaBufferCache 1.3.24.11.1.5.8 nonLeaf
advfsPrivate 1.3.24.11.2 nonLeaf
joint_iso_ccitt 2 nonLeaf
/* END PMGRDINFO.DAT */
/* START PMGRDINFO.DAT */
/*
*
* Copyright (C) 1994 by SNMP Research, Incorporated.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the
* inclusion of the above copyright notice. This software or any other
* copies thereof may not be provided or otherwise made available to any
* other person. No title to and ownership of the software is hereby
* transferred.
*
* The information in this software is subject to change without notice
* and should not be construed as a commitment by SNMP Research, Incorporated.
*
* Restricted Rights Legend:
* Use, duplication, or disclosure by the Government is subject to
* restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS 52.227-7013
* and in similar clauses in the FAR and NASA FAR Supplement.
*
*/
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
dec 1.3.24 nonLeaf
pm 1.3.24.11 nonLeaf
pmPrivate 1.3.24.11.1 nonLeaf
pmCommon 1.3.24.11.1.1 nonLeaf
pmCmSystem 1.3.24.11.1.1.1 nonLeaf
pmCmSysProcessorType 1.3.24.11.1.1.1.1 INTEGER read-only
(
1 other
2 alpha
3 sparc
4 hp9000-700
5 rs6000
)
pmCmSysOperatingSystem 1.3.24.11.1.1.1.2 INTEGER read-only
(
1 other
2 digital-unix
3 solaris
4 hpux
5 aix
)
pmCmSysOSMajorVersion 1.3.24.11.1.1.1.3 INTEGER read-only
pmCmSysOSMinorVersion 1.3.24.11.1.1.1.4 INTEGER read-only
pmCmSysPageSize 1.3.24.11.1.1.1.5 INTEGER read-only
pmCmSysNumCpusOnline 1.3.24.11.1.1.1.6 INTEGER read-only
pmCmSysPhysMem 1.3.24.11.1.1.1.7 INTEGER read-only
pmCmSysPhysMemUsed 1.3.24.11.1.1.1.8 Gauge read-only
pmCmSysUpTime 1.3.24.11.1.1.1.9 TimeTicks read-only
pmCmSysDate 1.3.24.11.1.1.1.10 OctetString read-only
pmCmSysNumUsers 1.3.24.11.1.1.1.11 Gauge read-only
pmCmSysProcesses 1.3.24.11.1.1.1.12 Gauge read-only
pmCmSysMaxProcesses 1.3.24.11.1.1.1.13 INTEGER read-only
pmCmSysTtyInChars 1.3.24.11.1.1.1.15 Counter read-only
pmCmSysTtyOutChars 1.3.24.11.1.1.1.16 Counter read-only
pmCmSysDeviceInterrupts 1.3.24.11.1.1.1.17 Counter read-only
pmCmSysSystemCalls 1.3.24.11.1.1.1.18 Counter read-only
pmCmSysContextSwitches 1.3.24.11.1.1.1.19 Counter read-only
pmCmSysTotalSwap 1.3.24.11.1.1.1.20 INTEGER read-only
pmCmCpu 1.3.24.11.1.1.2 nonLeaf
pmCmIo 1.3.24.11.1.1.3 nonLeaf
pmCmIoTransfersTable 1.3.24.11.1.1.3.1 Aggregate not-accessible
pmCmIoTransfersEntry 1.3.24.11.1.1.3.1.1 Aggregate not-accessible
pmCmIoXfrsDeviceId 1.3.24.11.1.1.3.1.1.1 INTEGER read-only
pmCmIoXfrsDeviceName 1.3.24.11.1.1.3.1.1.2 DisplayString read-only
pmCmIoXfrsCompletedTransfers 1.3.24.11.1.1.3.1.1.3 Counter read-only
pmCmIoXfrsTransferredBytes 1.3.24.11.1.1.3.1.1.4 Counter read-only
pmCmProcesses 1.3.24.11.1.1.4 nonLeaf
pmCmProcsMinUpdatePeriod 1.3.24.11.1.1.4.1 INTEGER read-only
pmCmProcsRunnable 1.3.24.11.1.1.4.2 Gauge read-only
pmCmProcsWaiting 1.3.24.11.1.1.4.3 Gauge read-only
pmCmProcsUninterruptible 1.3.24.11.1.1.4.4 Gauge read-only
pmCmProcsTopNLastUpdate 1.3.24.11.1.1.4.5 INTEGER read-only
pmCmProcsTopNSize 1.3.24.11.1.1.4.6 INTEGER read-only
pmCmProcsTopNUsersLastUpdate 1.3.24.11.1.1.4.7 INTEGER read-only
pmCmProcsTopNUsersSize 1.3.24.11.1.1.4.8 INTEGER read-only
pmCmProcsTopNSortAlgorithm 1.3.24.11.1.1.4.9 INTEGER read-only
(
1 pctcpu-cputime-vsize
2 vsize-pctcpu-cputime
3 cputime-vsize-pctcpu
)
pmCmProcsTopNTable 1.3.24.11.1.1.4.10 Aggregate not-accessible
pmCmProcsTopNEntry 1.3.24.11.1.1.4.10.1 Aggregate not-accessible
pmCmTnRank 1.3.24.11.1.1.4.10.1.1 INTEGER read-only
pmCmTnPid 1.3.24.11.1.1.4.10.1.2 INTEGER read-only
pmCmTnParentPid 1.3.24.11.1.1.4.10.1.3 INTEGER read-only
pmCmTnUserId 1.3.24.11.1.1.4.10.1.4 INTEGER read-only
pmCmTnEffUserId 1.3.24.11.1.1.4.10.1.5 INTEGER read-only
pmCmTnUserName 1.3.24.11.1.1.4.10.1.6 DisplayString read-only
pmCmTnUserPriority 1.3.24.11.1.1.4.10.1.7 Gauge read-only
pmCmTnNice 1.3.24.11.1.1.4.10.1.8 INTEGER read-only
pmCmTnState 1.3.24.11.1.1.4.10.1.9 INTEGER read-only
(
1 other
2 run
3 stop
4 wait
5 unintr
6 halt
7 zombie
8 exit
)
pmCmTnVirtSize 1.3.24.11.1.1.4.10.1.10 Gauge read-only
pmCmTnResSetSize 1.3.24.11.1.1.4.10.1.11 Gauge read-only
pmCmTnCpuTicks 1.3.24.11.1.1.4.10.1.12 Counter read-only
pmCmTnPercentCpu 1.3.24.11.1.1.4.10.1.13 INTEGER read-only
pmCmTnCpuTime 1.3.24.11.1.1.4.10.1.14 TimeTicks read-only
pmCmTnWhat 1.3.24.11.1.1.4.10.1.15 DisplayString read-only
pmCmProcsTopNUsersTable 1.3.24.11.1.1.4.11 Aggregate not-accessible
pmCmProcsTopNUsersEntry 1.3.24.11.1.1.4.11.1 Aggregate not-accessible
pmCmTnuRank 1.3.24.11.1.1.4.11.1.1 INTEGER read-only
pmCmTnuUserId 1.3.24.11.1.1.4.11.1.2 INTEGER read-only
pmCmTnuUserName 1.3.24.11.1.1.4.11.1.4 DisplayString read-only
pmCmTnuTotalPercentCpu 1.3.24.11.1.1.4.11.1.5 INTEGER read-only
pmCmTnuTotalMemoryUsage 1.3.24.11.1.1.4.11.1.6 Gauge read-only
pmCmTnuTotalCpuTime 1.3.24.11.1.1.4.11.1.7 TimeTicks read-only
pmCmTnuTotalProcesses 1.3.24.11.1.1.4.11.1.8 Gauge read-only
pmCmVirtualMemory 1.3.24.11.1.1.5 nonLeaf
pmCmVmPageFaults 1.3.24.11.1.1.5.1 Counter read-only
pmCmVmPageInEvents 1.3.24.11.1.1.5.2 Counter read-only
pmCmVmPageOutEvents 1.3.24.11.1.1.5.3 Counter read-only
pmCmVmPagedInPages 1.3.24.11.1.1.5.4 Counter read-only
pmCmVmPagedOutPages 1.3.24.11.1.1.5.5 Counter read-only
pmCmFileSystem 1.3.24.11.1.1.6 nonLeaf
pmCmFsTableMinUpdatePeriod 1.3.24.11.1.1.6.1 INTEGER read-only
pmCmFsTableLastUpdate 1.3.24.11.1.1.6.2 INTEGER read-only
pmCmFsTable 1.3.24.11.1.1.6.3 Aggregate not-accessible
pmCmFsEntry 1.3.24.11.1.1.6.3.1 Aggregate not-accessible
pmCmFsIndex 1.3.24.11.1.1.6.3.1.1 INTEGER read-only
pmCmFsName 1.3.24.11.1.1.6.3.1.2 DisplayString read-only
pmCmFsMountPoint 1.3.24.11.1.1.6.3.1.3 DisplayString read-only
pmCmFsType 1.3.24.11.1.1.6.3.1.4 INTEGER read-only
(
1 other
2 unknown
3 berkeley-ffs
4 sys5-fs
10 vnode
11 journaled
12 iso9660
13 rock-ridge
114 cdfs
14 nfs
115 nfs3
16 afs
17 dfs
19 rfs
20 dgcfs
21 bfs
122 mem-fs
123 proc-fs
124 ufs
125 advfs
126 ffm-fs
)
pmCmFsBlockSize 1.3.24.11.1.1.6.3.1.5 INTEGER read-only
pmCmFsTotalSize 1.3.24.11.1.1.6.3.1.6 INTEGER read-only
pmCmFsFreeSize 1.3.24.11.1.1.6.3.1.7 Gauge read-only
pmCmFsAvailableSize 1.3.24.11.1.1.6.3.1.8 Gauge read-only
pmCmFsUsedSize 1.3.24.11.1.1.6.3.1.9 Gauge read-only
pmCmFsTotalInodes 1.3.24.11.1.1.6.3.1.10 INTEGER read-only
pmCmFsFreeInodes 1.3.24.11.1.1.6.3.1.11 Gauge read-only
pmCmFsUsedInodes 1.3.24.11.1.1.6.3.1.12 Gauge read-only
pmCmOncRpc 1.3.24.11.1.1.7 nonLeaf
pmCmOncRpcClCalls 1.3.24.11.1.1.7.1 Counter read-only
pmCmOncRpcClBadCalls 1.3.24.11.1.1.7.2 Counter read-only
pmCmOncRpcClRetransmits 1.3.24.11.1.1.7.3 Counter read-only
pmCmOncRpcClBadXids 1.3.24.11.1.1.7.4 Counter read-only
pmCmOncRpcClTimeouts 1.3.24.11.1.1.7.5 Counter read-only
pmCmOncRpcClWaits 1.3.24.11.1.1.7.6 Counter read-only
pmCmOncRpcClNewCreds 1.3.24.11.1.1.7.7 Counter read-only
pmCmOncRpcClBadVerfs 1.3.24.11.1.1.7.8 Counter read-only
pmCmOncRpcSvCalls 1.3.24.11.1.1.7.9 Counter read-only
pmCmOncRpcSvBadCalls 1.3.24.11.1.1.7.10 Counter read-only
pmCmOncRpcSvNullRcvs 1.3.24.11.1.1.7.11 Counter read-only
pmCmOncRpcSvBadLens 1.3.24.11.1.1.7.12 Counter read-only
pmCmOncRpcSvXdrCalls 1.3.24.11.1.1.7.13 Counter read-only
pmCmNfs 1.3.24.11.1.1.8 nonLeaf
pmCmNfsNClSleeps 1.3.24.11.1.1.8.1 Counter read-only
pmCmNfsNClGets 1.3.24.11.1.1.8.2 Counter read-only
pmCmNfsNClCalls 1.3.24.11.1.1.8.3 Counter read-only
pmCmNfsNClBadCalls 1.3.24.11.1.1.8.4 Counter read-only
pmCmNfsNSvCalls 1.3.24.11.1.1.8.5 Counter read-only
pmCmNfsNSvBadCalls 1.3.24.11.1.1.8.6 Counter read-only
pmCmNfsClFileAttReqs 1.3.24.11.1.1.8.7 Counter read-only
pmCmNfsClFileAttChngs 1.3.24.11.1.1.8.8 Counter read-only
pmCmNfsClRcvFileHandles 1.3.24.11.1.1.8.9 Counter read-only
pmCmNfsClSymLinkInfoReads 1.3.24.11.1.1.8.10 Counter read-only
pmCmNfsClFileReads 1.3.24.11.1.1.8.11 Counter read-only
pmCmNfsClFileWrites 1.3.24.11.1.1.8.12 Counter read-only
pmCmNfsClFileCreates 1.3.24.11.1.1.8.13 Counter read-only
pmCmNfsClFileRemoves 1.3.24.11.1.1.8.14 Counter read-only
pmCmNfsClFileRenames 1.3.24.11.1.1.8.15 Counter read-only
pmCmNfsClHardLinkCreates 1.3.24.11.1.1.8.16 Counter read-only
pmCmNfsClSymLinkCreates 1.3.24.11.1.1.8.17 Counter read-only
pmCmNfsClDirCreates 1.3.24.11.1.1.8.18 Counter read-only
pmCmNfsClDirRemoves 1.3.24.11.1.1.8.19 Counter read-only
pmCmNfsClDirReads 1.3.24.11.1.1.8.20 Counter read-only
pmCmNfsClFsStatReqs 1.3.24.11.1.1.8.21 Counter read-only
pmCmNfsSvFileAttReqs 1.3.24.11.1.1.8.22 Counter read-only
pmCmNfsSvFileAttChngs 1.3.24.11.1.1.8.23 Counter read-only
pmCmNfsSvRcvFileHandles 1.3.24.11.1.1.8.24 Counter read-only
pmCmNfsSvSymLinkInfoReads 1.3.24.11.1.1.8.25 Counter read-only
pmCmNfsSvFileReads 1.3.24.11.1.1.8.26 Counter read-only
pmCmNfsSvFileWrites 1.3.24.11.1.1.8.27 Counter read-only
pmCmNfsSvFileCreates 1.3.24.11.1.1.8.28 Counter read-only
pmCmNfsSvFileRemoves 1.3.24.11.1.1.8.29 Counter read-only
pmCmNfsSvFileRenames 1.3.24.11.1.1.8.30 Counter read-only
pmCmNfsSvHardLinkCreates 1.3.24.11.1.1.8.31 Counter read-only
pmCmNfsSvSymLinkCreates 1.3.24.11.1.1.8.32 Counter read-only
pmCmNfsSvDirCreates 1.3.24.11.1.1.8.33 Counter read-only
pmCmNfsSvDirRemoves 1.3.24.11.1.1.8.34 Counter read-only
pmCmNfsSvDirReads 1.3.24.11.1.1.8.35 Counter read-only
pmCmNfsSvFsStatReqs 1.3.24.11.1.1.8.36 Counter read-only
pmCmNfs3ClFileAttReqs 1.3.24.11.1.1.8.37 Counter read-only
pmCmNfs3ClFileAttChngs 1.3.24.11.1.1.8.38 Counter read-only
pmCmNfs3ClRcvFileHandles 1.3.24.11.1.1.8.39 Counter read-only
pmCmNfs3ClAccess 1.3.24.11.1.1.8.40 Counter read-only
pmCmNfs3ClSymLinkInfoReads 1.3.24.11.1.1.8.41 Counter read-only
pmCmNfs3ClFileReads 1.3.24.11.1.1.8.42 Counter read-only
pmCmNfs3ClFileWrites 1.3.24.11.1.1.8.43 Counter read-only
pmCmNfs3ClFileCreates 1.3.24.11.1.1.8.44 Counter read-only
pmCmNfs3ClDirCreates 1.3.24.11.1.1.8.45 Counter read-only
pmCmNfs3ClSymLinkCreates 1.3.24.11.1.1.8.46 Counter read-only
pmCmNfs3ClMknod 1.3.24.11.1.1.8.47 Counter read-only
pmCmNfs3ClFileRemoves 1.3.24.11.1.1.8.48 Counter read-only
pmCmNfs3ClDirRemoves 1.3.24.11.1.1.8.49 Counter read-only
pmCmNfs3ClFileRenames 1.3.24.11.1.1.8.50 Counter read-only
pmCmNfs3ClHardLinkCreates 1.3.24.11.1.1.8.51 Counter read-only
pmCmNfs3ClDirReads 1.3.24.11.1.1.8.52 Counter read-only
pmCmNfs3ClDirReadsPlus 1.3.24.11.1.1.8.53 Counter read-only
pmCmNfs3ClFsStatReqs 1.3.24.11.1.1.8.54 Counter read-only
pmCmNfs3ClFsInfoReqs 1.3.24.11.1.1.8.55 Counter read-only
pmCmNfs3ClPathConf 1.3.24.11.1.1.8.56 Counter read-only
pmCmNfs3ClCommits 1.3.24.11.1.1.8.57 Counter read-only
pmCmNfs3SvFileAttReqs 1.3.24.11.1.1.8.58 Counter read-only
pmCmNfs3SvFileAttChngs 1.3.24.11.1.1.8.59 Counter read-only
pmCmNfs3SvRcvFileHandles 1.3.24.11.1.1.8.60 Counter read-only
pmCmNfs3SvAccess 1.3.24.11.1.1.8.61 Counter read-only
pmCmNfs3SvSymLinkInfoReads 1.3.24.11.1.1.8.62 Counter read-only
pmCmNfs3SvFileReads 1.3.24.11.1.1.8.63 Counter read-only
pmCmNfs3SvFileWrites 1.3.24.11.1.1.8.64 Counter read-only
pmCmNfs3SvFileCreates 1.3.24.11.1.1.8.65 Counter read-only
pmCmNfs3SvDirCreates 1.3.24.11.1.1.8.66 Counter read-only
pmCmNfs3SvSymLinkCreates 1.3.24.11.1.1.8.67 Counter read-only
pmCmNfs3SvMknod 1.3.24.11.1.1.8.68 Counter read-only
pmCmNfs3SvFileRemoves 1.3.24.11.1.1.8.69 Counter read-only
pmCmNfs3SvDirRemoves 1.3.24.11.1.1.8.70 Counter read-only
pmCmNfs3SvFileRenames 1.3.24.11.1.1.8.71 Counter read-only
pmCmNfs3SvHardLinkCreates 1.3.24.11.1.1.8.72 Counter read-only
pmCmNfs3SvDirReads 1.3.24.11.1.1.8.73 Counter read-only
pmCmNfs3SvDirReadsPlus 1.3.24.11.1.1.8.74 Counter read-only
pmCmNfs3SvFsStatReqs 1.3.24.11.1.1.8.75 Counter read-only
pmCmNfs3SvFsInfoReqs 1.3.24.11.1.1.8.76 Counter read-only
pmCmNfs3SvPathConf 1.3.24.11.1.1.8.77 Counter read-only
pmCmNfs3SvCommits 1.3.24.11.1.1.8.78 Counter read-only
pmAlphaDigitalUNIX 1.3.24.11.1.2 nonLeaf
pmAoSystem 1.3.24.11.1.2.1 nonLeaf
pmAoSharedMemory 1.3.24.11.1.2.2 nonLeaf
pmAoShMemMaxSegSize 1.3.24.11.1.2.2.1 INTEGER read-only
pmAoShMemMinSegSize 1.3.24.11.1.2.2.2 INTEGER read-only
pmAoShMemMaxSegsPerProcess 1.3.24.11.1.2.2.3 INTEGER read-only
pmAoShMemNumIds 1.3.24.11.1.2.2.4 INTEGER read-only
pmAoSemaphores 1.3.24.11.1.2.3 nonLeaf
pmAoSemMaxSemsPerId 1.3.24.11.1.2.3.1 INTEGER read-only
pmAoSemMaxOpsPerSemopCall 1.3.24.11.1.2.3.2 INTEGER read-only
pmAoSemMaxUndosPerProcess 1.3.24.11.1.2.3.3 INTEGER read-only
pmAoSemMaxValue 1.3.24.11.1.2.3.4 INTEGER read-only
pmAoSemNumIds 1.3.24.11.1.2.3.5 INTEGER read-only
pmAoCpu 1.3.24.11.1.2.4 nonLeaf
pmAoCpuAvgRunQLen5Sec 1.3.24.11.1.2.4.1 INTEGER read-only
pmAoCpuAvgRunQLen30Sec 1.3.24.11.1.2.4.2 INTEGER read-only
pmAoCpuAvgRunQLen60Sec 1.3.24.11.1.2.4.3 INTEGER read-only
pmAoCpuUtilTable 1.3.24.11.1.2.4.4 Aggregate not-accessible
pmAoCpuUtilEntry 1.3.24.11.1.2.4.4.1 Aggregate not-accessible
pmAoCuIndex 1.3.24.11.1.2.4.4.1.1 INTEGER read-only
pmAoCuCpuId 1.3.24.11.1.2.4.4.1.2 DisplayString read-only
pmAoCuUser 1.3.24.11.1.2.4.4.1.3 Counter read-only
pmAoCuNice 1.3.24.11.1.2.4.4.1.4 Counter read-only
pmAoCuSystem 1.3.24.11.1.2.4.4.1.5 Counter read-only
pmAoCuIdle 1.3.24.11.1.2.4.4.1.6 Counter read-only
pmAoCuWait 1.3.24.11.1.2.4.4.1.7 Counter read-only
pmAoIo 1.3.24.11.1.2.5 nonLeaf
pmAoProcesses 1.3.24.11.1.2.6 nonLeaf
pmAoVirtualMemory 1.3.24.11.1.2.7 nonLeaf
pmAoVmSwappedInProcs 1.3.24.11.1.2.7.1 Counter read-only
pmAoVmSwappedOutProcs 1.3.24.11.1.2.7.2 Counter read-only
pmAoVmVmstatActive 1.3.24.11.1.2.7.3 Gauge read-only
pmAoVmVmstatInactive 1.3.24.11.1.2.7.4 Gauge read-only
pmAoVmVmstatFree 1.3.24.11.1.2.7.5 Gauge read-only
pmAoVmVmstatWire 1.3.24.11.1.2.7.6 Gauge read-only
pmAoVmSwapRemaining 1.3.24.11.1.2.7.7 Gauge read-only
pmAoVmSwapInUse 1.3.24.11.1.2.7.8 Gauge read-only
pmAoVmSwapDefault 1.3.24.11.1.2.7.9 DisplayString read-only
pmAoVmSwapConfigTable 1.3.24.11.1.2.7.10 Aggregate not-accessible
pmAoVmSwapConfigEntry 1.3.24.11.1.2.7.10.1 Aggregate not-accessible
pmAoVmSiIndex 1.3.24.11.1.2.7.10.1.1 INTEGER read-only
pmAoVmSiPartition 1.3.24.11.1.2.7.10.1.2 DisplayString read-only
pmAoVmSiPagesAllocated 1.3.24.11.1.2.7.10.1.3 INTEGER read-only
pmAoVmSiPagesInUse 1.3.24.11.1.2.7.10.1.4 Gauge read-only
pmAoVmSiPagesFree 1.3.24.11.1.2.7.10.1.5 Gauge read-only
pmAoBufferCache 1.3.24.11.1.2.8 nonLeaf
pmAoBcReadHits 1.3.24.11.1.2.8.1 Counter read-only
pmAoBcReadMisses 1.3.24.11.1.2.8.2 Counter read-only
pmAoInterfaces 1.3.24.11.1.2.9 nonLeaf
pmAoIfEthTable 1.3.24.11.1.2.9.1 Aggregate not-accessible
pmAoIfEthEntry 1.3.24.11.1.2.9.1.1 Aggregate not-accessible
pmAoIfEthIndex 1.3.24.11.1.2.9.1.1.1 INTEGER read-only
pmAoIfEthName 1.3.24.11.1.2.9.1.1.2 DisplayString read-only
pmAoIfEthCollisions 1.3.24.11.1.2.9.1.1.3 Counter read-only
pmSparcSolaris 1.3.24.11.1.3 nonLeaf
pmSsSystem 1.3.24.11.1.3.1 nonLeaf
pmSsSharedMemory 1.3.24.11.1.3.2 nonLeaf
pmSsSemaphores 1.3.24.11.1.3.3 nonLeaf
pmSsCpu 1.3.24.11.1.3.4 nonLeaf
pmSsIo 1.3.24.11.1.3.5 nonLeaf
pmSsProcesses 1.3.24.11.1.3.6 nonLeaf
pmSsBufferCache 1.3.24.11.1.3.7 nonLeaf
pmSsVirtualMemory 1.3.24.11.1.3.8 nonLeaf
pmHppaHpux 1.3.24.11.1.4 nonLeaf
pmHhSystem 1.3.24.11.1.4.1 nonLeaf
pmHhSharedMemory 1.3.24.11.1.4.2 nonLeaf
pmHhSemaphores 1.3.24.11.1.4.3 nonLeaf
pmHhCpu 1.3.24.11.1.4.4 nonLeaf
pmHhIo 1.3.24.11.1.4.5 nonLeaf
pmHhProcesses 1.3.24.11.1.4.6 nonLeaf
pmHhVirtualMemory 1.3.24.11.1.4.7 nonLeaf
pmHhBufferCache 1.3.24.11.1.4.8 nonLeaf
pmRs6kAix 1.3.24.11.1.5 nonLeaf
pmRaSystem 1.3.24.11.1.5.1 nonLeaf
pmRaSharedMemory 1.3.24.11.1.5.2 nonLeaf
pmRaSemaphores 1.3.24.11.1.5.3 nonLeaf
pmRaCpu 1.3.24.11.1.5.4 nonLeaf
pmRaIo 1.3.24.11.1.5.5 nonLeaf
pmRaProcesses 1.3.24.11.1.5.6 nonLeaf
pmRaVirtualMemory 1.3.24.11.1.5.7 nonLeaf
pmRaBufferCache 1.3.24.11.1.5.8 nonLeaf
advfsPrivate 1.3.24.11.2 nonLeaf
joint_iso_ccitt 2 nonLeaf
/* END PMGRDINFO.DAT */
/* START HOSTMIBINFO.DAT */
/*
*
* Copyright (C) 1994 by SNMP Research, Incorporated.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the
* inclusion of the above copyright notice. This software or any other
* copies thereof may not be provided or otherwise made available to any
* other person. No title to and ownership of the software is hereby
* transferred.
*
* The information in this software is subject to change without notice
* and should not be construed as a commitment by SNMP Research, Incorporated.
*
* Restricted Rights Legend:
* Use, duplication, or disclosure by the Government is subject to
* restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS 52.227-7013
* and in similar clauses in the FAR and NASA FAR Supplement.
*
*/
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
host 1.3.6.1.2.1.25 nonLeaf
hrSystem 1.3.6.1.2.1.25.1 nonLeaf
hrSystemUptime 1.3.6.1.2.1.25.1.1 TimeTicks read-only
hrSystemDate 1.3.6.1.2.1.25.1.2 OctetString read-write
hrSystemInitialLoadDevice 1.3.6.1.2.1.25.1.3 INTEGER read-write
hrSystemInitialLoadParameters 1.3.6.1.2.1.25.1.4 OctetString read-write
hrSystemNumUsers 1.3.6.1.2.1.25.1.5 Gauge read-only
hrSystemProcesses 1.3.6.1.2.1.25.1.6 Gauge read-only
hrSystemMaxProcesses 1.3.6.1.2.1.25.1.7 INTEGER read-only
hrStorage 1.3.6.1.2.1.25.2 nonLeaf
hrStorageTypes 1.3.6.1.2.1.25.2.1 nonLeaf
hrStorageOther 1.3.6.1.2.1.25.2.1.1 nonLeaf
hrStorageRam 1.3.6.1.2.1.25.2.1.2 nonLeaf
hrStorageVirtualMemory 1.3.6.1.2.1.25.2.1.3 nonLeaf
hrStorageFixedDisk 1.3.6.1.2.1.25.2.1.4 nonLeaf
hrStorageRemovableDisk 1.3.6.1.2.1.25.2.1.5 nonLeaf
hrStorageFloppyDisk 1.3.6.1.2.1.25.2.1.6 nonLeaf
hrStorageCompactDisc 1.3.6.1.2.1.25.2.1.7 nonLeaf
hrStorageRamDisk 1.3.6.1.2.1.25.2.1.8 nonLeaf
hrMemorySize 1.3.6.1.2.1.25.2.2 INTEGER read-only
hrStorageTable 1.3.6.1.2.1.25.2.3 Aggregate not-accessible
hrStorageEntry 1.3.6.1.2.1.25.2.3.1 Aggregate not-accessible
hrStorageIndex 1.3.6.1.2.1.25.2.3.1.1 INTEGER read-only
hrStorageType 1.3.6.1.2.1.25.2.3.1.2 ObjectID read-only
hrStorageDescr 1.3.6.1.2.1.25.2.3.1.3 DisplayString read-only
hrStorageAllocationUnits 1.3.6.1.2.1.25.2.3.1.4 INTEGER read-only
hrStorageSize 1.3.6.1.2.1.25.2.3.1.5 INTEGER read-write
hrStorageUsed 1.3.6.1.2.1.25.2.3.1.6 INTEGER read-only
hrStorageAllocationFailures 1.3.6.1.2.1.25.2.3.1.7 Counter read-only
hrDevice 1.3.6.1.2.1.25.3 nonLeaf
hrDeviceTypes 1.3.6.1.2.1.25.3.1 nonLeaf
hrDeviceOther 1.3.6.1.2.1.25.3.1.1 nonLeaf
hrDeviceUnknown 1.3.6.1.2.1.25.3.1.2 nonLeaf
hrDeviceProcessor 1.3.6.1.2.1.25.3.1.3 nonLeaf
hrDeviceNetwork 1.3.6.1.2.1.25.3.1.4 nonLeaf
hrDevicePrinter 1.3.6.1.2.1.25.3.1.5 nonLeaf
hrDeviceDiskStorage 1.3.6.1.2.1.25.3.1.6 nonLeaf
hrDeviceVideo 1.3.6.1.2.1.25.3.1.10 nonLeaf
hrDeviceAudio 1.3.6.1.2.1.25.3.1.11 nonLeaf
hrDeviceCoprocessor 1.3.6.1.2.1.25.3.1.12 nonLeaf
hrDeviceKeyboard 1.3.6.1.2.1.25.3.1.13 nonLeaf
hrDeviceModem 1.3.6.1.2.1.25.3.1.14 nonLeaf
hrDeviceParallelPort 1.3.6.1.2.1.25.3.1.15 nonLeaf
hrDevicePointing 1.3.6.1.2.1.25.3.1.16 nonLeaf
hrDeviceSerialPort 1.3.6.1.2.1.25.3.1.17 nonLeaf
hrDeviceTape 1.3.6.1.2.1.25.3.1.18 nonLeaf
hrDeviceClock 1.3.6.1.2.1.25.3.1.19 nonLeaf
hrDeviceVolatileMemory 1.3.6.1.2.1.25.3.1.20 nonLeaf
hrDeviceNonVolatileMemory 1.3.6.1.2.1.25.3.1.21 nonLeaf
hrDeviceTable 1.3.6.1.2.1.25.3.2 Aggregate not-accessible
hrDeviceEntry 1.3.6.1.2.1.25.3.2.1 Aggregate not-accessible
hrDeviceIndex 1.3.6.1.2.1.25.3.2.1.1 INTEGER read-only
hrDeviceType 1.3.6.1.2.1.25.3.2.1.2 ObjectID read-only
hrDeviceDescr 1.3.6.1.2.1.25.3.2.1.3 DisplayString read-only
hrDeviceID 1.3.6.1.2.1.25.3.2.1.4 ObjectID read-only
hrDeviceStatus 1.3.6.1.2.1.25.3.2.1.5 INTEGER read-only
(
1 unknown
2 running
3 warning
4 testing
5 down
)
hrDeviceErrors 1.3.6.1.2.1.25.3.2.1.6 Counter read-only
hrProcessorTable 1.3.6.1.2.1.25.3.3 Aggregate not-accessible
hrProcessorEntry 1.3.6.1.2.1.25.3.3.1 Aggregate not-accessible
hrProcessorFrwID 1.3.6.1.2.1.25.3.3.1.1 ObjectID read-only
hrProcessorLoad 1.3.6.1.2.1.25.3.3.1.2 INTEGER read-only
hrNetworkTable 1.3.6.1.2.1.25.3.4 Aggregate not-accessible
hrNetworkEntry 1.3.6.1.2.1.25.3.4.1 Aggregate not-accessible
hrNetworkIfIndex 1.3.6.1.2.1.25.3.4.1.1 INTEGER read-only
hrPrinterTable 1.3.6.1.2.1.25.3.5 Aggregate not-accessible
hrPrinterEntry 1.3.6.1.2.1.25.3.5.1 Aggregate not-accessible
hrPrinterStatus 1.3.6.1.2.1.25.3.5.1.1 INTEGER read-only
(
1 other
2 unknown
3 idle
4 printing
5 warmup
)
hrPrinterDetectedErrorState 1.3.6.1.2.1.25.3.5.1.2 OctetString read-only
hrDiskStorageTable 1.3.6.1.2.1.25.3.6 Aggregate not-accessible
hrDiskStorageEntry 1.3.6.1.2.1.25.3.6.1 Aggregate not-accessible
hrDiskStorageAccess 1.3.6.1.2.1.25.3.6.1.1 INTEGER read-only
(
1 readWrite
2 readOnly
)
hrDiskStorageMedia 1.3.6.1.2.1.25.3.6.1.2 INTEGER read-only
(
1 other
2 unknown
3 hardDisk
4 floppyDisk
5 opticalDiskROM
6 opticalDiskWORM
7 opticalDiskRW
8 ramDisk
)
hrDiskStorageRemoveble 1.3.6.1.2.1.25.3.6.1.3 INTEGER read-only
(
1 true
2 false
)
hrDiskStorageCapacity 1.3.6.1.2.1.25.3.6.1.4 INTEGER read-only
hrPartitionTable 1.3.6.1.2.1.25.3.7 Aggregate not-accessible
hrPartitionEntry 1.3.6.1.2.1.25.3.7.1 Aggregate not-accessible
hrPartitionIndex 1.3.6.1.2.1.25.3.7.1.1 INTEGER read-only
hrPartitionLabel 1.3.6.1.2.1.25.3.7.1.2 OctetString read-only
hrPartitionID 1.3.6.1.2.1.25.3.7.1.3 OctetString read-only
hrPartitionSize 1.3.6.1.2.1.25.3.7.1.4 INTEGER read-only
hrPartitionFSIndex 1.3.6.1.2.1.25.3.7.1.5 INTEGER read-only
hrFSTable 1.3.6.1.2.1.25.3.8 Aggregate not-accessible
hrFSEntry 1.3.6.1.2.1.25.3.8.1 Aggregate not-accessible
hrFSIndex 1.3.6.1.2.1.25.3.8.1.1 INTEGER read-only
hrFSMountPoint 1.3.6.1.2.1.25.3.8.1.2 OctetString read-only
hrFSRemoteMountPoint 1.3.6.1.2.1.25.3.8.1.3 OctetString read-only
hrFSType 1.3.6.1.2.1.25.3.8.1.4 ObjectID read-only
hrFSAccess 1.3.6.1.2.1.25.3.8.1.5 INTEGER read-only
(
1 readWrite
2 readOnly
)
hrFSBootable 1.3.6.1.2.1.25.3.8.1.6 INTEGER read-only
(
1 true
2 false
)
hrFSStorageIndex 1.3.6.1.2.1.25.3.8.1.7 INTEGER read-only
hrFSLastFullBackupDate 1.3.6.1.2.1.25.3.8.1.8 OctetString read-write
hrFSLastPartialBackupDate 1.3.6.1.2.1.25.3.8.1.9 OctetString read-write
hrFSTypes 1.3.6.1.2.1.25.3.9 nonLeaf
hrFSOther 1.3.6.1.2.1.25.3.9.1 nonLeaf
hrFSUnknown 1.3.6.1.2.1.25.3.9.2 nonLeaf
hrFSBerkeleyFFS 1.3.6.1.2.1.25.3.9.3 nonLeaf
hrFSSys5FS 1.3.6.1.2.1.25.3.9.4 nonLeaf
hrFSFat 1.3.6.1.2.1.25.3.9.5 nonLeaf
hrFSHPFS 1.3.6.1.2.1.25.3.9.6 nonLeaf
hrFSHFS 1.3.6.1.2.1.25.3.9.7 nonLeaf
hrFSMFS 1.3.6.1.2.1.25.3.9.8 nonLeaf
hrFSNTFS 1.3.6.1.2.1.25.3.9.9 nonLeaf
hrFSVNode 1.3.6.1.2.1.25.3.9.10 nonLeaf
hrFSJournaled 1.3.6.1.2.1.25.3.9.11 nonLeaf
hrFSiso9660 1.3.6.1.2.1.25.3.9.12 nonLeaf
hrFSRockRidge 1.3.6.1.2.1.25.3.9.13 nonLeaf
hrFSNFS 1.3.6.1.2.1.25.3.9.14 nonLeaf
hrFSNetware 1.3.6.1.2.1.25.3.9.15 nonLeaf
hrFSAFS 1.3.6.1.2.1.25.3.9.16 nonLeaf
hrFSDFS 1.3.6.1.2.1.25.3.9.17 nonLeaf
hrFSAppleshare 1.3.6.1.2.1.25.3.9.18 nonLeaf
hrFSRFS 1.3.6.1.2.1.25.3.9.19 nonLeaf
hrFSDGCFS 1.3.6.1.2.1.25.3.9.20 nonLeaf
hrFSBFS 1.3.6.1.2.1.25.3.9.21 nonLeaf
hrSWRun 1.3.6.1.2.1.25.4 nonLeaf
hrSWOSIndex 1.3.6.1.2.1.25.4.1 INTEGER read-only
hrSWRunTable 1.3.6.1.2.1.25.4.2 Aggregate not-accessible
hrSWRunEntry 1.3.6.1.2.1.25.4.2.1 Aggregate not-accessible
hrSWRunIndex 1.3.6.1.2.1.25.4.2.1.1 INTEGER read-only
hrSWRunName 1.3.6.1.2.1.25.4.2.1.2 OctetString read-only
hrSWRunID 1.3.6.1.2.1.25.4.2.1.3 ObjectID read-only
hrSWRunPath 1.3.6.1.2.1.25.4.2.1.4 OctetString read-only
hrSWRunParameters 1.3.6.1.2.1.25.4.2.1.5 OctetString read-only
hrSWRunType 1.3.6.1.2.1.25.4.2.1.6 INTEGER read-only
(
1 unknown
2 operatingSystem
3 deviceDriver
4 application
)
hrSWRunStatus 1.3.6.1.2.1.25.4.2.1.7 INTEGER read-write
(
1 running
2 runnable
3 notRunnable
4 invalid
)
hrSWRunPerf 1.3.6.1.2.1.25.5 nonLeaf
hrSWRunPerfTable 1.3.6.1.2.1.25.5.1 Aggregate not-accessible
hrSWRunPerfEntry 1.3.6.1.2.1.25.5.1.1 Aggregate not-accessible
hrSWRunPerfCPU 1.3.6.1.2.1.25.5.1.1.1 INTEGER read-only
hrSWRunPerfMem 1.3.6.1.2.1.25.5.1.1.2 INTEGER read-only
hrSWInstalled 1.3.6.1.2.1.25.6 nonLeaf
hrSWInstalledLastChange 1.3.6.1.2.1.25.6.1 TimeTicks read-only
hrSWInstalledLastUpdateTime 1.3.6.1.2.1.25.6.2 TimeTicks read-only
hrSWInstalledTable 1.3.6.1.2.1.25.6.3 Aggregate not-accessible
hrSWInstalledEntry 1.3.6.1.2.1.25.6.3.1 Aggregate not-accessible
hrSWInstalledIndex 1.3.6.1.2.1.25.6.3.1.1 INTEGER read-only
hrSWInstalledName 1.3.6.1.2.1.25.6.3.1.2 OctetString read-only
hrSWInstalledID 1.3.6.1.2.1.25.6.3.1.3 ObjectID read-only
hrSWInstalledType 1.3.6.1.2.1.25.6.3.1.4 INTEGER read-only
(
1 unknown
2 operatingSystem
3 deviceDriver
4 application
)
hrSWInstalledDate 1.3.6.1.2.1.25.6.3.1.5 OctetString read-only
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
joint_iso_ccitt 2 nonLeaf
/* END HOSTMIBINFO.DAT */
/* START PMGRDINFO.DAT */
/*
*
* Copyright (C) 1994 by SNMP Research, Incorporated.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the
* inclusion of the above copyright notice. This software or any other
* copies thereof may not be provided or otherwise made available to any
* other person. No title to and ownership of the software is hereby
* transferred.
*
* The information in this software is subject to change without notice
* and should not be construed as a commitment by SNMP Research, Incorporated.
*
* Restricted Rights Legend:
* Use, duplication, or disclosure by the Government is subject to
* restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS 52.227-7013
* and in similar clauses in the FAR and NASA FAR Supplement.
*
*/
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
dec 1.3.24 nonLeaf
pm 1.3.24.11 nonLeaf
pmPrivate 1.3.24.11.1 nonLeaf
pmCommon 1.3.24.11.1.1 nonLeaf
pmCmSystem 1.3.24.11.1.1.1 nonLeaf
pmCmSysProcessorType 1.3.24.11.1.1.1.1 INTEGER read-only
(
1 other
2 alpha
3 sparc
4 hp9000-700
5 rs6000
)
pmCmSysOperatingSystem 1.3.24.11.1.1.1.2 INTEGER read-only
(
1 other
2 digital-unix
3 solaris
4 hpux
5 aix
)
pmCmSysOSMajorVersion 1.3.24.11.1.1.1.3 INTEGER read-only
pmCmSysOSMinorVersion 1.3.24.11.1.1.1.4 INTEGER read-only
pmCmSysPageSize 1.3.24.11.1.1.1.5 INTEGER read-only
pmCmSysNumCpusOnline 1.3.24.11.1.1.1.6 INTEGER read-only
pmCmSysPhysMem 1.3.24.11.1.1.1.7 INTEGER read-only
pmCmSysPhysMemUsed 1.3.24.11.1.1.1.8 Gauge read-only
pmCmSysUpTime 1.3.24.11.1.1.1.9 TimeTicks read-only
pmCmSysDate 1.3.24.11.1.1.1.10 OctetString read-only
pmCmSysNumUsers 1.3.24.11.1.1.1.11 Gauge read-only
pmCmSysProcesses 1.3.24.11.1.1.1.12 Gauge read-only
pmCmSysMaxProcesses 1.3.24.11.1.1.1.13 INTEGER read-only
pmCmSysTtyInChars 1.3.24.11.1.1.1.15 Counter read-only
pmCmSysTtyOutChars 1.3.24.11.1.1.1.16 Counter read-only
pmCmSysDeviceInterrupts 1.3.24.11.1.1.1.17 Counter read-only
pmCmSysSystemCalls 1.3.24.11.1.1.1.18 Counter read-only
pmCmSysContextSwitches 1.3.24.11.1.1.1.19 Counter read-only
pmCmSysTotalSwap 1.3.24.11.1.1.1.20 INTEGER read-only
pmCmIo 1.3.24.11.1.1.3 nonLeaf
pmCmIoTransfersTable 1.3.24.11.1.1.3.1 Aggregate not-accessible
pmCmIoTransfersEntry 1.3.24.11.1.1.3.1.1 Aggregate not-accessible
pmCmIoXfrsDeviceId 1.3.24.11.1.1.3.1.1.1 INTEGER read-only
pmCmIoXfrsDeviceName 1.3.24.11.1.1.3.1.1.2 DisplayString read-only
pmCmIoXfrsCompletedTransfers 1.3.24.11.1.1.3.1.1.3 Counter read-only
pmCmIoXfrsTransferredBytes 1.3.24.11.1.1.3.1.1.4 Counter read-only
pmCmProcesses 1.3.24.11.1.1.4 nonLeaf
pmCmProcsMinUpdatePeriod 1.3.24.11.1.1.4.1 INTEGER read-only
pmCmProcsRunnable 1.3.24.11.1.1.4.2 Gauge read-only
pmCmProcsWaiting 1.3.24.11.1.1.4.3 Gauge read-only
pmCmProcsUninterruptible 1.3.24.11.1.1.4.4 Gauge read-only
pmCmProcsTopNLastUpdate 1.3.24.11.1.1.4.5 INTEGER read-only
pmCmProcsTopNSize 1.3.24.11.1.1.4.6 INTEGER read-only
pmCmProcsTopNUsersLastUpdate 1.3.24.11.1.1.4.7 INTEGER read-only
pmCmProcsTopNUsersSize 1.3.24.11.1.1.4.8 INTEGER read-only
pmCmProcsTopNSortAlgorithm 1.3.24.11.1.1.4.9 INTEGER read-only
(
1 pctcpu-cputime-vsize
2 vsize-pctcpu-cputime
3 cputime-vsize-pctcpu
)
pmCmProcsTopNTable 1.3.24.11.1.1.4.10 Aggregate not-accessible
pmCmProcsTopNEntry 1.3.24.11.1.1.4.10.1 Aggregate not-accessible
pmCmTnRank 1.3.24.11.1.1.4.10.1.1 INTEGER read-only
pmCmTnPid 1.3.24.11.1.1.4.10.1.2 INTEGER read-only
pmCmTnParentPid 1.3.24.11.1.1.4.10.1.3 INTEGER read-only
pmCmTnUserId 1.3.24.11.1.1.4.10.1.4 INTEGER read-only
pmCmTnEffUserId 1.3.24.11.1.1.4.10.1.5 INTEGER read-only
pmCmTnUserName 1.3.24.11.1.1.4.10.1.6 DisplayString read-only
pmCmTnUserPriority 1.3.24.11.1.1.4.10.1.7 Gauge read-only
pmCmTnNice 1.3.24.11.1.1.4.10.1.8 INTEGER read-only
pmCmTnState 1.3.24.11.1.1.4.10.1.9 INTEGER read-only
(
100 other
101 run
102 stop
103 wait
104 unintr
105 halt
106 zombie
107 exit
)
pmCmTnVirtSize 1.3.24.11.1.1.4.10.1.10 Gauge read-only
pmCmTnResSetSize 1.3.24.11.1.1.4.10.1.11 Gauge read-only
pmCmTnPercentCpu 1.3.24.11.1.1.4.10.1.12 INTEGER read-only
pmCmTnCpuTime 1.3.24.11.1.1.4.10.1.13 Counter read-only
pmCmTnWhat 1.3.24.11.1.1.4.10.1.14 DisplayString read-only
pmCmProcsTopNUsersTable 1.3.24.11.1.1.4.11 Aggregate not-accessible
pmCmProcsTopNUsersEntry 1.3.24.11.1.1.4.11.1 Aggregate not-accessible
pmCmTnuRank 1.3.24.11.1.1.4.11.1.1 INTEGER read-only
pmCmTnuUserId 1.3.24.11.1.1.4.11.1.2 INTEGER read-only
pmCmTnuUserName 1.3.24.11.1.1.4.11.1.4 DisplayString read-only
pmCmTnuTotalPercentCpu 1.3.24.11.1.1.4.11.1.5 INTEGER read-only
pmCmTnuTotalMemoryUsage 1.3.24.11.1.1.4.11.1.6 Gauge read-only
pmCmTnuTotalCpuTime 1.3.24.11.1.1.4.11.1.7 Counter read-only
pmCmTnuTotalProcesses 1.3.24.11.1.1.4.11.1.8 Gauge read-only
pmCmVirtualMemory 1.3.24.11.1.1.5 nonLeaf
pmCmVmPageFaults 1.3.24.11.1.1.5.1 Counter read-only
pmCmVmPageInEvents 1.3.24.11.1.1.5.2 Counter read-only
pmCmVmPageOutEvents 1.3.24.11.1.1.5.3 Counter read-only
pmCmVmPagedInPages 1.3.24.11.1.1.5.4 Counter read-only
pmCmVmPagedOutPages 1.3.24.11.1.1.5.5 Counter read-only
pmCmFileSystem 1.3.24.11.1.1.6 nonLeaf
pmCmFsTableMinUpdatePeriod 1.3.24.11.1.1.6.1 INTEGER read-only
pmCmFsTableLastUpdate 1.3.24.11.1.1.6.2 INTEGER read-only
pmCmFsTable 1.3.24.11.1.1.6.3 Aggregate not-accessible
pmCmFsEntry 1.3.24.11.1.1.6.3.1 Aggregate not-accessible
pmCmFsIndex 1.3.24.11.1.1.6.3.1.1 INTEGER read-only
pmCmFsName 1.3.24.11.1.1.6.3.1.2 DisplayString read-only
pmCmFsMountPoint 1.3.24.11.1.1.6.3.1.3 DisplayString read-only
pmCmFsType 1.3.24.11.1.1.6.3.1.4 INTEGER read-only
(
1 other
2 unknown
3 berkeley-ffs
4 sys5-fs
10 vnode
11 journaled
12 iso9660
13 rock-ridge
114 cdfs
14 nfs
115 nfs3
16 afs
17 dfs
19 rfs
20 dgcfs
21 bfs
122 mem-fs
123 proc-fs
124 ufs
125 advfs
126 ffm-fs
)
pmCmFsBlockSize 1.3.24.11.1.1.6.3.1.5 INTEGER read-only
pmCmFsTotalSize 1.3.24.11.1.1.6.3.1.6 INTEGER read-only
pmCmFsFreeSize 1.3.24.11.1.1.6.3.1.7 Gauge read-only
pmCmFsAvailableSize 1.3.24.11.1.1.6.3.1.8 Gauge read-only
pmCmFsUsedSize 1.3.24.11.1.1.6.3.1.9 Gauge read-only
pmCmFsTotalInodes 1.3.24.11.1.1.6.3.1.10 INTEGER read-only
pmCmFsFreeInodes 1.3.24.11.1.1.6.3.1.11 Gauge read-only
pmCmFsUsedInodes 1.3.24.11.1.1.6.3.1.12 Gauge read-only
pmCmOncRpc 1.3.24.11.1.1.7 nonLeaf
pmCmOncRpcClCalls 1.3.24.11.1.1.7.1 Counter read-only
pmCmOncRpcClBadCalls 1.3.24.11.1.1.7.2 Counter read-only
pmCmOncRpcClRetransmits 1.3.24.11.1.1.7.3 Counter read-only
pmCmOncRpcClBadXids 1.3.24.11.1.1.7.4 Counter read-only
pmCmOncRpcClTimeouts 1.3.24.11.1.1.7.5 Counter read-only
pmCmOncRpcClWaits 1.3.24.11.1.1.7.6 Counter read-only
pmCmOncRpcClNewCreds 1.3.24.11.1.1.7.7 Counter read-only
pmCmOncRpcClBadVerfs 1.3.24.11.1.1.7.8 Counter read-only
pmCmOncRpcSvCalls 1.3.24.11.1.1.7.9 Counter read-only
pmCmOncRpcSvBadCalls 1.3.24.11.1.1.7.10 Counter read-only
pmCmOncRpcSvNullRcvs 1.3.24.11.1.1.7.11 Counter read-only
pmCmOncRpcSvBadLens 1.3.24.11.1.1.7.12 Counter read-only
pmCmOncRpcSvXdrCalls 1.3.24.11.1.1.7.13 Counter read-only
pmCmNfs 1.3.24.11.1.1.8 nonLeaf
pmCmNfsNClSleeps 1.3.24.11.1.1.8.1 Counter read-only
pmCmNfsNClGets 1.3.24.11.1.1.8.2 Counter read-only
pmCmNfsNClCalls 1.3.24.11.1.1.8.3 Counter read-only
pmCmNfsNClBadCalls 1.3.24.11.1.1.8.4 Counter read-only
pmCmNfsNSvCalls 1.3.24.11.1.1.8.5 Counter read-only
pmCmNfsNSvBadCalls 1.3.24.11.1.1.8.6 Counter read-only
pmCmNfsClFileAttReqs 1.3.24.11.1.1.8.7 Counter read-only
pmCmNfsClFileAttChngs 1.3.24.11.1.1.8.8 Counter read-only
pmCmNfsClRcvFileHandles 1.3.24.11.1.1.8.9 Counter read-only
pmCmNfsClSymLinkInfoReads 1.3.24.11.1.1.8.10 Counter read-only
pmCmNfsClFileReads 1.3.24.11.1.1.8.11 Counter read-only
pmCmNfsClFileWrites 1.3.24.11.1.1.8.12 Counter read-only
pmCmNfsClFileCreates 1.3.24.11.1.1.8.13 Counter read-only
pmCmNfsClFileRemoves 1.3.24.11.1.1.8.14 Counter read-only
pmCmNfsClFileRenames 1.3.24.11.1.1.8.15 Counter read-only
pmCmNfsClHardLinkCreates 1.3.24.11.1.1.8.16 Counter read-only
pmCmNfsClSymLinkCreates 1.3.24.11.1.1.8.17 Counter read-only
pmCmNfsClDirCreates 1.3.24.11.1.1.8.18 Counter read-only
pmCmNfsClDirRemoves 1.3.24.11.1.1.8.19 Counter read-only
pmCmNfsClDirReads 1.3.24.11.1.1.8.20 Counter read-only
pmCmNfsClFsStatReqs 1.3.24.11.1.1.8.21 Counter read-only
pmCmNfsSvFileAttReqs 1.3.24.11.1.1.8.22 Counter read-only
pmCmNfsSvFileAttChngs 1.3.24.11.1.1.8.23 Counter read-only
pmCmNfsSvRcvFileHandles 1.3.24.11.1.1.8.24 Counter read-only
pmCmNfsSvSymLinkInfoReads 1.3.24.11.1.1.8.25 Counter read-only
pmCmNfsSvFileReads 1.3.24.11.1.1.8.26 Counter read-only
pmCmNfsSvFileWrites 1.3.24.11.1.1.8.27 Counter read-only
pmCmNfsSvFileCreates 1.3.24.11.1.1.8.28 Counter read-only
pmCmNfsSvFileRemoves 1.3.24.11.1.1.8.29 Counter read-only
pmCmNfsSvFileRenames 1.3.24.11.1.1.8.30 Counter read-only
pmCmNfsSvHardLinkCreates 1.3.24.11.1.1.8.31 Counter read-only
pmCmNfsSvSymLinkCreates 1.3.24.11.1.1.8.32 Counter read-only
pmCmNfsSvDirCreates 1.3.24.11.1.1.8.33 Counter read-only
pmCmNfsSvDirRemoves 1.3.24.11.1.1.8.34 Counter read-only
pmCmNfsSvDirReads 1.3.24.11.1.1.8.35 Counter read-only
pmCmNfsSvFsStatReqs 1.3.24.11.1.1.8.36 Counter read-only
pmCmNfs3ClFileAttReqs 1.3.24.11.1.1.8.37 Counter read-only
pmCmNfs3ClFileAttChngs 1.3.24.11.1.1.8.38 Counter read-only
pmCmNfs3ClRcvFileHandles 1.3.24.11.1.1.8.39 Counter read-only
pmCmNfs3ClAccess 1.3.24.11.1.1.8.40 Counter read-only
pmCmNfs3ClSymLinkInfoReads 1.3.24.11.1.1.8.41 Counter read-only
pmCmNfs3ClFileReads 1.3.24.11.1.1.8.42 Counter read-only
pmCmNfs3ClFileWrites 1.3.24.11.1.1.8.43 Counter read-only
pmCmNfs3ClFileCreates 1.3.24.11.1.1.8.44 Counter read-only
pmCmNfs3ClDirCreates 1.3.24.11.1.1.8.45 Counter read-only
pmCmNfs3ClSymLinkCreates 1.3.24.11.1.1.8.46 Counter read-only
pmCmNfs3ClMknod 1.3.24.11.1.1.8.47 Counter read-only
pmCmNfs3ClFileRemoves 1.3.24.11.1.1.8.48 Counter read-only
pmCmNfs3ClDirRemoves 1.3.24.11.1.1.8.49 Counter read-only
pmCmNfs3ClFileRenames 1.3.24.11.1.1.8.50 Counter read-only
pmCmNfs3ClHardLinkCreates 1.3.24.11.1.1.8.51 Counter read-only
pmCmNfs3ClDirReads 1.3.24.11.1.1.8.52 Counter read-only
pmCmNfs3ClDirReadsPlus 1.3.24.11.1.1.8.53 Counter read-only
pmCmNfs3ClFsStatReqs 1.3.24.11.1.1.8.54 Counter read-only
pmCmNfs3ClFsInfoReqs 1.3.24.11.1.1.8.55 Counter read-only
pmCmNfs3ClPathConf 1.3.24.11.1.1.8.56 Counter read-only
pmCmNfs3ClCommits 1.3.24.11.1.1.8.57 Counter read-only
pmCmNfs3SvFileAttReqs 1.3.24.11.1.1.8.58 Counter read-only
pmCmNfs3SvFileAttChngs 1.3.24.11.1.1.8.59 Counter read-only
pmCmNfs3SvRcvFileHandles 1.3.24.11.1.1.8.60 Counter read-only
pmCmNfs3SvAccess 1.3.24.11.1.1.8.61 Counter read-only
pmCmNfs3SvSymLinkInfoReads 1.3.24.11.1.1.8.62 Counter read-only
pmCmNfs3SvFileReads 1.3.24.11.1.1.8.63 Counter read-only
pmCmNfs3SvFileWrites 1.3.24.11.1.1.8.64 Counter read-only
pmCmNfs3SvFileCreates 1.3.24.11.1.1.8.65 Counter read-only
pmCmNfs3SvDirCreates 1.3.24.11.1.1.8.66 Counter read-only
pmCmNfs3SvSymLinkCreates 1.3.24.11.1.1.8.67 Counter read-only
pmCmNfs3SvMknod 1.3.24.11.1.1.8.68 Counter read-only
pmCmNfs3SvFileRemoves 1.3.24.11.1.1.8.69 Counter read-only
pmCmNfs3SvDirRemoves 1.3.24.11.1.1.8.70 Counter read-only
pmCmNfs3SvFileRenames 1.3.24.11.1.1.8.71 Counter read-only
pmCmNfs3SvHardLinkCreates 1.3.24.11.1.1.8.72 Counter read-only
pmCmNfs3SvDirReads 1.3.24.11.1.1.8.73 Counter read-only
pmCmNfs3SvDirReadsPlus 1.3.24.11.1.1.8.74 Counter read-only
pmCmNfs3SvFsStatReqs 1.3.24.11.1.1.8.75 Counter read-only
pmCmNfs3SvFsInfoReqs 1.3.24.11.1.1.8.76 Counter read-only
pmCmNfs3SvPathConf 1.3.24.11.1.1.8.77 Counter read-only
pmCmNfs3SvCommits 1.3.24.11.1.1.8.78 Counter read-only
pmAlphaDigitalUNIX 1.3.24.11.1.2 nonLeaf
pmAoSharedMemory 1.3.24.11.1.2.2 nonLeaf
pmAoShMemMaxSegSize 1.3.24.11.1.2.2.1 INTEGER read-only
pmAoShMemMinSegSize 1.3.24.11.1.2.2.2 INTEGER read-only
pmAoShMemMaxSegsPerProcess 1.3.24.11.1.2.2.3 INTEGER read-only
pmAoShMemNumIds 1.3.24.11.1.2.2.4 INTEGER read-only
pmAoSemaphores 1.3.24.11.1.2.3 nonLeaf
pmAoSemMaxSemsPerId 1.3.24.11.1.2.3.1 INTEGER read-only
pmAoSemMaxOpsPerSemopCall 1.3.24.11.1.2.3.2 INTEGER read-only
pmAoSemMaxUndosPerProcess 1.3.24.11.1.2.3.3 INTEGER read-only
pmAoSemMaxValue 1.3.24.11.1.2.3.4 INTEGER read-only
pmAoSemNumIds 1.3.24.11.1.2.3.5 INTEGER read-only
pmAoCpu 1.3.24.11.1.2.4 nonLeaf
pmAoCpuAvgRunQLen5Sec 1.3.24.11.1.2.4.1 INTEGER read-only
pmAoCpuAvgRunQLen30Sec 1.3.24.11.1.2.4.2 INTEGER read-only
pmAoCpuAvgRunQLen60Sec 1.3.24.11.1.2.4.3 INTEGER read-only
pmAoCpuUtilTable 1.3.24.11.1.2.4.4 Aggregate not-accessible
pmAoCpuUtilEntry 1.3.24.11.1.2.4.4.1 Aggregate not-accessible
pmAoCuIndex 1.3.24.11.1.2.4.4.1.1 INTEGER read-only
pmAoCuCpuId 1.3.24.11.1.2.4.4.1.2 DisplayString read-only
pmAoCuUser 1.3.24.11.1.2.4.4.1.3 Counter read-only
pmAoCuNice 1.3.24.11.1.2.4.4.1.4 Counter read-only
pmAoCuSystem 1.3.24.11.1.2.4.4.1.5 Counter read-only
pmAoCuIdle 1.3.24.11.1.2.4.4.1.6 Counter read-only
pmAoCuWait 1.3.24.11.1.2.4.4.1.7 Counter read-only
pmAoProcesses 1.3.24.11.1.2.6 nonLeaf
pmAoProcsPsTableMinUpdatePeriod 1.3.24.11.1.2.6.1 INTEGER read-only
pmAoProcsPsTableLastUpdate 1.3.24.11.1.2.6.2 INTEGER read-only
pmAoProcsPsTable 1.3.24.11.1.2.6.3 Aggregate not-accessible
pmAoProcsPsEntry 1.3.24.11.1.2.6.3.1 Aggregate not-accessible
pmAoPsPid 1.3.24.11.1.2.6.3.1.1 INTEGER read-only
pmAoPsParentPid 1.3.24.11.1.2.6.3.1.2 INTEGER read-only
pmAoPsUserId 1.3.24.11.1.2.6.3.1.3 INTEGER read-only
pmAoPsEffUserId 1.3.24.11.1.2.6.3.1.4 INTEGER read-only
pmAoPsUserName 1.3.24.11.1.2.6.3.1.5 DisplayString read-only
pmAoPsUserPriority 1.3.24.11.1.2.6.3.1.6 Gauge read-only
pmAoPsNice 1.3.24.11.1.2.6.3.1.7 INTEGER read-only
pmAoPsState 1.3.24.11.1.2.6.3.1.8 INTEGER read-only
(
100 other
101 run
102 stop
103 wait
104 unintr
105 halt
106 zombie
107 exit
)
pmAoPsVirtSize 1.3.24.11.1.2.6.3.1.9 Gauge read-only
pmAoPsResSetSize 1.3.24.11.1.2.6.3.1.10 Gauge read-only
pmAoPsPercentCpu 1.3.24.11.1.2.6.3.1.11 INTEGER read-only
pmAoPsCpuTime 1.3.24.11.1.2.6.3.1.12 Counter read-only
pmAoPsWhat 1.3.24.11.1.2.6.3.1.13 DisplayString read-only
pmAoProcsThreadTableMinUpdatePeriod 1.3.24.11.1.2.6.4 INTEGER read-only
pmAoProcsThreadTableLastUpdate 1.3.24.11.1.2.6.5 INTEGER read-only
pmAoProcsThreadTable 1.3.24.11.1.2.6.6 Aggregate not-accessible
pmAoProcsThreadEntry 1.3.24.11.1.2.6.6.1 Aggregate not-accessible
pmAoThdPid 1.3.24.11.1.2.6.6.1.1 INTEGER read-only
pmAoThdNumber 1.3.24.11.1.2.6.6.1.2 INTEGER read-only
pmAoThdUserTime 1.3.24.11.1.2.6.6.1.3 Counter read-only
pmAoThdSystemTime 1.3.24.11.1.2.6.6.1.4 Counter read-only
pmAoThdCpuUsage 1.3.24.11.1.2.6.6.1.5 Gauge read-only
pmAoThdBasePriority 1.3.24.11.1.2.6.6.1.6 INTEGER read-only
pmAoThdCurPriority 1.3.24.11.1.2.6.6.1.7 INTEGER read-only
pmAoThdRunState 1.3.24.11.1.2.6.6.1.8 INTEGER read-only
(
100 other
101 run
102 stop
103 wait
104 unintr
105 halt
)
pmAoThdFlags 1.3.24.11.1.2.6.6.1.9 INTEGER read-only
pmAoThdSuspendCount 1.3.24.11.1.2.6.6.1.10 Counter read-only
pmAoThdSleepTime 1.3.24.11.1.2.6.6.1.11 Counter read-only
pmAoThdWaitEvent 1.3.24.11.1.2.6.6.1.12 OctetString read-only
pmAoThdWaitMsg 1.3.24.11.1.2.6.6.1.13 DisplayString read-only
pmAoThdCpu 1.3.24.11.1.2.6.6.1.14 INTEGER read-only
pmAoThdPset 1.3.24.11.1.2.6.6.1.15 INTEGER read-only
pmAoThdPsetBound 1.3.24.11.1.2.6.6.1.16 INTEGER read-only
pmAoThdSchedPolicy 1.3.24.11.1.2.6.6.1.17 INTEGER read-only
(
100 other
101 timeshare
102 fixed-priority
103 fifo
104 round-robin
105 real-time
)
pmAoThdPageFaults 1.3.24.11.1.2.6.6.1.18 Counter read-only
pmAoThdZeroFills 1.3.24.11.1.2.6.6.1.19 Counter read-only
pmAoThdReactivations 1.3.24.11.1.2.6.6.1.20 Counter read-only
pmAoThdPageIns 1.3.24.11.1.2.6.6.1.21 Counter read-only
pmAoThdCowFaults 1.3.24.11.1.2.6.6.1.22 Counter read-only
pmAoThdMsgsSent 1.3.24.11.1.2.6.6.1.23 Counter read-only
pmAoThdMsgsRcvd 1.3.24.11.1.2.6.6.1.24 Counter read-only
pmAoVirtualMemory 1.3.24.11.1.2.7 nonLeaf
pmAoVmSwappedInProcs 1.3.24.11.1.2.7.1 Counter read-only
pmAoVmSwappedOutProcs 1.3.24.11.1.2.7.2 Counter read-only
pmAoVmVmstatActive 1.3.24.11.1.2.7.3 Gauge read-only
pmAoVmVmstatInactive 1.3.24.11.1.2.7.4 Gauge read-only
pmAoVmVmstatFree 1.3.24.11.1.2.7.5 Gauge read-only
pmAoVmVmstatWire 1.3.24.11.1.2.7.6 Gauge read-only
pmAoVmSwapRemaining 1.3.24.11.1.2.7.7 Gauge read-only
pmAoVmSwapInUse 1.3.24.11.1.2.7.8 Gauge read-only
pmAoVmSwapDefault 1.3.24.11.1.2.7.9 DisplayString read-only
pmAoVmSwapConfigTable 1.3.24.11.1.2.7.10 Aggregate not-accessible
pmAoVmSwapConfigEntry 1.3.24.11.1.2.7.10.1 Aggregate not-accessible
pmAoVmSiIndex 1.3.24.11.1.2.7.10.1.1 INTEGER read-only
pmAoVmSiPartition 1.3.24.11.1.2.7.10.1.2 DisplayString read-only
pmAoVmSiPagesAllocated 1.3.24.11.1.2.7.10.1.3 INTEGER read-only
pmAoVmSiPagesInUse 1.3.24.11.1.2.7.10.1.4 Gauge read-only
pmAoVmSiPagesFree 1.3.24.11.1.2.7.10.1.5 Gauge read-only
pmAoBufferCache 1.3.24.11.1.2.8 nonLeaf
pmAoBcReadHits 1.3.24.11.1.2.8.1 Counter read-only
pmAoBcReadMisses 1.3.24.11.1.2.8.2 Counter read-only
pmAoInterfaces 1.3.24.11.1.2.9 nonLeaf
pmAoIfEthTable 1.3.24.11.1.2.9.1 Aggregate not-accessible
pmAoIfEthEntry 1.3.24.11.1.2.9.1.1 Aggregate not-accessible
pmAoIfEthIndex 1.3.24.11.1.2.9.1.1.1 INTEGER read-only
pmAoIfEthName 1.3.24.11.1.2.9.1.1.2 DisplayString read-only
pmAoIfEthCollisions 1.3.24.11.1.2.9.1.1.3 Counter read-only
pmSparcSolaris 1.3.24.11.1.3 nonLeaf
pmHppaHpux 1.3.24.11.1.4 nonLeaf
pmRs6kAix 1.3.24.11.1.5 nonLeaf
advfsPrivate 1.3.24.11.2 nonLeaf
joint_iso_ccitt 2 nonLeaf
/* END PMGRDINFO.DAT */
/* START ADVFSINFO.DAT */
/*
*
* Copyright (C) 1994 by SNMP Research, Incorporated.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the
* inclusion of the above copyright notice. This software or any other
* copies thereof may not be provided or otherwise made available to any
* other person. No title to and ownership of the software is hereby
* transferred.
*
* The information in this software is subject to change without notice
* and should not be construed as a commitment by SNMP Research, Incorporated.
*
* Restricted Rights Legend:
* Use, duplication, or disclosure by the Government is subject to
* restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS 52.227-7013
* and in similar clauses in the FAR and NASA FAR Supplement.
*
*/
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
dec 1.3.24 nonLeaf
pm 1.3.24.11 nonLeaf
advfsPrivate 1.3.24.11.2 nonLeaf
advfsHost 1.3.24.11.2.1 nonLeaf
advfsHostTable 1.3.24.11.2.1.1 Aggregate not-accessible
advfsHostEntry 1.3.24.11.2.1.1.1 Aggregate not-accessible
advfsHostName 1.3.24.11.2.1.1.1.1 DisplayString read-only
advfsHostSize 1.3.24.11.2.1.1.1.2 INTEGER read-only
advfsHostInUse 1.3.24.11.2.1.1.1.3 INTEGER read-only
advfsHostAvail 1.3.24.11.2.1.1.1.4 INTEGER read-only
advfsHostPercentUsed 1.3.24.11.2.1.1.1.5 INTEGER read-only
advfsHostNameiGoodHits 1.3.24.11.2.1.1.1.6 Counter read-only
advfsHostNameiNegHits 1.3.24.11.2.1.1.1.7 Counter read-only
advfsHostNameiBadHits 1.3.24.11.2.1.1.1.8 Counter read-only
advfsHostNameiFalseHits 1.3.24.11.2.1.1.1.9 Counter read-only
advfsHostNameiMiss 1.3.24.11.2.1.1.1.10 Counter read-only
advfsHostNameiLong 1.3.24.11.2.1.1.1.11 Counter read-only
advfsHostNameiPass2 1.3.24.11.2.1.1.1.12 Counter read-only
advfsHostNamei2Passes 1.3.24.11.2.1.1.1.13 Counter read-only
advfsHostNameiDirscan 1.3.24.11.2.1.1.1.14 Counter read-only
advfsHostAlertInterval 1.3.24.11.2.1.1.1.15 INTEGER read-only
advfsHostScanInterval 1.3.24.11.2.1.1.1.16 INTEGER read-only
advfsHostDeviceSize 1.3.24.11.2.1.1.1.17 INTEGER read-only
advfsAlert 1.3.24.11.2.2 nonLeaf
advfsAlertTable 1.3.24.11.2.2.1 Aggregate not-accessible
advfsAlertEntry 1.3.24.11.2.2.1.1 Aggregate not-accessible
advfsAlertUID 1.3.24.11.2.2.1.1.1 INTEGER read-only
advfsAlertType 1.3.24.11.2.2.1.1.2 INTEGER read-only
(
4 domain
5 fileset
7 volume
)
advfsAlertDomIdTvSec 1.3.24.11.2.2.1.1.3 INTEGER read-only
advfsAlertDomIdTvUSec 1.3.24.11.2.2.1.1.4 INTEGER read-only
advfsAlertFilesetIdNum 1.3.24.11.2.2.1.1.5 INTEGER read-only
advfsAlertFilesetIdSeq 1.3.24.11.2.2.1.1.6 INTEGER read-only
advfsAlertVolNumber 1.3.24.11.2.2.1.1.7 INTEGER read-only
advfsAlertDeviceName 1.3.24.11.2.2.1.1.8 OctetString read-only
advfsAlertPartitionNumber 1.3.24.11.2.2.1.1.9 INTEGER read-only
advfsAlertScriptFreq 1.3.24.11.2.2.1.1.10 INTEGER read-only
(
1 everyTime
2 firstTime
)
advfsAlertThreshold 1.3.24.11.2.2.1.1.11 INTEGER read-only
advfsAlertRunScript 1.3.24.11.2.2.1.1.12 INTEGER read-only
(
1 true
2 false
)
advfsAlertScript 1.3.24.11.2.2.1.1.13 OctetString read-only
advfsAlertExportAlertInfo 1.3.24.11.2.2.1.1.14 INTEGER read-only
(
1 true
2 false
)
advfsAlertState 1.3.24.11.2.2.1.1.15 INTEGER read-only
(
1 fired
2 primed
)
advfsSchedule 1.3.24.11.2.3 nonLeaf
advfsScheduleTable 1.3.24.11.2.3.1 Aggregate not-accessible
advfsScheduleEntry 1.3.24.11.2.3.1.1 Aggregate not-accessible
advfsScheduleUID 1.3.24.11.2.3.1.1.1 INTEGER read-only
advfsScheduleJobType 1.3.24.11.2.3.1.1.2 INTEGER read-only
(
1 balance
2 defrag
)
advfsScheduleDomIdTvSec 1.3.24.11.2.3.1.1.3 INTEGER read-only
advfsScheduleDomIdTvUSec 1.3.24.11.2.3.1.1.4 INTEGER read-only
advfsScheduleMaxDuration 1.3.24.11.2.3.1.1.5 INTEGER read-only
advfsScheduleStartTime 1.3.24.11.2.3.1.1.6 TimeTicks read-only
advfsScheduleFrequency 1.3.24.11.2.3.1.1.7 INTEGER read-only
(
1 daily
2 weekly
3 biweekly
4 monthlyDate
5 monThroughFri
6 monWedFri
7 tueThu
)
advfsDomain 1.3.24.11.2.4 nonLeaf
advfsDomainsTable 1.3.24.11.2.4.1 Aggregate not-accessible
advfsDomEntry 1.3.24.11.2.4.1.1 Aggregate not-accessible
advfsDomName 1.3.24.11.2.4.1.1.1 DisplayString read-only
advfsDomIdTvSec 1.3.24.11.2.4.1.1.2 INTEGER read-only
advfsDomIdTvUSec 1.3.24.11.2.4.1.1.3 INTEGER read-only
advfsDomSize 1.3.24.11.2.4.1.1.4 INTEGER read-only
advfsDomInUse 1.3.24.11.2.4.1.1.5 INTEGER read-only
advfsDomAvail 1.3.24.11.2.4.1.1.6 INTEGER read-only
advfsDomPercentUsed 1.3.24.11.2.4.1.1.7 INTEGER read-only
advfsDomLocked 1.3.24.11.2.4.1.1.8 INTEGER read-only
(
1 true
2 false
)
advfsDomLogPgs 1.3.24.11.2.4.1.1.9 INTEGER read-only
advfsDomFragExtents 1.3.24.11.2.4.1.1.10 INTEGER read-only
advfsDomFragFileExtents 1.3.24.11.2.4.1.1.11 INTEGER read-only
advfsDomFragAvrgExtentsFile 1.3.24.11.2.4.1.1.12 INTEGER read-only
advfsDomFragAggIoPerf 1.3.24.11.2.4.1.1.13 INTEGER read-only
advfsDomFragFreeSpaceFrags 1.3.24.11.2.4.1.1.14 INTEGER read-only
advfsDomFragFreeSpaceLt100K 1.3.24.11.2.4.1.1.15 INTEGER read-only
advfsDomFragFreeSpaceLt1M 1.3.24.11.2.4.1.1.16 INTEGER read-only
advfsDomFragFreeSpaceLt10M 1.3.24.11.2.4.1.1.17 INTEGER read-only
advfsDomFragFreeSpaceGt10M 1.3.24.11.2.4.1.1.18 INTEGER read-only
advfsDomFragFragmentsLt100K 1.3.24.11.2.4.1.1.19 INTEGER read-only
advfsDomFragFragmentsLt1M 1.3.24.11.2.4.1.1.20 INTEGER read-only
advfsDomFragFragmentsLt10M 1.3.24.11.2.4.1.1.21 INTEGER read-only
advfsDomFragFragmentsGt10M 1.3.24.11.2.4.1.1.22 INTEGER read-only
advfsDomBcPinCnt 1.3.24.11.2.4.1.1.23 Counter read-only
advfsDomBcPinHit 1.3.24.11.2.4.1.1.24 Counter read-only
advfsDomBcPinHitW 1.3.24.11.2.4.1.1.25 Counter read-only
advfsDomBcPinRead 1.3.24.11.2.4.1.1.26 Counter read-only
advfsDomBcRefCnt 1.3.24.11.2.4.1.1.27 Counter read-only
advfsDomBcRefHit 1.3.24.11.2.4.1.1.28 Counter read-only
advfsDomBcRefHitW 1.3.24.11.2.4.1.1.29 Counter read-only
advfsDomBcUnPinLazy 1.3.24.11.2.4.1.1.30 Counter read-only
advfsDomBcUnPinBlk 1.3.24.11.2.4.1.1.31 Counter read-only
advfsDomBcUnPinCln 1.3.24.11.2.4.1.1.32 Counter read-only
advfsDomBcUnPinLog 1.3.24.11.2.4.1.1.33 Counter read-only
advfsDomBcMiscRa 1.3.24.11.2.4.1.1.34 Counter read-only
advfsDomBcMiscUbc 1.3.24.11.2.4.1.1.35 Counter read-only
advfsDomBcConsAbrt 1.3.24.11.2.4.1.1.36 Counter read-only
advfsDomBcDataTBsFtx 1.3.24.11.2.4.1.1.37 Counter read-only
advfsDomBcDataTFsFtx 1.3.24.11.2.4.1.1.38 Counter read-only
advfsDomBcDataTOther 1.3.24.11.2.4.1.1.39 Counter read-only
advfsFileset 1.3.24.11.2.5 nonLeaf
advfsFilesetsTable 1.3.24.11.2.5.1 Aggregate not-accessible
advfsFilesetEntry 1.3.24.11.2.5.1.1 Aggregate not-accessible
advfsFilesetDomIdTvSec 1.3.24.11.2.5.1.1.1 INTEGER read-only
advfsFilesetDomIdTvUSec 1.3.24.11.2.5.1.1.2 INTEGER read-only
advfsFilesetIdNum 1.3.24.11.2.5.1.1.3 INTEGER read-only
advfsFilesetIdSeq 1.3.24.11.2.5.1.1.4 INTEGER read-only
advfsFilesetName 1.3.24.11.2.5.1.1.5 DisplayString read-only
advfsFilesetMounted 1.3.24.11.2.5.1.1.6 INTEGER read-only
advfsFilesetPathname 1.3.24.11.2.5.1.1.7 OctetString read-only
advfsFilesetNumberOfClones 1.3.24.11.2.5.1.1.8 INTEGER read-only
advfsFilesetSize 1.3.24.11.2.5.1.1.9 INTEGER read-only
advfsFilesetInUse 1.3.24.11.2.5.1.1.10 INTEGER read-only
advfsFilesetAvail 1.3.24.11.2.5.1.1.11 INTEGER read-only
advfsFilesetPercentUsed 1.3.24.11.2.5.1.1.12 INTEGER read-only
advfsFilesetNumFiles 1.3.24.11.2.5.1.1.13 INTEGER read-only
advfsFilesetSoftFileLimit 1.3.24.11.2.5.1.1.14 INTEGER read-only
advfsFilesetHardFileLimit 1.3.24.11.2.5.1.1.15 INTEGER read-only
advfsFilesetFileGraceTime 1.3.24.11.2.5.1.1.16 TimeTicks read-only
advfsFilesetNumBlock 1.3.24.11.2.5.1.1.17 INTEGER read-only
advfsFilesetSoftBlockLimit 1.3.24.11.2.5.1.1.18 INTEGER read-only
advfsFilesetHardBlockLimit 1.3.24.11.2.5.1.1.19 INTEGER read-only
advfsFilesetBlockGraceTime 1.3.24.11.2.5.1.1.20 TimeTicks read-only
advfsFilesetQuotaStatusUser 1.3.24.11.2.5.1.1.21 INTEGER read-only
(
1 true
2 false
)
advfsFilesetQuotaStatusGroup 1.3.24.11.2.5.1.1.22 INTEGER read-only
(
1 true
2 false
)
advfsFilesetVnopLookup 1.3.24.11.2.5.1.1.23 Counter read-only
advfsFilesetVnopCreate 1.3.24.11.2.5.1.1.24 Counter read-only
advfsFilesetVnopClose 1.3.24.11.2.5.1.1.25 Counter read-only
advfsFilesetVnopGetAttr 1.3.24.11.2.5.1.1.26 Counter read-only
advfsFilesetVnopSetAttr 1.3.24.11.2.5.1.1.27 Counter read-only
advfsFilesetVnopRead 1.3.24.11.2.5.1.1.28 Counter read-only
advfsFilesetVnopWrite 1.3.24.11.2.5.1.1.29 Counter read-only
advfsFilesetVnopMmap 1.3.24.11.2.5.1.1.30 Counter read-only
advfsFilesetVnopFsync 1.3.24.11.2.5.1.1.31 Counter read-only
advfsFilesetVnopSyncData 1.3.24.11.2.5.1.1.32 Counter read-only
advfsFilesetVnopRemove 1.3.24.11.2.5.1.1.33 Counter read-only
advfsFilesetVnopRename 1.3.24.11.2.5.1.1.34 Counter read-only
advfsFilesetVnopReadDir 1.3.24.11.2.5.1.1.35 Counter read-only
advfsFilesetVnopMkDir 1.3.24.11.2.5.1.1.36 Counter read-only
advfsFilesetVnopRmDir 1.3.24.11.2.5.1.1.37 Counter read-only
advfsFilesetVnopSymLink 1.3.24.11.2.5.1.1.38 Counter read-only
advfsFilesetVnopReadLink 1.3.24.11.2.5.1.1.39 Counter read-only
advfsFilesetVnopLink 1.3.24.11.2.5.1.1.40 Counter read-only
advfsFilesetVnopBread 1.3.24.11.2.5.1.1.41 Counter read-only
advfsFilesetVnopBrelse 1.3.24.11.2.5.1.1.42 Counter read-only
advfsFilesetVnopPageWrite 1.3.24.11.2.5.1.1.43 Counter read-only
advfsFilesetVnopPageRead 1.3.24.11.2.5.1.1.44 Counter read-only
advfsFilesetVnopGetPage 1.3.24.11.2.5.1.1.45 Counter read-only
advfsFilesetVnopPutPage 1.3.24.11.2.5.1.1.46 Counter read-only
advfsFilesetVnopAccess 1.3.24.11.2.5.1.1.47 Counter read-only
advfsFilesetVnopMknod 1.3.24.11.2.5.1.1.48 Counter read-only
advfsFilesetVnopSeek 1.3.24.11.2.5.1.1.49 Counter read-only
advfsFilesetVnopInactive 1.3.24.11.2.5.1.1.50 Counter read-only
advfsFilesetVnopReclaim 1.3.24.11.2.5.1.1.51 Counter read-only
advfsFilesetVnopLockCtl 1.3.24.11.2.5.1.1.52 Counter read-only
advfsFilesetVnopSetVLocks 1.3.24.11.2.5.1.1.53 Counter read-only
advfsFilesetVnopLookupHit 1.3.24.11.2.5.1.1.54 Counter read-only
advfsFilesetVnopLookupNotFound 1.3.24.11.2.5.1.1.55 Counter read-only
advfsFilesetVnopLookupMiss 1.3.24.11.2.5.1.1.56 Counter read-only
advfsClone 1.3.24.11.2.6 nonLeaf
advfsCloneTable 1.3.24.11.2.6.1 Aggregate not-accessible
advfsCloneEntry 1.3.24.11.2.6.1.1 Aggregate not-accessible
advfsCloneDomIdTvSec 1.3.24.11.2.6.1.1.1 INTEGER read-only
advfsCloneDomIdTvUSec 1.3.24.11.2.6.1.1.2 INTEGER read-only
advfsParentIdNum 1.3.24.11.2.6.1.1.3 INTEGER read-only
advfsParentIdSeq 1.3.24.11.2.6.1.1.4 INTEGER read-only
advfsCloneName 1.3.24.11.2.6.1.1.5 DisplayString read-only
advfsCloneIdNum 1.3.24.11.2.6.1.1.6 INTEGER read-only
advfsCloneIdSeq 1.3.24.11.2.6.1.1.7 INTEGER read-only
advfsCloneMounted 1.3.24.11.2.6.1.1.8 INTEGER read-only
(
1 true
2 false
)
advfsClonePathname 1.3.24.11.2.6.1.1.9 OctetString read-only
advfsCloneVnopLookup 1.3.24.11.2.6.1.1.10 Counter read-only
advfsCloneVnopCreate 1.3.24.11.2.6.1.1.11 Counter read-only
advfsCloneVnopClose 1.3.24.11.2.6.1.1.12 Counter read-only
advfsCloneVnopGetAttr 1.3.24.11.2.6.1.1.13 Counter read-only
advfsCloneVnopSetAttr 1.3.24.11.2.6.1.1.14 Counter read-only
advfsCloneVnopRead 1.3.24.11.2.6.1.1.15 Counter read-only
advfsCloneVnopWrite 1.3.24.11.2.6.1.1.16 Counter read-only
advfsCloneVnopMmap 1.3.24.11.2.6.1.1.17 Counter read-only
advfsCloneVnopFsync 1.3.24.11.2.6.1.1.18 Counter read-only
advfsCloneVnopSyncData 1.3.24.11.2.6.1.1.19 Counter read-only
advfsCloneVnopRemove 1.3.24.11.2.6.1.1.20 Counter read-only
advfsCloneVnopRename 1.3.24.11.2.6.1.1.21 Counter read-only
advfsCloneVnopReadDir 1.3.24.11.2.6.1.1.22 Counter read-only
advfsCloneVnopMkDir 1.3.24.11.2.6.1.1.23 Counter read-only
advfsCloneVnopRmDir 1.3.24.11.2.6.1.1.24 Counter read-only
advfsCloneVnopSymLink 1.3.24.11.2.6.1.1.25 Counter read-only
advfsCloneVnopReadLink 1.3.24.11.2.6.1.1.26 Counter read-only
advfsCloneVnopLink 1.3.24.11.2.6.1.1.27 Counter read-only
advfsCloneVnopBread 1.3.24.11.2.6.1.1.28 Counter read-only
advfsCloneVnopBrelse 1.3.24.11.2.6.1.1.29 Counter read-only
advfsCloneVnopPageWrite 1.3.24.11.2.6.1.1.30 Counter read-only
advfsCloneVnopPageRead 1.3.24.11.2.6.1.1.31 Counter read-only
advfsCloneVnopGetPage 1.3.24.11.2.6.1.1.32 Counter read-only
advfsCloneVnopPutPage 1.3.24.11.2.6.1.1.33 Counter read-only
advfsCloneVnopAccess 1.3.24.11.2.6.1.1.34 Counter read-only
advfsCloneVnopMknod 1.3.24.11.2.6.1.1.35 Counter read-only
advfsCloneVnopSeek 1.3.24.11.2.6.1.1.36 Counter read-only
advfsCloneVnopInactive 1.3.24.11.2.6.1.1.37 Counter read-only
advfsCloneVnopReclaim 1.3.24.11.2.6.1.1.38 Counter read-only
advfsCloneVnopLockCtl 1.3.24.11.2.6.1.1.39 Counter read-only
advfsCloneVnopSetVLocks 1.3.24.11.2.6.1.1.40 Counter read-only
advfsCloneVnopLookupHit 1.3.24.11.2.6.1.1.41 Counter read-only
advfsCloneVnopLookupNotFound 1.3.24.11.2.6.1.1.42 Counter read-only
advfsCloneVnopLookupMiss 1.3.24.11.2.6.1.1.43 Counter read-only
advfsDomVolume 1.3.24.11.2.7 nonLeaf
advfsDomVolumesTable 1.3.24.11.2.7.1 Aggregate not-accessible
advfsDomVolEntry 1.3.24.11.2.7.1.1 Aggregate not-accessible
advfsDomVolDomIdTvSec 1.3.24.11.2.7.1.1.1 INTEGER read-only
advfsDomVolDomIdTvUSec 1.3.24.11.2.7.1.1.2 INTEGER read-only
advfsDomVolNumber 1.3.24.11.2.7.1.1.3 INTEGER read-only
advfsDomVolHasLog 1.3.24.11.2.7.1.1.4 INTEGER read-only
(
1 true
2 false
)
advfsDomVolName 1.3.24.11.2.7.1.1.5 DisplayString read-only
advfsDomVolPartPathName 1.3.24.11.2.7.1.1.6 OctetString read-only
advfsDomVolPartNumber 1.3.24.11.2.7.1.1.7 INTEGER read-only
advfsDomVolSize 1.3.24.11.2.7.1.1.8 INTEGER read-only
advfsDomVolInUse 1.3.24.11.2.7.1.1.9 INTEGER read-only
advfsDomVolAvail 1.3.24.11.2.7.1.1.10 INTEGER read-only
advfsDomVolPercentUsed 1.3.24.11.2.7.1.1.11 INTEGER read-only
advfsDomVolType 1.3.24.11.2.7.1.1.12 DisplayString read-only
advfsDomVolDisk 1.3.24.11.2.7.1.1.13 DisplayString read-only
advfsDomVolCmode 1.3.24.11.2.7.1.1.14 INTEGER read-only
advfsDomVolRblks 1.3.24.11.2.7.1.1.15 INTEGER read-only
advfsDomVolWblks 1.3.24.11.2.7.1.1.16 INTEGER read-only
advfsDomVolIoRead 1.3.24.11.2.7.1.1.17 Counter read-only
advfsDomVolIoWrite 1.3.24.11.2.7.1.1.18 Counter read-only
advfsDomVolIoRGlobs 1.3.24.11.2.7.1.1.19 Counter read-only
advfsDomVolIoAvgRGlobs 1.3.24.11.2.7.1.1.20 Counter read-only
advfsDomVolIoWGlobs 1.3.24.11.2.7.1.1.21 Counter read-only
advfsDomVolIoAvgWGlobs 1.3.24.11.2.7.1.1.22 Counter read-only
advfsDomVolIoBlockQ 1.3.24.11.2.7.1.1.23 Counter read-only
advfsDomVolIoWaitLazyQ 1.3.24.11.2.7.1.1.24 Counter read-only
advfsDomVolIoReadyLazyQ 1.3.24.11.2.7.1.1.25 Counter read-only
advfsDomVolIoConsolQ 1.3.24.11.2.7.1.1.26 Counter read-only
advfsDomVolIoDevQ 1.3.24.11.2.7.1.1.27 Counter read-only
advfsDevice 1.3.24.11.2.8 nonLeaf
advfsDeviceTable 1.3.24.11.2.8.1 Aggregate not-accessible
advfsDeviceEntry 1.3.24.11.2.8.1.1 Aggregate not-accessible
advfsDevicePathName 1.3.24.11.2.8.1.1.1 OctetString read-only
advfsDeviceType 1.3.24.11.2.8.1.1.2 INTEGER read-only
advfsDeviceTypeName 1.3.24.11.2.8.1.1.3 DisplayString read-only
advfsDevicePackName 1.3.24.11.2.8.1.1.4 DisplayString read-only
advfsDeviceFlags 1.3.24.11.2.8.1.1.5 INTEGER read-only
advfsDeviceSecSize 1.3.24.11.2.8.1.1.6 INTEGER read-only
advfsDeviceNSectors 1.3.24.11.2.8.1.1.7 INTEGER read-only
advfsDeviceNTracks 1.3.24.11.2.8.1.1.8 INTEGER read-only
advfsDeviceSecPerCyl 1.3.24.11.2.8.1.1.9 INTEGER read-only
advfsDeviceNCylinders 1.3.24.11.2.8.1.1.10 INTEGER read-only
advfsDeviceSecPerUnit 1.3.24.11.2.8.1.1.11 INTEGER read-only
advfsDeviceRPM 1.3.24.11.2.8.1.1.12 INTEGER read-only
advfsDeviceInterleave 1.3.24.11.2.8.1.1.13 INTEGER read-only
advfsDeviceTrackSkew 1.3.24.11.2.8.1.1.14 INTEGER read-only
advfsDeviceCylSkew 1.3.24.11.2.8.1.1.15 INTEGER read-only
advfsDeviceHeadSwitch 1.3.24.11.2.8.1.1.16 INTEGER read-only
advfsDeviceTrkSeek 1.3.24.11.2.8.1.1.17 INTEGER read-only
advfsDeviceNPartitions 1.3.24.11.2.8.1.1.18 INTEGER read-only
advfsDeviceSubType 1.3.24.11.2.8.1.1.19 INTEGER read-only
advfsDeviceSpareSecTrk 1.3.24.11.2.8.1.1.20 INTEGER read-only
advfsDeviceSpareSecCyl 1.3.24.11.2.8.1.1.21 INTEGER read-only
advfsDeviceAltCylinder 1.3.24.11.2.8.1.1.22 INTEGER read-only
advfsDeviceBbSize 1.3.24.11.2.8.1.1.23 INTEGER read-only
advfsDeviceSbSize 1.3.24.11.2.8.1.1.24 INTEGER read-only
advfsPartition 1.3.24.11.2.9 nonLeaf
advfsPartitionTable 1.3.24.11.2.9.1 Aggregate not-accessible
advfsPartitionEntry 1.3.24.11.2.9.1.1 Aggregate not-accessible
advfsPartitionPathName 1.3.24.11.2.9.1.1.1 OctetString read-only
advfsPartitionDevicePathName 1.3.24.11.2.9.1.1.2 OctetString read-only
advfsPartitionNumber 1.3.24.11.2.9.1.1.3 INTEGER read-only
advfsPartitionSize 1.3.24.11.2.9.1.1.4 INTEGER read-only
advfsPartitionOffSet 1.3.24.11.2.9.1.1.5 INTEGER read-only
advfsPartitionFSize 1.3.24.11.2.9.1.1.6 INTEGER read-only
advfsPartitionFsType 1.3.24.11.2.9.1.1.7 INTEGER read-only
advfsPartitionFrag 1.3.24.11.2.9.1.1.8 INTEGER read-only
advfsPartitionCPG 1.3.24.11.2.9.1.1.9 INTEGER read-only
advfsQuota 1.3.24.11.2.10 nonLeaf
advfsQuotaTable 1.3.24.11.2.10.1 Aggregate not-accessible
advfsQuotaEntry 1.3.24.11.2.10.1.1 Aggregate not-accessible
advfsQuotaIdType 1.3.24.11.2.10.1.1.1 INTEGER read-only
(
1 user
2 group
)
advfsQuotaUID 1.3.24.11.2.10.1.1.2 INTEGER read-only
advfsQuotaIdName 1.3.24.11.2.10.1.1.3 DisplayString read-only
advfsQuotaDomIdTvSec 1.3.24.11.2.10.1.1.4 INTEGER read-only
advfsQuotaDomIdTvUSec 1.3.24.11.2.10.1.1.5 INTEGER read-only
advfsQuotaFilesetIdNum 1.3.24.11.2.10.1.1.6 INTEGER read-only
advfsQuotaFilesetIdSeq 1.3.24.11.2.10.1.1.7 INTEGER read-only
advfsQuotaBlockUsed 1.3.24.11.2.10.1.1.8 INTEGER read-only
advfsQuotaBlockSoft 1.3.24.11.2.10.1.1.9 INTEGER read-only
advfsQuotaBlockHard 1.3.24.11.2.10.1.1.10 INTEGER read-only
advfsQuotaBlockGrace 1.3.24.11.2.10.1.1.11 INTEGER read-only
advfsQuotaFileUsed 1.3.24.11.2.10.1.1.12 INTEGER read-only
advfsQuotaFileSoft 1.3.24.11.2.10.1.1.13 INTEGER read-only
advfsQuotaFileHard 1.3.24.11.2.10.1.1.14 INTEGER read-only
advfsQuotaFileGrace 1.3.24.11.2.10.1.1.15 INTEGER read-only
joint_iso_ccitt 2 nonLeaf
/* END ADVFSINFO.DAT */
/* START CLSTRMONDINFO.DAT */
/*
*
* Copyright (C) 1994 by SNMP Research, Incorporated.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the
* inclusion of the above copyright notice. This software or any other
* copies thereof may not be provided or otherwise made available to any
* other person. No title to and ownership of the software is hereby
* transferred.
*
* The information in this software is subject to change without notice
* and should not be construed as a commitment by SNMP Research, Incorporated.
*
* Restricted Rights Legend:
* Use, duplication, or disclosure by the Government is subject to
* restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS 52.227-7013
* and in similar clauses in the FAR and NASA FAR Supplement.
*
*/
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
dec 1.3.24 nonLeaf
clstrmond_1_0_module 1.3.24.10.2 nonLeaf
pm 1.3.24.11 nonLeaf
pmPrivate 1.3.24.11.1 nonLeaf
advfsPrivate 1.3.24.11.2 nonLeaf
clusterPrivate 1.3.24.11.3 nonLeaf
clusterMIB 1.3.24.11.3.1 nonLeaf
clConnMgr 1.3.24.11.3.1.1 nonLeaf
clCnxMinUpdatePeriod 1.3.24.11.3.1.1.1 INTEGER read-only
clCnxLastUpdate 1.3.24.11.3.1.1.2 INTEGER read-only
clCnxDirectorName 1.3.24.11.3.1.1.3 DisplayString read-only
clCnxMembershipVersion 1.3.24.11.3.1.1.4 INTEGER read-only
clCnxMemberList 1.3.24.11.3.1.1.5 Aggregate not-accessible
clCnxMemberListEntry 1.3.24.11.3.1.1.5.1 Aggregate not-accessible
clCnxMemberCsid 1.3.24.11.3.1.1.5.1.1 INTEGER read-only
clCnxMemberName 1.3.24.11.3.1.1.5.1.2 DisplayString read-only
clCnxMCMemberName 1.3.24.11.3.1.1.5.1.3 DisplayString read-only
clCnxMemberIncarnation 1.3.24.11.3.1.1.5.1.4 INTEGER read-only
clCnxMemberState 1.3.24.11.3.1.1.5.1.5 INTEGER read-only
(
100 cs-invalid
101 cs-unknown
102 cs-new
103 cs-member
104 cs-removed
)
clDistLockMgr 1.3.24.11.3.1.2 nonLeaf
clDlmProcessesAttached 1.3.24.11.3.1.2.1 Gauge32 read-only
clDlmResourcesAllocated 1.3.24.11.3.1.2.2 Gauge32 read-only
clDlmLocksAllocated 1.3.24.11.3.1.2.3 Gauge32 read-only
clDlmLockIdsInUse 1.3.24.11.3.1.2.4 Gauge32 read-only
clDlmLocksOnDeadlockQueue 1.3.24.11.3.1.2.5 Gauge32 read-only
clDlmLocksOnTimeoutQueue 1.3.24.11.3.1.2.6 Gauge32 read-only
clDlmNoMessageMemory 1.3.24.11.3.1.2.7 Counter read-only
clDlmLockIn 1.3.24.11.3.1.2.8 Counter read-only
clDlmLockLocal 1.3.24.11.3.1.2.9 Counter read-only
clDlmLockOut 1.3.24.11.3.1.2.10 Counter read-only
clDlmConvertIn 1.3.24.11.3.1.2.11 Counter read-only
clDlmConvertLocal 1.3.24.11.3.1.2.12 Counter read-only
clDlmConvertOut 1.3.24.11.3.1.2.13 Counter read-only
clDlmUnlockIn 1.3.24.11.3.1.2.14 Counter read-only
clDlmUnlockLocal 1.3.24.11.3.1.2.15 Counter read-only
clDlmUnlockOut 1.3.24.11.3.1.2.16 Counter read-only
clDlmBlockIn 1.3.24.11.3.1.2.17 Counter read-only
clDlmBlockLocal 1.3.24.11.3.1.2.18 Counter read-only
clDlmBlockOut 1.3.24.11.3.1.2.19 Counter read-only
clDlmDirectoryIn 1.3.24.11.3.1.2.20 Counter read-only
clDlmDirectoryOut 1.3.24.11.3.1.2.21 Counter read-only
clDlmDeadlockIn 1.3.24.11.3.1.2.22 Counter read-only
clDlmDeadlockOut 1.3.24.11.3.1.2.23 Counter read-only
clDlmDeadlockSearches 1.3.24.11.3.1.2.24 Counter read-only
clDlmDeadlockConvertFound 1.3.24.11.3.1.2.25 Counter read-only
clDlmDeadlockResFound 1.3.24.11.3.1.2.26 Counter read-only
clDlmLocksTimedOut 1.3.24.11.3.1.2.27 Counter read-only
clDlmNotQueued 1.3.24.11.3.1.2.28 Counter read-only
clDlmWait 1.3.24.11.3.1.2.29 Counter read-only
clDlmCvtWait 1.3.24.11.3.1.2.30 Counter read-only
clDlmMngLocal 1.3.24.11.3.1.2.31 Counter read-only
clDlmResend 1.3.24.11.3.1.2.32 Counter read-only
clDlmRetry 1.3.24.11.3.1.2.33 Counter read-only
clDistRawDisk 1.3.24.11.3.1.3 nonLeaf
clDrdOpBssOpens 1.3.24.11.3.1.3.1 Counter read-only
clDrdOpBssCloses 1.3.24.11.3.1.3.2 Counter read-only
clDrdOpBssReads 1.3.24.11.3.1.3.3 Counter read-only
clDrdOpBssWrites 1.3.24.11.3.1.3.4 Counter read-only
clDrdOpBssIoctls 1.3.24.11.3.1.3.5 Counter read-only
clDrdOpBscOpens 1.3.24.11.3.1.3.6 Counter read-only
clDrdOpBscCloses 1.3.24.11.3.1.3.7 Counter read-only
clDrdOpBscReads 1.3.24.11.3.1.3.8 Counter read-only
clDrdOpBscWrites 1.3.24.11.3.1.3.9 Counter read-only
clDrdOpBscIoctls 1.3.24.11.3.1.3.10 Counter read-only
clDrdOpBscRmReads 1.3.24.11.3.1.3.11 Counter read-only
clDrdOpBscRmWrites 1.3.24.11.3.1.3.12 Counter read-only
clDrdOpBscRmReadsRmWait 1.3.24.11.3.1.3.13 Counter read-only
clDrdOpBscRmWritesRmWait 1.3.24.11.3.1.3.14 Counter read-only
clDrdOpBscRmReadsUnaligned 1.3.24.11.3.1.3.15 Counter read-only
clDrdOpBscRmWritesUnaligned 1.3.24.11.3.1.3.16 Counter read-only
clDrdOpDrdOpens 1.3.24.11.3.1.3.17 Counter read-only
clDrdOpDrdCloses 1.3.24.11.3.1.3.18 Counter read-only
clDrdOpDrdReads 1.3.24.11.3.1.3.19 Counter read-only
clDrdOpDrdWrites 1.3.24.11.3.1.3.20 Counter read-only
clDrdOpDrdIoctls 1.3.24.11.3.1.3.21 Counter read-only
clDrdTabMinUpdatePeriod 1.3.24.11.3.1.3.22 INTEGER read-only
clDrdTabLastUpdate 1.3.24.11.3.1.3.23 INTEGER read-only
clDrdMgmtMap 1.3.24.11.3.1.3.24 Aggregate not-accessible
clDrdMgmtMapEntry 1.3.24.11.3.1.3.24.1 Aggregate not-accessible
clDrdMgmtMapIndex 1.3.24.11.3.1.3.24.1.1 INTEGER not-accessible
clDrdMgmtMapDrdName 1.3.24.11.3.1.3.24.1.2 DisplayString read-only
clDrdMinorNum 1.3.24.11.3.1.3.24.1.3 INTEGER read-only
clDrdMgmtFlags 1.3.24.11.3.1.3.24.1.4 INTEGER read-only
clDrdLocalName 1.3.24.11.3.1.3.24.1.5 OctetString read-only
clDrdLocalDevMajor 1.3.24.11.3.1.3.24.1.6 INTEGER read-only
clDrdLocalDevMinor 1.3.24.11.3.1.3.24.1.7 INTEGER read-only
clDrdHostName 1.3.24.11.3.1.3.24.1.8 DisplayString read-only
clDrdSocketAddr 1.3.24.11.3.1.3.24.1.9 OctetString read-only
clDrdNodeNum 1.3.24.11.3.1.3.24.1.10 INTEGER read-only
clDrdMaxPhys 1.3.24.11.3.1.3.24.1.11 INTEGER read-only
clDrdDiskStatisticsTable 1.3.24.11.3.1.3.25 Aggregate not-accessible
clDrdDiskStatsEntry 1.3.24.11.3.1.3.25.1 Aggregate not-accessible
clDrdDiskStatsIndex 1.3.24.11.3.1.3.25.1.1 INTEGER not-accessible
clDrdDiskLocalOps 1.3.24.11.3.1.3.25.1.2 Counter read-only
clDrdDiskRemoteClientOps 1.3.24.11.3.1.3.25.1.3 Counter read-only
clDrdDiskRemoteServerOps 1.3.24.11.3.1.3.25.1.4 Counter read-only
clDrdQStatsDrdRetry 1.3.24.11.3.1.3.26 Gauge read-only
clDrdQStatsDrdWait 1.3.24.11.3.1.3.27 Gauge read-only
clDrdQStatsBscPending 1.3.24.11.3.1.3.28 Gauge read-only
clDrdQStatsBscDone 1.3.24.11.3.1.3.29 Gauge read-only
clDrdQStatsBscWait 1.3.24.11.3.1.3.30 Gauge read-only
clDrdQStatsBssIoPending 1.3.24.11.3.1.3.31 Gauge read-only
clDrdQStatsBssIodonePending 1.3.24.11.3.1.3.32 Gauge read-only
joint_iso_ccitt 2 nonLeaf
/* END CLSTRMONDINFO.DAT */
/* START ORACLEINFO.DAT */
/*
*
* Copyright (C) 1994 by SNMP Research, Incorporated.
*
* This software is furnished under a license and may be used and copied
* only in accordance with the terms of such license and with the
* inclusion of the above copyright notice. This software or any other
* copies thereof may not be provided or otherwise made available to any
* other person. No title to and ownership of the software is hereby
* transferred.
*
* The information in this software is subject to change without notice
* and should not be construed as a commitment by SNMP Research, Incorporated.
*
* Restricted Rights Legend:
* Use, duplication, or disclosure by the Government is subject to
* restrictions as set forth in subparagraph (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS 52.227-7013
* and in similar clauses in the FAR and NASA FAR Supplement.
*
*/
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
oracle 1.3.6.1.4.1.111 nonLeaf
oraDbMIB 1.3.6.1.4.1.111.4 nonLeaf
oraDbObjects 1.3.6.1.4.1.111.4.1 nonLeaf
oraDbSysTable 1.3.6.1.4.1.111.4.1.1 Aggregate not-accessible
oraDbSysEntry 1.3.6.1.4.1.111.4.1.1.1 Aggregate not-accessible
oraDbSysConsistentChanges 1.3.6.1.4.1.111.4.1.1.1.1 Counter read-only
oraDbSysConsistentGets 1.3.6.1.4.1.111.4.1.1.1.2 Counter read-only
oraDbSysDbBlockChanges 1.3.6.1.4.1.111.4.1.1.1.3 Counter read-only
oraDbSysDbBlockGets 1.3.6.1.4.1.111.4.1.1.1.4 Counter read-only
oraDbSysFreeBufferInspected 1.3.6.1.4.1.111.4.1.1.1.5 Counter read-only
oraDbSysFreeBufferRequested 1.3.6.1.4.1.111.4.1.1.1.6 Counter read-only
oraDbSysParseCount 1.3.6.1.4.1.111.4.1.1.1.7 Counter read-only
oraDbSysPhysReads 1.3.6.1.4.1.111.4.1.1.1.8 Counter read-only
oraDbSysPhysWrites 1.3.6.1.4.1.111.4.1.1.1.9 Counter read-only
oraDbSysRedoEntries 1.3.6.1.4.1.111.4.1.1.1.10 Counter read-only
oraDbSysRedoLogSpaceRequests 1.3.6.1.4.1.111.4.1.1.1.11 Counter read-only
oraDbSysRedoSyncWrites 1.3.6.1.4.1.111.4.1.1.1.12 Counter read-only
oraDbSysSortsDisk 1.3.6.1.4.1.111.4.1.1.1.13 Counter read-only
oraDbSysSortsMemory 1.3.6.1.4.1.111.4.1.1.1.14 Counter read-only
oraDbSysSortsRows 1.3.6.1.4.1.111.4.1.1.1.15 Counter read-only
oraDbSysTableFetchRowid 1.3.6.1.4.1.111.4.1.1.1.16 Counter read-only
oraDbSysTableFetchContinuedRow 1.3.6.1.4.1.111.4.1.1.1.17 Counter read-only
oraDbSysTableScanBlocks 1.3.6.1.4.1.111.4.1.1.1.18 Counter read-only
oraDbSysTableScanRows 1.3.6.1.4.1.111.4.1.1.1.19 Counter read-only
oraDbSysTableScansLong 1.3.6.1.4.1.111.4.1.1.1.20 Counter read-only
oraDbSysTableScansShort 1.3.6.1.4.1.111.4.1.1.1.21 Counter read-only
oraDbSysUserCalls 1.3.6.1.4.1.111.4.1.1.1.22 Counter read-only
oraDbSysUserCommits 1.3.6.1.4.1.111.4.1.1.1.23 Counter read-only
oraDbSysUserRollbacks 1.3.6.1.4.1.111.4.1.1.1.24 Counter read-only
oraDbSysWriteRequests 1.3.6.1.4.1.111.4.1.1.1.25 Counter read-only
oraDbTablespaceTable 1.3.6.1.4.1.111.4.1.2 Aggregate not-accessible
oraDbTablespaceEntry 1.3.6.1.4.1.111.4.1.2.1 Aggregate not-accessible
oraDbTablespaceIndex 1.3.6.1.4.1.111.4.1.2.1.1 INTEGER read-only
oraDbTablespaceName 1.3.6.1.4.1.111.4.1.2.1.2 DisplayString read-only
oraDbTablespaceSizeAllocated 1.3.6.1.4.1.111.4.1.2.1.3 INTEGER read-only
oraDbTablespaceSizeUsed 1.3.6.1.4.1.111.4.1.2.1.4 INTEGER read-only
oraDbTablespaceState 1.3.6.1.4.1.111.4.1.2.1.5 INTEGER read-only
(
1 online
2 offline
3 invalid
)
oraDbTablespaceLargestAvailableChunk 1.3.6.1.4.1.111.4.1.2.1.6 INTEGER read-only
oraDbDataFileTable 1.3.6.1.4.1.111.4.1.3 Aggregate not-accessible
oraDbDataFileEntry 1.3.6.1.4.1.111.4.1.3.1 Aggregate not-accessible
oraDbDataFileIndex 1.3.6.1.4.1.111.4.1.3.1.1 INTEGER read-only
oraDbDataFileName 1.3.6.1.4.1.111.4.1.3.1.2 DisplayString read-only
oraDbDataFileSizeAllocated 1.3.6.1.4.1.111.4.1.3.1.3 INTEGER read-only
oraDbDataFileDiskReads 1.3.6.1.4.1.111.4.1.3.1.4 Counter read-only
oraDbDataFileDiskWrites 1.3.6.1.4.1.111.4.1.3.1.5 Counter read-only
oraDbDataFileDiskReadBlocks 1.3.6.1.4.1.111.4.1.3.1.6 Counter read-only
oraDbDataFileDiskWrittenBlocks 1.3.6.1.4.1.111.4.1.3.1.7 Counter read-only
oraDbDataFileDiskReadTimeTicks 1.3.6.1.4.1.111.4.1.3.1.8 Counter read-only
oraDbDataFileDiskWriteTimeTicks 1.3.6.1.4.1.111.4.1.3.1.9 Counter read-only
oraDbLibraryCacheTable 1.3.6.1.4.1.111.4.1.4 Aggregate not-accessible
oraDbLibraryCacheEntry 1.3.6.1.4.1.111.4.1.4.1 Aggregate not-accessible
oraDbLibraryCacheIndex 1.3.6.1.4.1.111.4.1.4.1.1 INTEGER read-only
oraDbLibraryCacheNameSpace 1.3.6.1.4.1.111.4.1.4.1.2 DisplayString read-only
oraDbLibraryCacheGets 1.3.6.1.4.1.111.4.1.4.1.3 Counter read-only
oraDbLibraryCacheGetHits 1.3.6.1.4.1.111.4.1.4.1.4 Counter read-only
oraDbLibraryCachePins 1.3.6.1.4.1.111.4.1.4.1.5 Counter read-only
oraDbLibraryCachePinHits 1.3.6.1.4.1.111.4.1.4.1.6 Counter read-only
oraDbLibraryCacheReloads 1.3.6.1.4.1.111.4.1.4.1.7 Counter read-only
oraDbLibraryCacheInvalidations 1.3.6.1.4.1.111.4.1.4.1.8 Counter read-only
oraDbLibraryCacheSumTable 1.3.6.1.4.1.111.4.1.5 Aggregate not-accessible
oraDbLibraryCacheSumEntry 1.3.6.1.4.1.111.4.1.5.1 Aggregate not-accessible
oraDbLibraryCacheSumGets 1.3.6.1.4.1.111.4.1.5.1.1 Counter read-only
oraDbLibraryCacheSumGetHits 1.3.6.1.4.1.111.4.1.5.1.2 Counter read-only
oraDbLibraryCacheSumPins 1.3.6.1.4.1.111.4.1.5.1.3 Counter read-only
oraDbLibraryCacheSumPinHits 1.3.6.1.4.1.111.4.1.5.1.4 Counter read-only
oraDbLibraryCacheSumReloads 1.3.6.1.4.1.111.4.1.5.1.5 Counter read-only
oraDbLibraryCacheSumInvalidations 1.3.6.1.4.1.111.4.1.5.1.6 Counter read-only
oraDbSGATable 1.3.6.1.4.1.111.4.1.6 Aggregate not-accessible
oraDbSGAEntry 1.3.6.1.4.1.111.4.1.6.1 Aggregate not-accessible
oraDbSGAFixedSize 1.3.6.1.4.1.111.4.1.6.1.1 INTEGER read-only
oraDbSGAVariableSize 1.3.6.1.4.1.111.4.1.6.1.2 INTEGER read-only
oraDbSGADatabaseBuffers 1.3.6.1.4.1.111.4.1.6.1.3 INTEGER read-only
oraDbSGARedoBuffers 1.3.6.1.4.1.111.4.1.6.1.4 INTEGER read-only
oraDbConfigTable 1.3.6.1.4.1.111.4.1.7 Aggregate not-accessible
oraDbConfigEntry 1.3.6.1.4.1.111.4.1.7.1 Aggregate not-accessible
oraDbConfigDbBlockBuffers 1.3.6.1.4.1.111.4.1.7.1.1 INTEGER read-only
oraDbConfigDbBlockCkptBatch 1.3.6.1.4.1.111.4.1.7.1.2 INTEGER read-only
oraDbConfigDbBlockSize 1.3.6.1.4.1.111.4.1.7.1.3 INTEGER read-only
oraDbConfigDbFileSimWrites 1.3.6.1.4.1.111.4.1.7.1.4 INTEGER read-only
oraDbConfigDbMultiBlockReadCount 1.3.6.1.4.1.111.4.1.7.1.5 INTEGER read-only
oraDbConfigDistLockTimeout 1.3.6.1.4.1.111.4.1.7.1.6 INTEGER read-only
oraDbConfigDistRecoveryConnectHold 1.3.6.1.4.1.111.4.1.7.1.7 INTEGER read-only
oraDbConfigDistTransactions 1.3.6.1.4.1.111.4.1.7.1.8 INTEGER read-only
oraDbConfigLogArchiveBufferSize 1.3.6.1.4.1.111.4.1.7.1.9 INTEGER read-only
oraDbConfigLogArchiveBuffers 1.3.6.1.4.1.111.4.1.7.1.10 INTEGER read-only
oraDbConfigLogBuffer 1.3.6.1.4.1.111.4.1.7.1.11 INTEGER read-only
oraDbConfigLogCheckpointInterval 1.3.6.1.4.1.111.4.1.7.1.12 INTEGER read-only
oraDbConfigLogCheckpointTimeout 1.3.6.1.4.1.111.4.1.7.1.13 INTEGER read-only
oraDbConfigLogFiles 1.3.6.1.4.1.111.4.1.7.1.14 INTEGER read-only
oraDbConfigMaxRollbackSegments 1.3.6.1.4.1.111.4.1.7.1.15 INTEGER read-only
oraDbConfigMTSMaxDispatchers 1.3.6.1.4.1.111.4.1.7.1.16 INTEGER read-only
oraDbConfigMTSMaxServers 1.3.6.1.4.1.111.4.1.7.1.17 INTEGER read-only
oraDbConfigMTSServers 1.3.6.1.4.1.111.4.1.7.1.18 INTEGER read-only
oraDbConfigOpenCursors 1.3.6.1.4.1.111.4.1.7.1.19 INTEGER read-only
oraDbConfigOpenLinks 1.3.6.1.4.1.111.4.1.7.1.20 INTEGER read-only
oraDbConfigOptimizerMode 1.3.6.1.4.1.111.4.1.7.1.21 DisplayString read-only
oraDbConfigProcesses 1.3.6.1.4.1.111.4.1.7.1.22 INTEGER read-only
oraDbConfigSerializable 1.3.6.1.4.1.111.4.1.7.1.23 INTEGER read-only
(
1 true
2 false
)
oraDbConfigSessions 1.3.6.1.4.1.111.4.1.7.1.24 INTEGER read-only
oraDbConfigSharedPool 1.3.6.1.4.1.111.4.1.7.1.25 INTEGER read-only
oraDbConfigSortAreaSize 1.3.6.1.4.1.111.4.1.7.1.26 INTEGER read-only
oraDbConfigSortAreaRetainedSize 1.3.6.1.4.1.111.4.1.7.1.27 INTEGER read-only
oraDbConfigTransactions 1.3.6.1.4.1.111.4.1.7.1.28 INTEGER read-only
oraDbConfigTransactionsPerRollback 1.3.6.1.4.1.111.4.1.7.1.29 INTEGER read-only
joint_iso_ccitt 2 nonLeaf
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
mgmt 1.3.6.1.2 nonLeaf
mib_2 1.3.6.1.2.1 nonLeaf
rdbmsMIB 1.3.6.1.2.1.39 nonLeaf
rdbmsObjects 1.3.6.1.2.1.39.1 nonLeaf
rdbmsDbTable 1.3.6.1.2.1.39.1.1 Aggregate not-accessible
rdbmsDbEntry 1.3.6.1.2.1.39.1.1.1 Aggregate not-accessible
rdbmsDbIndex 1.3.6.1.2.1.39.1.1.1.1 INTEGER read-only
rdbmsDbPrivateMibOID 1.3.6.1.2.1.39.1.1.1.2 ObjectID read-only
rdbmsDbVendorName 1.3.6.1.2.1.39.1.1.1.3 DisplayString read-only
rdbmsDbName 1.3.6.1.2.1.39.1.1.1.4 DisplayString read-only
rdbmsDbContact 1.3.6.1.2.1.39.1.1.1.5 DisplayString read-write
rdbmsDbInfoTable 1.3.6.1.2.1.39.1.2 Aggregate not-accessible
rdbmsDbInfoEntry 1.3.6.1.2.1.39.1.2.1 Aggregate not-accessible
rdbmsDbInfoProductName 1.3.6.1.2.1.39.1.2.1.1 DisplayString read-only
rdbmsDbInfoVersion 1.3.6.1.2.1.39.1.2.1.2 DisplayString read-only
rdbmsDbInfoSizeUnits 1.3.6.1.2.1.39.1.2.1.3 INTEGER read-only
(
1 bytes
2 kbytes
3 mbytes
4 gbytes
5 tbytes
)
rdbmsDbInfoSizeAllocated 1.3.6.1.2.1.39.1.2.1.4 INTEGER read-write
rdbmsDbInfoSizeUsed 1.3.6.1.2.1.39.1.2.1.5 INTEGER read-only
rdbmsDbInfoLastBackup 1.3.6.1.2.1.39.1.2.1.6 OctetString read-only
rdbmsDbParamTable 1.3.6.1.2.1.39.1.3 Aggregate not-accessible
rdbmsDbParamEntry 1.3.6.1.2.1.39.1.3.1 Aggregate not-accessible
rdbmsDbParamName 1.3.6.1.2.1.39.1.3.1.1 DisplayString read-only
rdbmsDbParamSubIndex 1.3.6.1.2.1.39.1.3.1.2 INTEGER read-only
rdbmsDbParamID 1.3.6.1.2.1.39.1.3.1.3 ObjectID read-only
rdbmsDbParamCurrValue 1.3.6.1.2.1.39.1.3.1.4 DisplayString read-write
rdbmsDbParamComment 1.3.6.1.2.1.39.1.3.1.5 DisplayString read-write
rdbmsDbLimitedResourceTable 1.3.6.1.2.1.39.1.4 Aggregate not-accessible
rdbmsDbLimitedResourceEntry 1.3.6.1.2.1.39.1.4.1 Aggregate not-accessible
rdbmsDbLimitedResourceName 1.3.6.1.2.1.39.1.4.1.1 DisplayString read-only
rdbmsDbLimitedResourceID 1.3.6.1.2.1.39.1.4.1.2 ObjectID read-only
rdbmsDbLimitedResourceLimit 1.3.6.1.2.1.39.1.4.1.3 INTEGER read-write
rdbmsDbLimitedResourceCurrent 1.3.6.1.2.1.39.1.4.1.4 INTEGER read-only
rdbmsDbLimitedResourceHighwater 1.3.6.1.2.1.39.1.4.1.5 INTEGER read-only
rdbmsDbLimitedResourceFailures 1.3.6.1.2.1.39.1.4.1.6 Counter read-only
rdbmsDbLimitedResourceDescription 1.3.6.1.2.1.39.1.4.1.7 DisplayString read-write
rdbmsSrvTable 1.3.6.1.2.1.39.1.5 Aggregate not-accessible
rdbmsSrvEntry 1.3.6.1.2.1.39.1.5.1 Aggregate not-accessible
rdbmsSrvPrivateMibOID 1.3.6.1.2.1.39.1.5.1.1 ObjectID read-only
rdbmsSrvVendorName 1.3.6.1.2.1.39.1.5.1.2 DisplayString read-only
rdbmsSrvProductName 1.3.6.1.2.1.39.1.5.1.3 DisplayString read-only
rdbmsSrvContact 1.3.6.1.2.1.39.1.5.1.4 DisplayString read-write
rdbmsSrvInfoTable 1.3.6.1.2.1.39.1.6 Aggregate not-accessible
rdbmsSrvInfoEntry 1.3.6.1.2.1.39.1.6.1 Aggregate not-accessible
rdbmsSrvInfoStartupTime 1.3.6.1.2.1.39.1.6.1.1 OctetString read-only
rdbmsSrvInfoFinishedTransactions 1.3.6.1.2.1.39.1.6.1.2 Gauge read-only
rdbmsSrvInfoDiskReads 1.3.6.1.2.1.39.1.6.1.3 Counter read-only
rdbmsSrvInfoLogicalReads 1.3.6.1.2.1.39.1.6.1.4 Counter read-only
rdbmsSrvInfoDiskWrites 1.3.6.1.2.1.39.1.6.1.5 Counter read-only
rdbmsSrvInfoLogicalWrites 1.3.6.1.2.1.39.1.6.1.6 Counter read-only
rdbmsSrvInfoPageReads 1.3.6.1.2.1.39.1.6.1.7 Counter read-only
rdbmsSrvInfoPageWrites 1.3.6.1.2.1.39.1.6.1.8 Counter read-only
rdbmsSrvInfoDiskOutOfSpaces 1.3.6.1.2.1.39.1.6.1.9 Counter read-only
rdbmsSrvInfoHandledRequests 1.3.6.1.2.1.39.1.6.1.10 Counter read-only
rdbmsSrvInfoRequestRecvs 1.3.6.1.2.1.39.1.6.1.11 Counter read-only
rdbmsSrvInfoRequestSends 1.3.6.1.2.1.39.1.6.1.12 Counter read-only
rdbmsSrvInfoHighwaterInboundAssociations 1.3.6.1.2.1.39.1.6.1.13 Gauge read-only
rdbmsSrvInfoMaxInboundAssociations 1.3.6.1.2.1.39.1.6.1.14 Gauge read-write
rdbmsSrvParamTable 1.3.6.1.2.1.39.1.7 Aggregate not-accessible
rdbmsSrvParamEntry 1.3.6.1.2.1.39.1.7.1 Aggregate not-accessible
rdbmsSrvParamName 1.3.6.1.2.1.39.1.7.1.1 DisplayString read-only
rdbmsSrvParamSubIndex 1.3.6.1.2.1.39.1.7.1.2 INTEGER read-only
rdbmsSrvParamID 1.3.6.1.2.1.39.1.7.1.3 ObjectID read-only
rdbmsSrvParamCurrValue 1.3.6.1.2.1.39.1.7.1.4 DisplayString read-write
rdbmsSrvParamComment 1.3.6.1.2.1.39.1.7.1.5 DisplayString read-write
rdbmsSrvLimitedResourceTable 1.3.6.1.2.1.39.1.8 Aggregate not-accessible
rdbmsSrvLimitedResourceEntry 1.3.6.1.2.1.39.1.8.1 Aggregate not-accessible
rdbmsSrvLimitedResourceName 1.3.6.1.2.1.39.1.8.1.1 DisplayString read-only
rdbmsSrvLimitedResourceID 1.3.6.1.2.1.39.1.8.1.2 ObjectID read-only
rdbmsSrvLimitedResourceLimit 1.3.6.1.2.1.39.1.8.1.3 INTEGER read-write
rdbmsSrvLimitedResourceCurrent 1.3.6.1.2.1.39.1.8.1.4 INTEGER read-only
rdbmsSrvLimitedResourceHighwater 1.3.6.1.2.1.39.1.8.1.5 INTEGER read-only
rdbmsSrvLimitedResourceFailures 1.3.6.1.2.1.39.1.8.1.6 Counter read-only
rdbmsSrvLimitedResourceDescription 1.3.6.1.2.1.39.1.8.1.7 DisplayString read-write
rdbmsRelTable 1.3.6.1.2.1.39.1.9 Aggregate not-accessible
rdbmsRelEntry 1.3.6.1.2.1.39.1.9.1 Aggregate not-accessible
rdbmsRelState 1.3.6.1.2.1.39.1.9.1.1 INTEGER read-only
(
1 other
2 active
3 available
4 restricted
5 unavailable
)
rdbmsRelActiveTime 1.3.6.1.2.1.39.1.9.1.2 OctetString read-only
rdbmsWellKnownLimitedResources 1.3.6.1.2.1.39.1.10 nonLeaf
rdbmsLogSpace 1.3.6.1.2.1.39.1.10.1 nonLeaf
rdbmsTraps 1.3.6.1.2.1.39.2 nonLeaf
rdbmsConformance 1.3.6.1.2.1.39.3 nonLeaf
rdbmsCompliances 1.3.6.1.2.1.39.3.1 nonLeaf
rdbmsCompliance 1.3.6.1.2.1.39.3.1.1 nonLeaf
rdbmsGroups 1.3.6.1.2.1.39.3.2 nonLeaf
rdbmsGroup 1.3.6.1.2.1.39.3.2.1 nonLeaf
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
joint_iso_ccitt 2 nonLeaf
/*
* automatically generated by the mib compiler -- do not edit
*/
ccitt 0 nonLeaf
iso 1 nonLeaf
org 1.3 nonLeaf
dod 1.3.6 nonLeaf
internet 1.3.6.1 nonLeaf
mgmt 1.3.6.1.2 nonLeaf
mib_2 1.3.6.1.2.1 nonLeaf
application 1.3.6.1.2.1.27 nonLeaf
applTable 1.3.6.1.2.1.27.1 Aggregate not-accessible
applEntry 1.3.6.1.2.1.27.1.1 Aggregate not-accessible
applIndex 1.3.6.1.2.1.27.1.1.1 INTEGER read-only
applName 1.3.6.1.2.1.27.1.1.2 DisplayString read-only
applDirectoryName 1.3.6.1.2.1.27.1.1.3 DisplayString read-only
applVersion 1.3.6.1.2.1.27.1.1.4 DisplayString read-only
applUptime 1.3.6.1.2.1.27.1.1.5 TimeTicks read-only
applOperStatus 1.3.6.1.2.1.27.1.1.6 INTEGER read-only
(
1 up
2 down
3 halted
4 congested
5 restarting
)
applLastChange 1.3.6.1.2.1.27.1.1.7 TimeTicks read-only
applInboundAssociations 1.3.6.1.2.1.27.1.1.8 Gauge read-only
applOutboundAssociations 1.3.6.1.2.1.27.1.1.9 Gauge read-only
applAccumulatedInboundAssociations 1.3.6.1.2.1.27.1.1.10 Counter read-only
applAccumulatedOutboundAssociations 1.3.6.1.2.1.27.1.1.11 Counter read-only
applLastInboundActivity 1.3.6.1.2.1.27.1.1.12 TimeTicks read-only
applLastOutboundActivity 1.3.6.1.2.1.27.1.1.13 TimeTicks read-only
applRejectedInboundAssociations 1.3.6.1.2.1.27.1.1.14 Counter read-only
applFailedOutboundAssociations 1.3.6.1.2.1.27.1.1.15 Counter read-only
assocTable 1.3.6.1.2.1.27.2 Aggregate not-accessible
assocEntry 1.3.6.1.2.1.27.2.1 Aggregate not-accessible
assocIndex 1.3.6.1.2.1.27.2.1.1 INTEGER read-only
assocRemoteApplication 1.3.6.1.2.1.27.2.1.2 DisplayString read-only
assocApplicationProtocol 1.3.6.1.2.1.27.2.1.3 ObjectID read-only
assocApplicationType 1.3.6.1.2.1.27.2.1.4 INTEGER read-only
(
1 ua-initiator
2 ua-responder
3 peer-initiator
4 peer-responder
)
assocDuration 1.3.6.1.2.1.27.2.1.5 TimeTicks read-only
applConformance 1.3.6.1.2.1.27.3 nonLeaf
applGroups 1.3.6.1.2.1.27.3.1 nonLeaf
applGroup 1.3.6.1.2.1.27.3.1.1 nonLeaf
assocGroup 1.3.6.1.2.1.27.3.1.2 nonLeaf
applCompliances 1.3.6.1.2.1.27.3.2 nonLeaf
applCompliance 1.3.6.1.2.1.27.3.2.1 nonLeaf
assocCompliance 1.3.6.1.2.1.27.3.2.2 nonLeaf
applTCPProtoID 1.3.6.1.2.1.27.4 nonLeaf
applUDPProtoID 1.3.6.1.2.1.27.5 nonLeaf
private 1.3.6.1.4 nonLeaf
enterprises 1.3.6.1.4.1 nonLeaf
snmpResearch 1.3.6.1.4.1.99 nonLeaf
joint_iso_ccitt 2 nonLeaf
/* END ORACLEINFO.DAT */
|