[ Previous | Next | Contents | Glossary | Home | Search ]
AIX Version 4.3 Communications Programming Concepts

Working with Management Information Base Variables

The snmpinfo command is a simple Simple Network Management Protocol (SNMP) manager application tool that makes SNMP get, get-next, and set requests of SNMP agents. The snmpinfo command obtains its object descriptions of the Management Information Base (MIB) variables (described by RFC 1213) from the /etc/mib.defs file.

You can add object definitions for MIB variables to the /etc/mib.defs file by using the mosy command.

You can also add object definitions for experimental MIB modules or private-enterprise-specific MIB modules to the /etc/mib.defs file. This file is created by the mosy command. You first must obtain the private MIB module from a vendor that supports those MIB variables.

Updating the /etc/mib.defs file to incorporate a vendor's private or experimental MIB object definitions can be done two ways. The first approach is to create a subfile and then concatenate that subfile to the existing MIB /etc/mib.defs file. To create the subfile for the private MIBs and update the /etc/mib.defs file, issue the following commands:

mosy -o /tmp/private.obj /tmp/private.my
cat /etc/mib.defs /tmp/private.obj > /tmp/mib.defs
cp /tmp/mib.defs /etc/mib.defs

A second approach recreates the /etc/mib.defs file with the mosy command:

mosy -o /etc/mib.defs /usr/lpp/snmpd/smi.my \ 
/usr/lpp/snmpd/mibII.my /tmp/private.my

The MIB object groups in the private MIB object definition module may have order dependencies.

Remember the SNMP agent being queried must have these MIB variables implemented before it can return a value for the requested MIB variables.


[ Previous | Next | Contents | Glossary | Home | Search ]