MIB Form

[This is the context-sensitive help link for the MIB form = alias = mibFormHelp

The MIB form provides details about the selected MIB file that is loaded on the NNMi management server. This topic includes the following sections:

For information about each tab: Concept Link IconSee Also

To view the MIB Form:

Level-2 Operators and above, do one of the following:

  • Method one, in any map or Node table view:

    1. Click or right-click a Node:

      • Click and select ActionsMIB InformationList Supported MIBs.
      • Right-click and select MIB InformationList Supported MIBs.
    2. Click the link to the MIB file of interest.
  • Method two, in the  Inventory workspace, MIB Variables view:

    1. Double-click a row to open a MIB Variable form.
    2. Navigate to the MIB attribute, click the drop-down, and select Open.
  • Method three, alternate path for NNMi administrators:

    1. Open the  Configuration workspace, MIBs folder.
    2. Open the Loaded MIBs view.
    3. Double-click the row of interest.
MIB Basics Attributes
Attribute Description
Name Name from the DEFINITIONS clause within the MIB file.
MIB File Location of the MIB file on the NNMi server.

MIB Variable Tab

[This is the context-sensitive help for the MIB Variable form.]

The MIB form's MIB Variables tab lists all MIB variables available within the currently displayed MIB file.

To view a list of all MIB Variables from all MIB files:

  • Level-2 Operators and above can use the  Inventory workspace, MIB Variables view.
  • NNMi administrators can use the  Configuration workspace, MIBs folder, MIB Variables view.

For information about each tab:Concept Link IconSee Also

MIB Variables Tab
Attribute Description
OID (Numeric)

The numeric representation of the OID (Object Identification) value for the selected MIB variable.

For example, IF-MIB's ifAdminStatus variable: .1.3.6.1.2.1.2.2.1.7

Name

The Name value that is stored in the MIB definition for the selected MIB variable.

For example, IF-MIB's variable: ifAdminStatus

Syntax

The SYTNAX value for the MIB variable.

Valid values for MIB variable that can be included in a MIB Expression include the following: 

Possible Syntax Values (* = SNMP v1 only, ** = SNMP v2 only)
Syntax Syntax
Address ** Module Identity
** Agent Capabilities ** Notification Group
Bits ** Notification Type
Counter ** Object Group **
Counter32 Object Identifier
Counter64 ** Object Identity
* Display String Octet String
Enumeration Opaque
Gauge Other (Usually indicates = unset)
Gauge32 * Physical Address
Integer Sequence
Interger32 Sequence of
IP Address ** Textual Convention
MIB Defined (Indicates a custom type defined in the MIB) Time_Ticks
** Module Compliance Unsigned32 (Integer)

For example, the IF-MIB's ifAdminStatus variable's SYNTAX:

ifAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}

For more information, click here.

  • When evaluating MIB expressions that include MIB variables of type Counter, Counter64, or Time_Ticks, NNMi evaluates the MIB Variable using the difference in value between the most recent poll and the poll before it. If you want NNMi to calculate a rate over time in seconds, divide the MIB Expression by sysUptime. For example:

    (((ifInOctets+ifOutOctets)*8/ifSpeed)*100)/sysUpTime*0.01

    The sysUpTime variable is a value of hundredths of a second. When you want the rate in seconds, use sysUpTime*0.01 in the MIB expression as shown in the previous example.

  • If you use a MIB variable of type Counter, Counter64, or Time_Ticks in the MIB Expression, NNMi automatically collects sysUpTime values if sysUpTime is not already in the MIB Expression. NNMi uses the sysUptime value to detect a system reboot. Any time a system reboot is detected, NNMi cannot determine the difference in values between polls for any Counter MIB variable and therefore does not calculate the MIB Expression for that poll.
OID (Text)

The textual representation of the OID for the selected MIB variable.

For example, the IF-MIB's ifAdminStatus variable: .iso.org.dod.internet.mgmt.mib-2.interfaces.ifTable.ifEntry.ifAdminStatus

Double-click the row representing a MIB variable. The MIB Variable Form displays all details about the selected MIB variable.

MIB Variable Form

[This is the context-sensitive help for the MIB Variable form.]

The MIB Variable form enables you to view more detailed information about the selected MIB variable provided by a MIB file loaded on the NNMi management server.

For example, the IF-MIB's ifAdminStatus:

ifAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The desired state of the interface. The testing(3) state
indicates that no operational packets can be passed."
::= { ifEntry 7 }

For information about each tabConcept Link IconSee Also

To view the MIB Variable form:

  1. Level-2 Operators and above, do one of the following:

    Method one, from the Inventory workspace:

    • Navigate to the  Inventory workspace, MIB Variables view:
    • Click the row containing the MIB variable of interest.

    Method two, using Actions:

    1. In any map or Node table view, do one of the following:

      • Click a Node and select ActionsMIB InformationList Supported MIBs.
      • Right-click a Node and select MIB InformationList Supported MIBs.
    2. Click the link to the MIB file of interest.
    3. Navigate to the MIB Variables tab.
    4. Select the OID (Numeric) of interest to open an MIB Variable form.

    Method three, for NNMi administrators using the Configuration workspace:

    • To view information about one MIB file, open the  Configuration workspace, MIBs folder, Loaded MIBs view.

      1. Double-click the row of interest.
      2. Navigate to the MIB Variables tab.
      3. Select the OID (Numeric) of interest to open an MIB Variable form.
    • To view information from all MIB files combined, open the  Configuration workspace, MIBs folder, MIB Variables view.

      Select the OID (Numeric) of interest to open an MIB Variable form.

  2. (Optional) To gather this information from a node, see Run SNMP Walk Commands (MIB Browser).
MIB Variable Basic Attributes
Attribute Description
Name

The Name value that is stored in the MIB definition for the selected MIB variable.

For example ifAdminStatus

OID (Numeric)

The numeric representation of the OID (Object Identification) value for the selected MIB variable.

For example: .1.3.6.1.2.1.2.2.1.7

OID (Text)

A symbolic OID uses mnemonic keywords to specify the managed object.

For example: .iso.org.dod.internet.mgmt.mib-2.interfaces.ifTable.ifEntry.ifAdminStatus

Syntax

The SYTNAX value for the MIB variable.

For example, the IF-MIB's ifAdminStatus variable's SYNTAX:

ifAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}

For more information, click here.

  • When evaluating MIB expressions that include MIB variables of type Counter, Counter64, or Time_Ticks, NNMi evaluates the MIB Variable using the difference in value between the most recent poll and the poll before it. If you want NNMi to calculate a rate over time in seconds, divide the MIB Expression by sysUptime. For example:

    (((ifInOctets+ifOutOctets)*8/ifSpeed)*100)/sysUpTime*0.01

    The sysUpTime variable is a value of hundredths of a second. When you want the rate in seconds, use sysUpTime*0.01 in the MIB expression as shown in the previous example.

  • If you use a MIB variable of type Counter, Counter64, or Time_Ticks in the MIB Expression, NNMi automatically collects sysUpTime values if sysUpTime is not already in the MIB Expression. NNMi uses the sysUptime value to detect a system reboot. Any time a system reboot is detected, NNMi cannot determine the difference in values between polls for any Counter MIB variable and therefore does not calculate the MIB Expression for that poll.
Textual Convention Defines the format rules to be used when displaying the MIB value. See Textual Convention Form for more information.
MIB

The name value that is stored at the beginning of the MIB definitions to identify the MIB.

For example, RFC1213-MIB is the name of the MIB:

RFC1213-MIB DEFINITIONS ::= BEGIN

To explore all of the information available from this MIB, click the Lookup icon, and select Open.
Description

The Description that is stored in the MIB for the selected MIB variable.

For example, the ifDescr variable's (1.3.6.1.2.1.2.2.1.2) definition in RFC2233 IF-MIB:

DESCRIPTION
"A textual string containing information about the interface. This string should include the name of the manufacturer, the product name and the version of the interface hardware/software."

MIB Variable Form: Enumerated Values Tab

The Enumerated Values tab enables you to view each enumerated value pair, if any, for a selected MIB OID. For example, the IF-MIB's ifAdminStatus includes three enumerated values for status 1=up, 2=down, 3=testing, as shown in the following example:

ifAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
1 up,
2 down),
3 testing
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The desired state of the interface. The testing(3) state
indicates that no operational packets can be passed."
::= { ifEntry 7 }

For information about each tab: Concept Link IconSee Also

Enumerated Value Tab
Attribute Description
String Value The text value that is associated with the Numeric Value for the selected MIB variable.
Numeric Value

The numeric value that is associated with the String Value for the selected MIB variable.

Double-click the row representing an enumerated value pair. The MIB Variable: Enumerated Values Form displays all details about the selected enumerated value pair.

MIB Variable: Enumerated Values Form

[This is the context-sensitive help for the  MIB Variable: Enumerated Values form = alias = mibEnumeratedValueFormHelp.]

The Enumerated Values form edisplays the details of an enumerated value pair, if any, for a selected MIB variable. For example, the IF-MIB's ifAdminStatus, includes enumerated values for status as shown in the following example:

ifAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
1 up,
2 down),
3 testing
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The desired state of the interface. The testing(3) state
indicates that no operational packets can be passed."
::= { ifEntry 7 }

To view the Enumerated Value form:

  1. Level-2 Operators and above, do one of the following:

    Method one, from the Inventory workspace:

    • Navigate to the  Inventory workspace, MIB Variables view:
    • Click the row containing the MIB variable of interest.

    Method two, using Actions:

    1. In any map or Node table view, do one of the following:

      • Click a Node and select ActionsMIB InformationList Supported MIBs.
      • Right-click a Node and select MIB InformationList Supported MIBs.
    2. Click the link to the MIB file of interest.
    3. Navigate to the MIB Variables tab.
    4. Select the OID (Numeric) of interest to open an MIB Variable form.

    Method three, for NNMi administrators using the Configuration workspace:

    • To view information about one MIB file, open the  Configuration workspace, MIBs folder, Loaded MIBs view.

      1. Double-click the row of interest.
      2. Navigate to the MIB Variables tab.
      3. Select the OID (Numeric) of interest to open an MIB Variable form.
    • To view information from all MIB files combined, open the  Configuration workspace, MIBs folder, MIB Variables view.

      Select the OID (Numeric) of interest to open an MIB Variable form.

  2. Navigate to the Enumerated Values tab.

    This table displays the string and numeric value for each enumeration, if any, specified for the selected MIB variable.

  3. Select the String Value of interest to open the Enumerated Values form.
Enumerated Value Basic Attributes
Attribute Description
String Value The text value that is associated with the Numeric Value for the selected MIB variable.
Numeric Value The numeric value that is associated with the String Value for the selected MIB variable.
MIB Variable

The name of the selected MIB variable that contains enumerated values.

For example, ifAdminStatus is an IF-MIB OID that contains enumerated values.

MIB

The name value that is stored at the beginning of the MIB definitions to identify the MIB.

For example, IF-MIB is the name of the MIB:

IF-MIB DEFINITIONS ::= BEGIN

To explore all of the information available from this MIB, click the Lookup icon, and select Open.

MIB Variable Form: Table Indices Tab

The Table Indices tab enables you to view the index values, if any, for a selected MIB variable. Table indices are used to store multiple values for a single MIB variable.

In the example, atIfIndex and atNetAddress are table indices for the RFC1213-MIB's atEntry variable. Table indices are identified using the INDEX keyword:

atEntry OBJECT-TYPE
SYNTAX AtEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Each entry contains one NetworkAddress to
`physical' address equivalence."
INDEX { atIfIndex,
atNetAddress }
::= { atTable 1 }

For information about each tab: Concept Link IconSee Also

Table Indices Tab
Attribute Description
Position

The position number of the MIB variable that is used as a Table Index object.

For example, Table Index object positions for atIfIndex = 0 and atNetAddress = 1:

INDEX { atIfIndex,
atNetAddress }

Name

The name of the selected MIB variable that is used as a Table Index object. Table indices are used for storing multiple values for a MIB variable.

Double-click the row representing a Table Index. The Table Index Form displays all details about the selected Table Index.

Table Index Form

[This is the context-sensitive help for the  MIB Variable: Table Index form = alias = mibTableIndexFormHelp.]

The Table Index form defines one of the multiple-choice values allowed within a single MIB variable.

In the example, atIfIndex and atNetAddress are table indices for the RFC1213-MIB's atEntry variable. Table indices are identified using the INDEX keyword:

atEntry OBJECT-TYPE
SYNTAX AtEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Each entry contains one NetworkAddress to
`physical' address equivalence."
INDEX { atIfIndex,
atNetAddress }
::= { atTable 1 }

To view the Table Index form:

  1. Level-2 Operators and above, do one of the following:

    Method one, from the Inventory workspace:

    • Navigate to the  Inventory workspace, MIB Variables view:
    • Click the row containing the MIB variable of interest.

    Method two, using Actions:

    1. In any map or Node table view, do one of the following:

      • Click a Node and select ActionsMIB InformationList Supported MIBs.
      • Right-click a Node and select MIB InformationList Supported MIBs.
    2. Click the link to the MIB file of interest.
    3. Navigate to the MIB Variables tab.
    4. Select the OID (Numeric) of interest to open an MIB Variable form.

    Method three, for NNMi administrators using the Configuration workspace:

    • To view information about one MIB file, open the  Configuration workspace, MIBs folder, Loaded MIBs view.

      1. Double-click the row of interest.
      2. Navigate to the MIB Variables tab.
      3. Select the OID (Numeric) of interest to open an MIB Variable form.
    • To view information from all MIB files combined, open the  Configuration workspace, MIBs folder, MIB Variables view.

      Select the OID (Numeric) of interest to open an MIB Variable form.

  2. Navigate to the Table Indices tab.

    This table displays the position and name value for each index entry, if any, specified for the selected MIB Variable.

  3. Select the Position of interest to open the Table Index form.
Table Index Basic Attributes
Attribute Description
Position

The position number of the MIB variable that is used as a Table Index object.

For example, Table Index object positions atIfIndex = 0 and atNetAddress = 1:

INDEX { atIfIndex,
atNetAddress }

MIB Variable The name of the selected MIB variable that is used as a Table Index object. Table indices are used for storing multiple values for a MIB variable.
Table Definition

The definition text provided in the MIB.

For example,atEntry is the MIB variable that defines the MIB table:

atEntry OBJECT-TYPE
SYNTAX AtEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Each entry contains one NetworkAddress to
`physical' address equivalence."
INDEX { atIfIndex,
atNetAddress }
::= { atTable 1 }

MIB Name

The name value that is stored at the beginning of the MIB definitions to identify the MIB.

For example, RFC1213-MIB is the name of the MIB:

RFC1213-MIB DEFINITIONS ::= BEGIN

To explore all of the information available from this MIB, click the Lookup icon, and select Open.

MIB Notifications Tab

[This is the context-sensitive help for the  Loaded MIBs: MIB Notifications form = alias = mibNotificationFormHelp.]

The MIB form's MIB Notifications tab lists each SNMP trap enabled by the currently displayed MIB file.

To view a list of all MIB Notifications from all MIB files, NNMi administrators can use the Configuration workspace, MIBs folder, MIB Notifications view.

For information about each tab: Concept Link IconSee Also

MIB Notifications Tab
Attribute Description
OID (Numeric)

The numeric representation of the OID (Object Identification) value for the selected MIB notification.

For example: .1.3.6.1.6.3.1.1.5.3

Name

The Name value that is stored in the MIB definition for the selected MIB notification.

For example: linkDown

OID (Text)

The textual representation of the OID for the selected MIB variable.

For example: .iso.org.dod.internet.snmpV2.snmpModules.snmpMIB .snmpMIBObjects.snmpTraps.linkDown

Double-click the row representing a notification. The MIB Notification Form displays all details about the selected notification.

MIB Notification Form

[This is the context-sensitive help for the  Loaded MIBs: MIB Notifications form = alias = mibNotificationFormHelp.]

The MIB Notification form enables you to view the SNMP trap information, if any, that is defined by the selected MIB. For example, the IF-MIB's linkDown, includes notification values as shown in the following example:

linkDown NOTIFICATION-TYPE
OBJECTS { ifIndex, ifAdminStatus, ifOperStatus }
STATUS current
DESCRIPTION
"A linkDown trap signifies that the SNMP entity, acting in
an agent role, has detected that the ifOperStatus object for
one of its communication links is about to enter the down
state from some other state (but not from the notPresent
state). This other state is indicated by the included value
of ifOperStatus."
::= { snmpTraps 3 }

For information about each tab Concept Link IconSee Also

To view the MIB Notification form:

  1. Level-2 Operators and above, do one of the following:

    Method one, using Actions:

    1. In any map or Node table view, do one of the following:

      • Click a Node and select ActionsMIB InformationList Supported MIBs.
      • Right-click a Node and select MIB InformationList Supported MIBs.
    2. Click the link to the MIB file of interest.
    3. Navigate to the MIB Notifications tab.
    4. Select the OID (Numeric) of interest to open an MIB Notifications form.

    Navigate to the MIB Variables tab.

    Method two, for NNMi administrators using the Configuration workspace:

    1. Open the  Configuration workspace, MIBs folder.
    2. Open the Loaded MIBs view.
    3. Double-click the row of interest.
    4. Navigate to the MIB Notifications tab.
    5. Select the OID (Numeric) of interest to open an MIB Notifications form.
  2. (Optional) To gather this information from a node, see Run SNMP Walk Commands (MIB Browser).
MIB Notification Basic Attributes
Attribute Description
Name

The Name value that is stored in the MIB definition for the selected MIB notification. In the following example, linkDown is the Name of the MIB variable :

linkDown NOTIFICATION-TYPE
OBJECTS { ifIndex, ifAdminStatus, ifOperStatus }
STATUS current
DESCRIPTION
"A linkDown trap signifies that the SNMP entity, acting in
an agent role, has detected that the ifOperStatus object for
one of its communication links is about to enter the down
state from some other state (but not from the notPresent
state). This other state is indicated by the included value
of ifOperStatus."
::= { snmpTraps 3 }

OID (Numeric) The numeric representation of the OID (Object Identification) value for the selected MIB notification.
OID (Text) The textual representation of the OID for the selected MIB variable.
MIB

The name value that is stored at the beginning of the MIB definitions to identify the MIB.

For example, IF-MIB is the name of the MIB:

IF-MIB DEFINITIONS ::= BEGINTo explore all of the information available from this MIB, click the Lookup icon, and select Open.

Description SNMP Trap Description that is stored in the MIB.
Type Optional. SNMP Trap --#TYPE value that is stored in the MIB.
Summary

Optional. The --#SUMMARY value that is stored in the MIB for the SNMP Trap.

Arguments Optional. Number of arguments for the SNMP Trap.
Severity Optional. The --#SEVERITY value that is stored in the MIB for the SNMP Trap.
Generic Optional. The --#GENERIC value that is stored in the MIB for the SNMP Trap.
Category Optional. The --#CATEGORY value that is stored in the MIB for the SNMP Trap.
Source ID Optional. The --#SOURCE ID  value that is stored in the MIB for the SNMP Trap.
State Optional. The --#STATE value that is stored in the MIB for the SNMP Trap.

MIB Notification Form: Notification Variables Tab

The MIB Notification form's Notification Variables tab enables you to view the SNMP trap information, if any, that can be sent by the selected MIB. In the following example, the IF-MIB's linkDown OID provides an SNMP trap. When this trap is generated, the ifIindex, ifAdminStatus, and ifOperStatus values are included in the SNMP trap text:

linkDown NOTIFICATION-TYPE
OBJECTS { ifIndex, ifAdminStatus, ifOperStatus }
STATUS current
DESCRIPTION
"A linkDown trap signifies that the SNMP entity, acting in
an agent role, has detected that the ifOperStatus object for
one of its communication links is about to enter the down
state from some other state (but not from the notPresent
state). This other state is indicated by the included value
of ifOperStatus."
::= { snmpTraps 3 }

For information about each tabConcept Link IconSee Also

MIB Notification Tab
Attribute Description
Position

The position number of the MIB variable in the Notification Variable object's definition.

In the following example, atIfIndex is position 1, ifAdminStatus is position 2, and ifOperStatus is position 3:

linkDown NOTIFICATION-TYPE
OBJECTS {ifIndex, ifAdminStatus, ifOperStatus}

Name

The name of the MIB variable.

In the following example ifIndex, ifAdminStatus, and ifOperStatus are Notification Variables:

linkDown NOTIFICATION-TYPE
OBJECTS { ifIndex, ifAdminStatus, ifOperStatus }

Double-click the row representing a Table Index. The Notification Variable Form displays all details about the selected Table Index.

Notification Variable Form

[This is the context-sensitive help for the  MIB Variable: Notification Variable form = alias = .mibNotificationVariableFormHelp.]

The Notification Variables form displays the information that will be included when the SNMP trap is generated. In the following example, the IF-MIB's linkDown OID provides an SNMP trap. When this trap is generated, the ifIindex, ifAdminStatus, and ifOperStatus values are included in the SNMP trap text:

linkDown NOTIFICATION-TYPE
OBJECTS { ifIndex, ifAdminStatus, ifOperStatus }
STATUS current
DESCRIPTION
"A linkDown trap signifies that the SNMP entity, acting in
an agent role, has detected that the ifOperStatus object for
one of its communication links is about to enter the down
state from some other state (but not from the notPresent
state). This other state is indicated by the included value
of ifOperStatus."
::= { snmpTraps 3 }

To view the Notification Variable form:

  1. Level-2 Operators and above, do one of the following:

    • Method one, in any map or Node table view:

      1. Click or right-click a Node:

        • Click and select ActionsMIB InformationList Supported MIBs.
        • Right-click and select MIB InformationList Supported MIBs.
      2. Click the link to the MIB file of interest.
    • Method two, in the  Inventory workspace, MIB Variables view:

      1. Double-click a row to open a MIB Variable form.
      2. Navigate to the MIB attribute, click the drop-down, and select Open.
    • Method three, alternate path for NNMi administrators:

      1. Open the  Configuration workspace, MIBs folder.
      2. Open the Loaded MIBs view.
      3. Double-click the row of interest.
  2. Navigate to the MIB Notifications tab.
  3. Select the OID (Numeric) of interest to open an MIB Notification form.
  4. Navigate to the Notification Variables tab.

    This table displays the string and numeric value for each notification, if any, specified for the selected MIB Notification.

  5. Select the Position of interest to open the Notification Variable form.
MIB Notification Basic Attributes
Attribute Description
Position

The position number of the MIB variable that is used as a Notification Variable object.

In the following example, atIfIndex is position 1, ifAdminStatus is position 2, and ifOperStatus is position 3:

linkDown NOTIFICATION-TYPE
OBJECTS {ifIndex, ifAdminStatus, ifOperStatus}

MIB Variable

The name of the MIB variable.

In the following example ifIndex, ifAdminStatus, and ifOperStatus are Notification Variables:

linkDown NOTIFICATION-TYPE
OBJECTS { ifIndex, ifAdminStatus, ifOperStatus }

Trap Definition

The name of the MIB notification used to define the SNMP trap.

For example: linkDown.

MIB

The name value that is stored at the beginning of the MIB definitions to identify the MIB.

For example, IF-MIB is the name of the MIB:

IF-MIB DEFINITIONS ::= BEGIN

To explore all of the information available from this MIB, click the Lookup icon, and select Open.

Textual Conventions Tab

The MIB form's MIB Textual Conventions tab lists all the format rules defined in the currently displayed MIB file. NNMi uses these MIB format rules to determine how to display any associated MIB variable values.

To view a list of all Textual Conventions from all MIB files, NNMi administrators can use the  Configuration workspace, MIBs folder, Textual Conventions view.

For information about each tab: Concept Link IconSee Also

Textual Conventions Tab
Attribute Description
Name

The Name value that is stored in the MIB definition for the selected textual convention.

For example: MAC Address

Display Hint

Format rule used with the Value Constraint and Primitive Type to help determine the format when displaying the associated MIB value.

For example: for MAC Address, the Display Hint is "1x:" to indicate the value must consist of a one-byte hex string or two-hex digits, such as 01 or AB.

Primitive Type

Defines the base type to be used when determining the format for displaying the associated MIB variable value.

For example: for the MAC Address variable, the Primitive Type is OCTET STRING.

Value Constraint

Format rule used with the Display Hint and Primitive Type to help determine the format when displaying the associated MIB variable value.

For example: for the MAC Address value contraint is (SIZE (6)) to indicate the format must include six one-byte hex strings, such as 0A:BC:1D:2E:3F:40.

Double-click the row representing an enumerated value pair. The Textual Convention Form displays all details about the selected enumerated value pair.

Textual Convention Form

[This is the context-sensitive help for the Textual Conventions form = alias = mibTextualConventionFormHelp.]

The MIB Textual Convention form displays format rules for the selected Textual Convention value. MIB files define any required Textual Conventions for their MIB Variables and MIB Notifications. NNMi uses these MIB format rules for determining how to display any associated MIB values.

For information about each tabConcept Link IconSee Also

To view the MIB's Textual Convention form:

Level-2 Operators and above, do one of the following:

Textual Conventions Basic Attributes
Attribute Description
Name The Name value that is stored in the MIB file's definition for the selected textual convention.
Status

The Status value that is stored in the MIB file's definition for the selected textual convention. Possible values are:

  • current
  • deprecated
  • obsolete
Display Hint Format rule used with the Value Constraint and Primitive Type to help determine the format when displaying the associated MIB value. For example, to display the MAC Address, the DISPLAY-HINT is "1x:" to indicate the value must consist of a one-byte hex string or two-hex digits, such as 01 or AB.
Value Constraint Format rule used with the Display Hint and Primitive Type to help determine the format when displaying the associated MIB variable value. For example, the value constraint under SYNTAX for the MAC Address is (SIZE (6)) to indicate the format must include six one-byte hex strings, such as 0A:BC:1D:2E:3F:40.
Primitive Type

Defines the base type to be used when determining the format for displaying the associated MIB variable value.

For example, Octet String or Gauge.

MIB

The name value that is stored at the beginning of the MIB File to identify the MIB. See Display a MIB File (source text file).

To explore all of the information available from this MIB, click the Lookup icon, and select Open to open the MIB Form.
Description The Description that is stored in the MIB for the selected Textual Convention.

Textual Convention Form: Enumerated Values Tab

The Enumerated Values tab enables you to view each enumerated value pair, if any, for a selected MIB OID. For example, the IF-MIB's ifAdminStatus includes three enumerated values for status 1=up, 2=down, 3=testing, as shown in the following example:

ifAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
1 up,
2 down),
3 testing
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The desired state of the interface. The testing(3) state
indicates that no operational packets can be passed."
::= { ifEntry 7 }

For information about each tabConcept Link IconSee Also

Enumerated Value Tab
Attribute Description
String Value The text value that is associated with the Numeric Value for the selected MIB variable.
Numeric Value

The numeric value that is associated with the String Value for the selected MIB variable.

Double-click the row representing an enumerated value pair. The Textual Convention: Enumerated Values Form displays all details about the selected enumerated value pair.

Textual Convention: Enumerated Values Form

[This is the context-sensitive help for the  MIB Variable: Enumerated Values form = alias = mibEnumeratedValueFormHelp.]

The Enumerated Values form displays the details of an enumerated value pair, if any, for a selected MIB variable. For example, the IF-MIB's ifAdminStatus variable includes enumerated values for three statuses, as shown in the following example from the MIB file's source text file:

ifAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
1 up,
2 down),
3 testing
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The desired state of the interface. The testing(3) state
indicates that no operational packets can be passed."
::= { ifEntry 7 }

To view the Enumerated Value form:

  1. Level-2 Operators and above, do one of the following:

  2. Navigate to the Enumerated Values tab.

    This table displays the string and numeric value for each enumeration, if any, specified for the selected MIB variable.

  3. Select the String Value of interest to open the Enumerated Values form.
Enumerated Value Basic Attributes
Attribute Description
String Value The text value that is associated with the Numeric Value for the selected MIB variable.
Numeric Value The numeric value that is associated with the String Value for the selected MIB variable.
MIB Variable

The name of the selected MIB variable that contains enumerated values.

For example, ifAdminStatus is an IF-MIB OID that contains enumerated values.

MIB

The name value that is stored at the beginning of the MIB definitions to identify the MIB.

For example, IF-MIB is the name of the MIB:

IF-MIB DEFINITIONS ::= BEGIN

To explore all of the information available from this MIB, click the Lookup icon, and select Open.