IBM-AIX-MIB: View SNMP OID List / Download MIB

VENDOR: IBM


 Home MIB: IBM-AIX-MIB
Download as:   

Download standard MIB format if you are planning to load a MIB file into some system (OS, Zabbix, PRTG ...) or view it with a MIB browser. CSV is more suitable for analyzing and viewing OID' and other MIB objects in excel. JSON and YAML formats are usually used in programing even though some systems can use MIB in YAML format (like Logstash).
Keep in mind that standard MIB files can be successfully loaded by systems and programs only if all the required MIB's from the "Imports" section are already loaded.
The tree-like SNMP object navigator requires no explanations because it is very simple to use. And if you stumbled on this MIB from Google note that you can always go back to the home page if you need to perform another MIB or OID lookup.


Object Name OID Type Access Info
 ibm 1.3.6.1.4.1.2
     ibmProd 1.3.6.1.4.1.2.6
         ibmAIX 1.3.6.1.4.1.2.6.191
This MIB module defines AIX system management objects, which model devices (printer/plotter, tape, hard disk, memory, SCSI adapter, CDROM drive) physical and logical storage (volume group, physical volume, logical volume, and paging space), print spooling (printing queue), users/groups, agent action, file systems, processes, subsystem services (subsystem, subserver), login users, system environment, events.
                 aixSystem 1.3.6.1.4.1.2.6.191.1
                     aixAgent 1.3.6.1.4.1.2.6.191.1.1
                         aixAgentAction 1.3.6.1.4.1.2.6.191.1.1.1 integer read-write
This variable is used to trigger an action on the agent itself . 5 (running) is the normal state. When set, this variable triggers the agent to do the following: reset - flush cache, flush MIB, re-read configuration file. debugOn - turns on debugging functionality in the agent debugOff- turns off debugging functionality in the agent shutdown- shutdown the agent running - the normal state. Enumeration: 'reset': 1, 'debugOn': 2, 'running': 5, 'debugOff': 3, 'shutdown': 4.
                         aixAgentCmdString 1.3.6.1.4.1.2.6.191.1.1.2 displaystring read-write
This string represents a runnable command on AIX with its parameters. Once the command string is set, the system can trigger the execution of the command by setting the value of seExeCommand.
                         aixAgentExeCommand 1.3.6.1.4.1.2.6.191.1.1.3 integer read-write
The variable is used to trigger the execution of the command in seCommandString. The result is stored by seCmdResult, and the output is stored by aixAgentCmdOutTable. The normal state of this object is 2(default). When set to 1(trigger), the command stored in aixAgentCmdString will be run. trigger(1) - when the value of the variable is set to trigger(1), the command stored at aixAgentCmdString will be executed. default(2) - is the default value. Enumeration: 'default': 2, 'trigger': 1.
                         aixAgentCmdResult 1.3.6.1.4.1.2.6.191.1.1.4 integer32 read-only
This object stores the output result of executing the command stored by aixAgentCmdString.
                         aixAgentPollInterval 1.3.6.1.4.1.2.6.191.1.1.5 integer32 read-write
The poll interval(in seconds) used by the agent. The default value is zero. This value is used to define the minimum time interval during which the subagent must update an object's value, check if any events occurred and send a trap when an event occurs. If the value is zero, the polling depends on each seperate configuration variable such as aixFsPollInterval, aixVgPollInterval, etc. if it is not zero, The value can not be less than 5 seconds. If it is set to 1, 2, 3, or 4, the agent automatically sets the poll interval to 5. aixAgentPollInterval works together with the other variables such as aixFsPollInterval, aixCPUPollInterval, aixVgPollInterval, aixPagePollInterval, aixLFPollInterval to decide the final polling interval of each group. In /etc/aixmibd.conf file, this variable is corresponding to pollInterval. Originally, it is SYNTAX Integer32(0,6..2147483647), but IT Director MIB compiler does not accept this and it is changed to this.
                         aixPollEnable 1.3.6.1.4.1.2.6.191.1.1.6 integer read-write
Enables or disables polling. It may change the following polling interval variables: aixAgentPollInterval aixFsPollInterval aixCPUPollInterval aixVgPollInterval aixPagePollInterval aixLFPollInterval If one of the polling intervals above is non-zero, its value is 1(enable), otherwise its valuse is 2 (disable). If it is set to enable(1) and all polling intervals above are zero, aixAgentPollInterval will be set to 3600 seconds. If it is set to 1(enable) and one of the polling intervals is non-zero, the agent will not change anything. If it is set to disable (2), the polling functionality is disabled, and all polling intervals are set to zero. Enumeration: 'enable': 1, 'disable': 2.
                         aixLastTrapMsg 1.3.6.1.4.1.2.6.191.1.1.7 displaystring read-only
This object holds the most recent trap message sent from the subagent. Its default value is set to NULL.
                         aixAgentCmdOutTable 1.3.6.1.4.1.2.6.191.1.1.8 no-access
The output from the execution of the command stored in aixAgentCmdString
                             aixAgentCmdOutTableEntry 1.3.6.1.4.1.2.6.191.1.1.8.1 no-access
An entry of the agent command output table
                                 aixAgentCmdOutput 1.3.6.1.4.1.2.6.191.1.1.8.1.1 displaystring read-only
After the command stored in aixAgentCmdString is run, each line of the output is stored in one entry of this table.
                                 aixAgentCmdOutIndex 1.3.6.1.4.1.2.6.191.1.1.8.1.2 integer32 read-only
Index of the table.
                         aixFsPollInterval 1.3.6.1.4.1.2.6.191.1.1.9 integer32 read-write
The polling interval for file systems. This variable works together with the general polling interval aixAgentPollInterval. Its default value is zero. 1) If aixAgentPollInterval is zero and aixFsPollInterval is zero, the polling of file systems is disabled. 2) If aixAgentPollInterval is non-zero and aixFsPollInterval is zero, the polling interval is the value of aixAgentPollInterval. 3) If both aixAgentPollInterval and aixFsPollInterval are non-zero, the polling interval of file systems is set to the value of aixFsPollInterval. That means aixFsPollInterval has a higher priority than aixAgentPollInterval . This corresponds to fsPollInterval in /etc/aixmibd.conf.
                         aixCPUPollInterval 1.3.6.1.4.1.2.6.191.1.1.10 integer32 read-write
The polling interval for CPU utilization. This variable works together with the general polling interval aixAgentPollInterval. Its default value is zero. 1) If aixAgentPollInterval is zero and aixCPUPollInterval is zero, the polling of CPU utilization is disabled. 2) If aixAgentPollInterval is non-zero and aixCPUPollInterval is zero, the polling interval is the value of aixAgentPollInterval. 3) If both aixAgentPollInterval and aixCPUPollInterval are non-zero, the polling interval of CPU utilization is set to the value of aixCPUPollInterval. That means aixCPUPollInterval has a higher priority than aixAgentPollInterval . This corresponds to cpuPollInterval in /etc/aixmibd.conf.
                         aixVgPollInterval 1.3.6.1.4.1.2.6.191.1.1.11 integer32 read-write
The polling interval for volume groups. This variable works together with the general polling interval aixAgentPollInterval. Its default value is zero. 1) If aixAgentPollInterval is zero and aixVgPollInterval is zero, the polling of file systems is disabled. 2) If aixAgentPollInterval is non-zero and aixVgPollInterval is zero, the polling interval is the value of aixAgentPollInterval. 3) If both aixAgentPollInterval and aixVgPollInterval are non-zero, the polling interval of volume groups is set to the value of aixVgPollInterval. That means aixVgPollInterval has a higher priority than aixAgentPollInterval . This corresponds to vgPollInterval in /etc/aixmibd.conf.
                         aixPagePollInterval 1.3.6.1.4.1.2.6.191.1.1.12 integer32 read-write
The polling interval for paging spaces. This variable works together with the general polling interval aixAgentPollInterval. Its default value is zero. 1) If aixAgentPollInterval is zero and aixPagePollInterval is zero, the polling of file systems is disabled. 2) If aixAgentPollInterval is non-zero and aixPagePollInterval is zero, the polling interval is the value of aixAgentPollInterval. 3) If both aixAgentPollInterval and aixPagePollInterval are non-zero, the polling interval of paging spaces is set to the value of aixFsPollInterval. That means aixPagePollInterval has a higher priority than aixAgentPollInterval . This corresponds to pagePollInterval in /etc/aixmibd.conf.
                         aixLFPollInterval 1.3.6.1.4.1.2.6.191.1.1.13 integer32 read-write
The polling interval for login failure. This variable works together with the general polling interval aixAgentPollInterval. Its default value is zero. 1) If aixAgentPollInterval is zero and aixLFPollInterval is zero, the polling of file systems is disabled. 2) If aixAgentPollInterval is non-zero and aixLFPollInterval is zero, the polling interval is the value of aixAgentPollInterval. 3) If both aixAgentPollInterval and aixFsPollInterval are non-zero, the polling interval of login failure is set to the value of aixLFPollInterval. That means aixLFPollInterval has a higher priority than aixAgentPollInterval . This corresponds to lfPollInterval in /etc/aixmibd.conf.
                     aixSystemEnvironment 1.3.6.1.4.1.2.6.191.1.2
                         aixSeCPUUtilization 1.3.6.1.4.1.2.6.191.1.2.1 integer32 read-only
It is an aggregate view for utilization of multiple CPUs. aixSeCPUUtilization equals the sum of each CPU kernel time percentage and user time percentage divided by the number of CPUs. When the CPU utilization reaches the threshold aixSeCPUThreshold, an event will be generated. After the rising event is generated, another similar event will not occur until it falls behind the threshold and reaches it again. This object will be refreshed at least with each poll interval.
                         aixSeCPUThreshold 1.3.6.1.4.1.2.6.191.1.2.2 integer32 read-write
Threshold for the CPU utilization. When it is set to zero, the trap is disabled. The default value is 95 which means a trap would be generated if the aggregate CPU utilization reaches 95 percent.
                         aixSeSystemRunLevel 1.3.6.1.4.1.2.6.191.1.2.3 integer read-write
Tells the init command to set the run level on next system boot. Enumeration: 'levelm': 11, 'level0': 1, 'level1': 2, 'level2': 3, 'level3': 4, 'level4': 5, 'level5': 6, 'level6': 7, 'level7': 8, 'level8': 9, 'level9': 10.
                         aixSeSystemState 1.3.6.1.4.1.2.6.191.1.2.4 integer read-write
The object is used to shutdown or reboot the system to the run level set by aixSeSystemRunLevel. running(1) - the system is running reboot(2) - when the value of the variable is set to reboot(2), the system will reboot. shutdown(3) - shutdown the system. Enumeration: 'running': 1, 'reboot': 2, 'shutdown': 3.
                         aixSeSystemTrap 1.3.6.1.4.1.2.6.191.1.2.5 integer read-write
Enable or disable the aixUtilizationCPU trap in the system environment group. The default value is enable(1). Enumeration: 'enable': 1, 'disable': 2.
                     aixAuxSystemEnvironment 1.3.6.1.4.1.2.6.191.1.3
                         aixSeDateAndTime 1.3.6.1.4.1.2.6.191.1.3.1 displaystring read-only
The system date and time.
                         aixSeMaxProcPerUser 1.3.6.1.4.1.2.6.191.1.3.2 integer32 read-write
The number of processes each user can use at one time. This limit does not apply to a root user. The default number is 128. Increasing or decreasing this number takes effect at the next system boot.
                         aixSeLicenseNum 1.3.6.1.4.1.2.6.191.1.3.3 integer32 read-write
Specifies the maximum number of fixed licenses on the system. Valid values for this option are positive integers from 1 to 32767. When this object is set, its value is updated without rebooting the system.
                         aixSeRemainingLicenseNum 1.3.6.1.4.1.2.6.191.1.3.4 integer32 read-only
Specifies the remaining number of fixed licenses on the system. Valid values for the is option are positive integers from 1 to 32767.
                         aixSeNumCPUs 1.3.6.1.4.1.2.6.191.1.3.5 integer32 read-only
The number of CPUs on the machine.
                         aixSeMachineType 1.3.6.1.4.1.2.6.191.1.3.6 displaystring read-only
The machine type. For example: IBM,7043-150
                         aixSeSerialNumber 1.3.6.1.4.1.2.6.191.1.3.7 displaystring read-only
The serial number of the machine.
                     aixTrap 1.3.6.1.4.1.2.6.191.1.4
                         aixFileSystemMounted 1.3.6.1.4.1.2.6.191.1.4.1
When a file system is mounted or unmounted through SNMP, an event is generated. aixFsName is defined in aixFsTable.
                         aixFileSystemFull 1.3.6.1.4.1.2.6.191.1.4.2
When the current sampled used percentage of a file system is above aixFsThreshold and the value at last interval is less than the aixFsThreshold, an the event will be generated. This event message contains the file system name, the total size of the file system and available size. aixFsName - file system name, aixFsSize - file system size in megabytes aixFsFree - free file system size in megabytes aixFsThreshold - the threshold for the file system size
                         aixVolumeGroupFull 1.3.6.1.4.1.2.6.191.1.4.3
When the current sampled used percentage of a volume group is above aixVgThreshold and the value at the last interval is less than the aixVgThreshold, an event will be generated. This event message contains the volume group name, the size, the free size and the threshold. aixVgName - the name of the volume group. aixVgSize - the total size of the volume group. aixVgFree - the free size of the volume group. aixVgThreshold - the threshold for the volume group.
                         aixPageFull 1.3.6.1.4.1.2.6.191.1.4.4
When the current used percentage of a paging space is above aixPageThreshold and the value at the last interval is less than the aixPageThreshold, an event will be generated. The event message includes the name of the paging space, the total size, the used percentage, the volume group it belongs to, and threshold value. aixPageName - the paging space name aixPagePercentUsed - percentage of used Paging space. aixPageThreshold - the threshold value of the paging space.
                         aixUserLoginFailed 1.3.6.1.4.1.2.6.191.1.4.5
If a user fails to log into the system in the number of attempts defined by aixLoginFailedThreshold in the last time period defined by aixFailedLoginTimePeriod, an event is generated. The event message includes the attempts of all users who failed to log into the system and the time period during which these attempts occurred.
                         aixUtilizationCPU 1.3.6.1.4.1.2.6.191.1.4.6
When the CPU utilization reaches the threshold, an event is generated. The event contains the utilization, and threshold values. aixSeCPUUtilization - CPU Utilization value. aixSeThresholdCPU - Threshold value.
                     aixGeneralTrap 1.3.6.1.4.1.2.6.191.1.6
                         aixSnmptrapHolder 1.3.6.1.4.1.2.6.191.1.6.1
Together with the agent, the snmptrap command is delivered. The snmptrap command sends a trap message to the agent. This object is place holder for snmptrap command.
                 aixStorageSystem 1.3.6.1.4.1.2.6.191.2
                     aixVolumeGroup 1.3.6.1.4.1.2.6.191.2.1
                         aixVgThreshold 1.3.6.1.4.1.2.6.191.2.1.1 integer32 read-write
The percentage threshold for the volume group. When the current used percentage for the volume group is above aixVgThreshold and the value of the last poll interval is less than the threshold, an event is generated. The value for aixVgThreshold should be between 0 and 100. When it is zero, the related trap, aixVolumeGroupFull, is disabled. Its default value is 95.
                         aixVgTable 1.3.6.1.4.1.2.6.191.2.1.2 no-access
A table of defined volume groups. The number of entries depends on the configuration of the system. On AIX, a volume group is a collection of 1 to 32 physical volumes of varying size and type with a system-wide unique name of up to 15 characters. Each system can have one to 255 volume groups configured. This table will be refreshed at least with each poll interval.
                             aixVgEntry 1.3.6.1.4.1.2.6.191.2.1.2.1 no-access
An entry of vgTable. Each entry contains all the attributes of each volume group.
                                 aixVgName 1.3.6.1.4.1.2.6.191.2.1.2.1.1 displaystring read-only
The name of a volume group. The name must be system-wide unique and can range from 1 to 15 characters
                                 aixVgIdentifier 1.3.6.1.4.1.2.6.191.2.1.2.1.2 displaystring read-only
It is a series of numbers(e.g. 0038455182a7b5f6) to identify the volume group.
                                 aixVgState 1.3.6.1.4.1.2.6.191.2.1.2.1.3 integer read-only
State of the volume group. If the volume group is activated with the varyonvg command, the state is either active/complete (indicating all physical volumes are active) or active/partial (indicating some physical volumes are not active). If the volume group is not activated with the varyonvg command, the state is inactive . Enumeration: 'unknown': 4, 'inactive': 3, 'activePartial': 2, 'activeComplete': 1.
                                 aixVgSize 1.3.6.1.4.1.2.6.191.2.1.2.1.4 integer32 read-only
The total size of the volume group in megabytes.
                                 aixVgFree 1.3.6.1.4.1.2.6.191.2.1.2.1.5 integer32 read-only
The available size of the volume group in megabytes.
                                 aixVgCurNumLVs 1.3.6.1.4.1.2.6.191.2.1.2.1.6 integer32 read-only
The number of logical volumes currently in the volume group.
                                 aixVgOpenLVs 1.3.6.1.4.1.2.6.191.2.1.2.1.7 integer32 read-only
Number of logical volumes within the volume group that are currently open.
                                 aixVgActivePVs 1.3.6.1.4.1.2.6.191.2.1.2.1.8 integer32 read-only
The number of active physical voulmes currently in the volume group.
                                 aixVgIndex 1.3.6.1.4.1.2.6.191.2.1.2.1.9 integer32 read-only
The columnar index for the vgTable.
                     aixLogicalVolume 1.3.6.1.4.1.2.6.191.2.2
                         aixLvTable 1.3.6.1.4.1.2.6.191.2.2.1 no-access
A logical volume is a collection of logical partitions made up of physical partitions, all contained in a single volume group. Logical volumes are expandable and can span several physical volumes in a volume group. Because it is very slow to get the data in the table, no data may be returned from the snmp agent.
                             aixLvEntry 1.3.6.1.4.1.2.6.191.2.2.1.1 no-access
An entry of lvTable
                                 aixLvName 1.3.6.1.4.1.2.6.191.2.2.1.1.1 displaystring read-only
Logical volume names must be system-wide unique and can range from 1 to 15 characters.
                                 aixLvNameVG 1.3.6.1.4.1.2.6.191.2.2.1.1.2 displaystring read-only
Name of the volume group the logical volume belongs to. Volume group names must be unique system wide and can range from 1 to 15 characters.
                                 aixLvType 1.3.6.1.4.1.2.6.191.2.2.1.1.3 integer read-write
Logical volume type. The type may be boot, jfslog, jfs, and paging. Enumeration: 'jfs2log': 6, 'jfs2': 5, 'jfslog': 2, 'boot': 4, 'paging': 3, 'other': 7, 'jfs': 1.
                                 aixLvMountPoint 1.3.6.1.4.1.2.6.191.2.2.1.1.4 displaystring read-only
File system mount point for the logical volume, if applicable.
                                 aixLvSize 1.3.6.1.4.1.2.6.191.2.2.1.1.5 integer32 read-only
The size of the logical volume in PPS.
                                 aixLvState 1.3.6.1.4.1.2.6.191.2.2.1.1.6 integer read-only
The status of the logical volume. It may be open/syncd, open/stale, close/syncd, close/stale or undefined. Enumeration: 'closeStale': 3, 'undefined': 5, 'openSyncd': 2, 'openStale': 1, 'closeSyncd': 4.
                                 aixLvIndex 1.3.6.1.4.1.2.6.191.2.2.1.1.7 integer32 read-only
The columnar index for the lvTable.
                     aixPhysicalVolume 1.3.6.1.4.1.2.6.191.2.3
                         aixPvTable 1.3.6.1.4.1.2.6.191.2.3.1 no-access
A physical volume is a read-write disk physically attached to a computer, with a permanently assigned system wide unique identifier. They are added to a volume group with the extendvg command and removed from a volume group with the reducevg command. When added to the volume group, physical volumes are partitioned into contiguous, equal-sized units of space called physical partitions.
                             aixPvEntry 1.3.6.1.4.1.2.6.191.2.3.1.1 no-access
An entry of pvTable
                                 aixPvName 1.3.6.1.4.1.2.6.191.2.3.1.1.1 displaystring read-only
The name of the physical volume. Physical volume names are typically in the form hdiskx where x is a system wide unique number. This name is assigned when the disk is detected for the first time on a system startup or when the system management commands are used at runtime to add a disk to the system.
                                 aixPvNameVG 1.3.6.1.4.1.2.6.191.2.3.1.1.2 displaystring read-only
The volume group which is assigned to the physical volume.
                                 aixPvState 1.3.6.1.4.1.2.6.191.2.3.1.1.3 integer read-only
State of the physical volume. If the volume group that contains the physical volume is varied on with the varyonvg command, the state is active , missing , or removed . If the physical volume is varied off with the varyoffvg command, the state is varied off . Enumeration: 'active': 1, 'removed': 3, 'variedOff': 4, 'missing': 2.
                                 aixPvSize 1.3.6.1.4.1.2.6.191.2.3.1.1.4 integer32 read-only
Total size of the physical volume in megabytes.
                                 aixPvFree 1.3.6.1.4.1.2.6.191.2.3.1.1.5 integer32 read-only
Available size of the physical volume in megabytes
                                 aixPvNumLVs 1.3.6.1.4.1.2.6.191.2.3.1.1.6 integer32 read-only
Number of logical volumes using the physical volume.
                                 aixPvIndex 1.3.6.1.4.1.2.6.191.2.3.1.1.7 integer32 read-only
The columnar index for the pvTable.
                     aixPagingSpace 1.3.6.1.4.1.2.6.191.2.4
                         aixPageThreshold 1.3.6.1.4.1.2.6.191.2.4.1 integer32 read-write
The percentage used threshold for the paging space. When the current used percentage for the page space is above aixVgThreshold and the value of the last poll interval is less than the threshold, then an event will be generated. The value for aixPageThreshold should be between 0 and 100. When it is set to zero, the related trap, aixPageFull, is disabled. Its default value is 95.
                         aixPageTable 1.3.6.1.4.1.2.6.191.2.4.2 no-access
A paging space is fixed-disk storage for information that is resident in virtual memory, but is not currently being accessed. When the amount of free real memory in the system is low, programs or data that have not been used recently are moved from real memory to paging space in order to free real memory for other activities. This table will be refreshed at least with each poll interval.
                             aixPageEntry 1.3.6.1.4.1.2.6.191.2.4.2.1 no-access
An entry of the pageTable Table
                                 aixPageName 1.3.6.1.4.1.2.6.191.2.4.2.1.1 displaystring read-only
The name of the paging space. It is assigned by the system automatically when it is created.
                                 aixPageNameVG 1.3.6.1.4.1.2.6.191.2.4.2.1.2 displaystring read-only
Specifies the volume group within which the logical volume for the paging space is created.
                                 aixPageNamePV 1.3.6.1.4.1.2.6.191.2.4.2.1.3 displaystring read-only
Specifies the physical volume of the volume group.
                                 aixPageSize 1.3.6.1.4.1.2.6.191.2.4.2.1.4 integer32 read-only
The size of the paging space.
                                 aixPagePercentUsed 1.3.6.1.4.1.2.6.191.2.4.2.1.5 integer32 read-only
The used percentage of the paging space.
                                 aixPageStatus 1.3.6.1.4.1.2.6.191.2.4.2.1.6 integer read-only
Status of the paging space. Enumeration: 'active': 1, 'notActive': 2.
                                 aixPageType 1.3.6.1.4.1.2.6.191.2.4.2.1.7 integer read-only
The type of paging space. Enumeration: 'lv': 1, 'other': 3, 'nfs': 2.
                                 aixPageIndex 1.3.6.1.4.1.2.6.191.2.4.2.1.8 integer32 read-only
The columnar index for the pageTable.
                 aixPrintSystem 1.3.6.1.4.1.2.6.191.3
                     aixPrtQueue 1.3.6.1.4.1.2.6.191.3.1
                         aixPrtQueTable 1.3.6.1.4.1.2.6.191.3.1.1 no-access
The print queue table. If several devices are attached to one queue, there are several entries whose keys are queue name and device name.
                             aixPrtQueEntry 1.3.6.1.4.1.2.6.191.3.1.1.1 no-access
An entry for a queue in the print queue table.
                                 aixPrtQueName 1.3.6.1.4.1.2.6.191.3.1.1.1.1 displaystring read-only
The name of the queue .
                                 aixPrtQueDevice 1.3.6.1.4.1.2.6.191.3.1.1.1.2 displaystring read-only
Print Queue device
                                 aixPrtQueStatus 1.3.6.1.4.1.2.6.191.3.1.1.1.3 integer read-only
ready(1) indicates that virtual device is up. running(2) indicates that virtual device is running a job. waiting(3) indicates that virtual device is could not open and is waiting on a device. off(4) indicates that virtual device is down. oprwait(5) indicates that virtual device is waiting on operator message response. init(6) indicates that virtual device is running a job which has set status to initialize . sending(7) indicates that virtual device is remote and in the process of sending data to the foriegn server. gethost(8) indicates that virtual device is remote and in the process of determining the foriegn server. connect(9) indicates that virtual device is remote and in the process of connecting to the foriegn server. busy(10) indicates virtual device is busy printing another job. Enumeration: 'sending': 7, 'busy': 10, 'off': 4, 'oprwait': 5, 'waiting': 3, 'init': 6, 'running': 2, 'connect': 9, 'ready': 1, 'gethost': 8.
                                 aixPrtQueAction 1.3.6.1.4.1.2.6.191.3.1.1.1.4 integer read-write
A control variable used to trigger an action on a queue in the printer table. When read, this variable always returns the most recent value that it was previously set to. If it has not been set since the last initialization of the print subsystem on the node, it returns default(1) . When set, this variable causes the queue to undertake the indicated action: default - the default value for this queue status. start - start the print queue. stop - stop the print queue. Enumeration: 'default': 1, 'start': 2, 'stop': 3.
                                 aixPrtQueDescipline 1.3.6.1.4.1.2.6.191.3.1.1.1.5 displaystring read-only
Specifies the order of print jobs in the queue. For example, the discipline may be first come first servei(fcfs) or shrtest job next (sjn). The selected queuing discipline applies to all printers associated with the print queue.
                                 aixPrtQueAcctFile 1.3.6.1.4.1.2.6.191.3.1.1.1.6 displaystring read-only
Specify the full path name of an existing file where accounting data for this print queue can be logged. If account is not wanted, it is set to FALSE.
                                 aixPrtQueHost 1.3.6.1.4.1.2.6.191.3.1.1.1.7 displaystring read-only
Specifies the full path name of an existing file where accounting data for this print queue can be logged. If accounting is not wanted, FALSE is specified.
                                 aixPrtQueRQ 1.3.6.1.4.1.2.6.191.3.1.1.1.8 displaystring read-only
Specifies the remote queue name. If the queue is defined on the local host, NULL string value will be assigned.
                                 aixPrtQueJobNum 1.3.6.1.4.1.2.6.191.3.1.1.1.9 integer32 read-only
the job number of currently running job in the queue. If the queue is down, the job number of the currently running job will be zero.
                                 aixPrtQueIndex 1.3.6.1.4.1.2.6.191.3.1.1.1.10 integer32 read-only
The columnar index for the aixPrtQueTable.
                 aixUser 1.3.6.1.4.1.2.6.191.4
                     aixUsers 1.3.6.1.4.1.2.6.191.4.1
                         aixUsrTable 1.3.6.1.4.1.2.6.191.4.1.1 no-access
List of users.
                             aixUsrEntry 1.3.6.1.4.1.2.6.191.4.1.1.1 no-access
An entry in the users table.
                                 aixUsrName 1.3.6.1.4.1.2.6.191.4.1.1.1.1 displaystring read-only
Specifies a string that identifies this user account on the system. A user name contains a string of one to eight bytes. They can be letters, numbers, and some special characters in the user name. The following restrictions apply: The user name can not start with a - (minus sign), + (plus sign), or ~ (tilde). It cannot have a , (comma), : (colon), =(equals sign), * (asterisk), (double quotes), or the keywords ALL and default in the user name.
                                 aixUsrID 1.3.6.1.4.1.2.6.191.4.1.1.1.2 integer read-write
Defines a unique decimal integer string to associate with this user account on the system. It is strongly recommended to let the system generate the user to incorporate all the security restrictions and conventions that may apply to your system. To have the system generate the ID, leave this field blank.
                                 aixUsrHome 1.3.6.1.4.1.2.6.191.4.1.1.1.3 displaystring read-write
The user home directory.
                                 aixUsrShell 1.3.6.1.4.1.2.6.191.4.1.1.1.4 displaystring read-write
The user's initial shell. On AIX, it is also called initial program.
                                 aixUsrLocalLogin 1.3.6.1.4.1.2.6.191.4.1.1.1.5 integer read-write
Indicates whether the user can log into the system with the login command locally. default value is true(1) Enumeration: 'false': 2, 'true': 1.
                                 aixUsrRemoteLogin 1.3.6.1.4.1.2.6.191.4.1.1.1.6 integer read-write
Indicates whether the user can log into the system with the login command. For example, if this is set to false, the user can not login with the telnet remotely. default value is true(1). Enumeration: 'false': 2, 'true': 1.
                                 aixUsrPasswdMaxAge 1.3.6.1.4.1.2.6.191.4.1.1.1.7 integer32 read-write
Defines the maximum age (in weeks) for the user's password. When the password reaches this age, the system requires it to be changed before the user can login again. The value is a decimal integer string. If 0 is specified, this feature is disabled. default value is 0.
                                 aixUsrStatus 1.3.6.1.4.1.2.6.191.4.1.1.1.8 integer read-write
The user status. Determines the status of the user. Changing this variable will affect the user. 'locked(2)' is synonymous with 'disabled(3)', and unlocked(1) is the same as enabled(4). Default value is unlocked(1). Enumeration: 'disabled': 3, 'enabled': 4, 'error': 5, 'locked': 2, 'unlocked': 1.
                                 aixUsrGroups 1.3.6.1.4.1.2.6.191.4.1.1.1.9 displaystring read-only
Lists the groups to which the user belongs seperated by the \',\' delimiter. The first on group on the list is the primary group. Groups are collections of users that can share access authority to protected resources. Groups can be formed for users who access the same applications or hardware resources, perform similar tasks, or have similar needs for information. A user can be a member in up to 32 groups. However, only one primary group for a user can be specified. When a new user account is created and the primary group is not provided, the system assigns the user to the primary default group specified in the /usr/lib/security/mkuser.default file.
                                 aixUsrAllowableAttempts 1.3.6.1.4.1.2.6.191.4.1.1.1.10 integer read-write
Number of failed logins times before the user account is locked. Default value is 0. Zero or negative value indicates no limit exists.
                                 aixUsrResetLoginCount 1.3.6.1.4.1.2.6.191.4.1.1.1.11 integer read-write
After the number of unsuccessful login attempts defined by aixUsrAllowableAttempts, the user will not be able to log in until the user's unsuccessful_login_count attribute in /etc/security/lastlog to be less than the value defined by aixUsrAllowableAttempts. When this variable is set to 2(reset), the unsuccessful_login_count in /etc/security/lastlog will be set to zero. Default value is 1. Enumeration: 'default': 1, 'reset': 2.
                                 aixUsrPrimaryGroup 1.3.6.1.4.1.2.6.191.4.1.1.1.12 displaystring read-write
The primary group that the user belongs to .
                                 aixUsrIndex 1.3.6.1.4.1.2.6.191.4.1.1.1.13 integer32 read-only
The index of the user table .
                     aixGroups 1.3.6.1.4.1.2.6.191.4.2
                         aixGrpTable 1.3.6.1.4.1.2.6.191.4.2.1 no-access
List of groups.
                             aixGrpEntry 1.3.6.1.4.1.2.6.191.4.2.1.1 no-access
An entry in the group table.
                                 aixGrpIndex 1.3.6.1.4.1.2.6.191.4.2.1.1.1 integer32 read-only
The index of the group table.
                                 aixGrpName 1.3.6.1.4.1.2.6.191.4.2.1.1.2 displaystring read-only
Specifies the string that identifies a collection of system users that can access and work with protected resources. The system uses groups to control access to files and resources by users who do not own them. When a user invokes a process, the system associates the process with the user's ID and the group IDs of the groups of which the user is a member. If the user owns the resource or is a member of a group that can access it, the system grants read, write, or execute access to it according to the access control list of the resource or file.
                                 aixGrpID 1.3.6.1.4.1.2.6.191.4.2.1.1.3 integer32 read-only
The system assigns a unique ID associated to the group name. The group IDs are stored in the /etc/group file.
                                 aixGrpAdminGroup 1.3.6.1.4.1.2.6.191.4.2.1.1.4 integer read-only
Indicates if the group is an administrative group. Only the root user can modify the attributes of an administrative group. This field is displayed with False or True as its value. True indicates that group is an administrative group. False indicates that it is a non administrative group (its attributes can be modified by the group's specified administrators and the root user). Default value is false(2). Enumeration: 'false': 2, 'true': 1.
                                 aixGrpUsrList 1.3.6.1.4.1.2.6.191.4.2.1.1.5 displaystring read-only
the users who are in this group.
                                 aixGrpAdmList 1.3.6.1.4.1.2.6.191.4.2.1.1.6 displaystring read-only
The administrator list for this group .
                 aixService 1.3.6.1.4.1.2.6.191.5
                     aixSrvSubsystem 1.3.6.1.4.1.2.6.191.5.1
                         aixSubSystemNum 1.3.6.1.4.1.2.6.191.5.1.1 integer32 read-only
The number of the subsystems in the current table.
                         aixSubSysTable 1.3.6.1.4.1.2.6.191.5.1.2 no-access
A table of subsystems.
                             aixSubSysEntry 1.3.6.1.4.1.2.6.191.5.1.2.1 no-access
An entry in the subsystem table
                                 aixSubSysName 1.3.6.1.4.1.2.6.191.5.1.2.1.1 displaystring read-only
The name of the subsystem.
                                 aixSubSysGroup 1.3.6.1.4.1.2.6.191.5.1.2.1.2 displaystring read-only
A subsystem group is a group of any specified subsystems. Grouping subsystems together allows control over several subsystems at the same time. Examples of subsystem groups are TCP/IP, SNA Services, Network Information system (NIS), and Network File Systems (NFS).
                                 aixSubSysPID 1.3.6.1.4.1.2.6.191.5.1.2.1.3 integer32 read-only
The process ID of the subsystem. When the subsystem is inoperative, the PID is zero.
                                 aixSubSysStatus 1.3.6.1.4.1.2.6.191.5.1.2.1.4 integer read-write
The status of the subsystem. When it is active(1), it can be stopped by setting the status to 2. Or when it is inoperative(2), it can be started by setting the status to 1. Enumeration: 'active': 1, 'inoperative': 2.
                                 aixSubSysIndex 1.3.6.1.4.1.2.6.191.5.1.2.1.5 integer32 read-only
The index of the subsystem table.
                     aixSrvSubserver 1.3.6.1.4.1.2.6.191.5.2
                         aixSubSrvNum 1.3.6.1.4.1.2.6.191.5.2.1 integer32 read-only
The number of subservers
                         aixSubSrvTable 1.3.6.1.4.1.2.6.191.5.2.2 no-access
A table of subservers. A subserver is a program or process that belongs to a subsystem. A subsystem can have multiple subservers and is responsible for starting, stopping, and providing status of the subservers.
                             aixSubSrvEntry 1.3.6.1.4.1.2.6.191.5.2.2.1 no-access
An entry in the subserver table.
                                 aixSubSrvName 1.3.6.1.4.1.2.6.191.5.2.2.1.1 displaystring read-only
the subserver name.
                                 aixSubSrvDescr 1.3.6.1.4.1.2.6.191.5.2.2.1.2 displaystring read-only
The description of the subserver.
                                 aixSubSrvCommand 1.3.6.1.4.1.2.6.191.5.2.2.1.3 displaystring read-only
The command to start the subserver.
                                 aixSubSrvStatus 1.3.6.1.4.1.2.6.191.5.2.2.1.4 integer read-only
The status of the subserver. Enumeration: 'active': 1, 'inoperative': 2.
                                 aixSubSrvSubsys 1.3.6.1.4.1.2.6.191.5.2.2.1.5 displaystring read-only
the subsystem name which the subserver belongs to.
                                 aixSubSrvIndex 1.3.6.1.4.1.2.6.191.5.2.2.1.6 integer32 read-only
The index of the subserver table.
                 aixFileSystem 1.3.6.1.4.1.2.6.191.6
                     aixFsThreshold 1.3.6.1.4.1.2.6.191.6.1 integer32 read-write
The percentage threshold for the file system. When the current used percentage for the file system is above aixVgThreshold and the value of the last poll interval is less than the threshold, then an event will be generated. The value for aixFsThreshold should be between 0 and 100. When it is zero, the related trap, aixFileSystemFull, is disabled. Its default value is 95.
                     aixFsTable 1.3.6.1.4.1.2.6.191.6.2 no-access
The file system table. This table will be refreshed at least with each poll interval.
                         aixFsTableEntry 1.3.6.1.4.1.2.6.191.6.2.1 no-access
An entry of the file system table
                             aixFsIndex 1.3.6.1.4.1.2.6.191.6.2.1.1 integer32 read-only
The index of the file system table.
                             aixFsName 1.3.6.1.4.1.2.6.191.6.2.1.2 displaystring read-only
The name of the file system.
                             aixFsMountPoint 1.3.6.1.4.1.2.6.191.6.2.1.3 displaystring read-only
Specifies the mount point, which is the directory where the file system is available or will be made available.
                             aixFsType 1.3.6.1.4.1.2.6.191.6.2.1.4 integer read-only
The file system type. The type may be JFS(Journal File System), JFS2 (extented JFS), AFS, DFS, cashefs, autofs, procfs, cdrfs (CDROM file system), NFS(Network File System), NFS3 (NFSv3 file system) Enumeration: 'jfs2': 2, 'dfs': 8, 'cachefs': 5, 'nfs3': 10, 'other': 11, 'nfs': 9, 'autofs': 6, 'jfs': 1, 'afs': 7, 'cdrfs': 3, 'procfs': 4.
                             aixFsSize 1.3.6.1.4.1.2.6.191.6.2.1.5 integer32 read-write
The size for this file system in megabytes.
                             aixFsFree 1.3.6.1.4.1.2.6.191.6.2.1.6 integer32 read-only
Total number of megabytes free in file system.
                             aixFsNumINodes 1.3.6.1.4.1.2.6.191.6.2.1.7 integer32 read-only
Total number of i-nodes on this file system.
                             aixFsUsedInodes 1.3.6.1.4.1.2.6.191.6.2.1.8 integer32 read-only
The used number of Inodes in the file system.
                             aixFsStatus 1.3.6.1.4.1.2.6.191.6.2.1.9 integer read-only
The status of the file system. It is either mounted(1) or unmounted(2). Enumeration: 'mounted': 1, 'unmounted': 2.
                             aixFsExecution 1.3.6.1.4.1.2.6.191.6.2.1.10 integer read-write
The variable is used to trigger the mount action on unmounted file system and unmount action on mounted file system. This state can only change from mount to unmount or unmount to mount. Its normal status is other(1). The execution result is kept at aixFsResultMsg. Enumeration: 'mount': 2, 'other': 1, 'unmount': 3.
                             aixFsResultMsg 1.3.6.1.4.1.2.6.191.6.2.1.11 displaystring read-only
The execution result message of mounting or umounting command.
                 aixProcess 1.3.6.1.4.1.2.6.191.7
                     aixProcNum 1.3.6.1.4.1.2.6.191.7.1 integer32 read-only
The number of processes running.
                     aixProcTable 1.3.6.1.4.1.2.6.191.7.2 no-access
The Process Table.
                         aixProcEntry 1.3.6.1.4.1.2.6.191.7.2.1 no-access
Each entry contains information about a process running on the system.
                             aixProcPID 1.3.6.1.4.1.2.6.191.7.2.1.1 integer32 read-only
The process ID (pid) of the process.
                             aixProcUID 1.3.6.1.4.1.2.6.191.7.2.1.2 integer32 read-only
The user ID of the process owner.
                             aixProcPPID 1.3.6.1.4.1.2.6.191.7.2.1.3 integer32 read-only
The process ID of the parent process.
                             aixProcGroup 1.3.6.1.4.1.2.6.191.7.2.1.4 integer32 read-only
Indicates the effective group ID of the process.
                             aixProcPriority 1.3.6.1.4.1.2.6.191.7.2.1.5 integer32 read-only
The priority of the process or kernel thread, higher numbers mean lower priority.
                             aixProcCMD 1.3.6.1.4.1.2.6.191.7.2.1.6 displaystring read-only
The command name of the process.
                             aixProcCPU 1.3.6.1.4.1.2.6.191.7.2.1.7 integer32 read-only
CPU utilization of process or thread, incremented each time the system clock ticks and the process or thread is found to be running. Large values indicate a CPU intensive process and results in lower process priority whereas small values indicate an I/O intensive process and result in a more favorable priority.
                             aixProcStart 1.3.6.1.4.1.2.6.191.7.2.1.8 timeticks read-only
The start time of the process.
                             aixProcStatus 1.3.6.1.4.1.2.6.191.7.2.1.9 integer read-only
For processes: (1)O Nonexistent (2)A Active (3)W Swapped (4)I Idle (waiting for startup) : (5)Z Canceled (6)T Stopped Enumeration: 'stoppedPS': 6, 'nonexistentPS': 1, 'activePS': 2, 'canceledPS': 5, 'swappedPS': 3, 'idlePS': 4, 'other': 7.
                             aixProcTTY 1.3.6.1.4.1.2.6.191.7.2.1.10 displaystring read-only
Indicates the controlling terminal name of the process.
                 aixLogin 1.3.6.1.4.1.2.6.191.8
                     aixFailedLoginTimePeriod 1.3.6.1.4.1.2.6.191.8.1 integer32 read-write
The time period where failed login attempts are recorded to compare against aixLoginFailedThreshold. The default is 300 seconds (5 minutes).
                     aixLoginFailedThreshold 1.3.6.1.4.1.2.6.191.8.2 integer32 read-write
Defines the number of attempts which a user can try to log onto the system in the time period defined by failedLoginTimePeriod prior to the current time before a trap is generated and sent. When this variable is set to zero, the aixUserLoginFailed trap is disabled. The default is 20 which means that if users attempting and failing to log in 20 times in last time period defined by aixFailedLoginTimePeriod , a trap is generated. These attempts are recorded in /etc/security/failedlogin or /var/adm/wtmp .
                     aixLoginUserTable 1.3.6.1.4.1.2.6.191.8.3 no-access
loginUserTable contains users who are logged in currently.
                         aixLoginUserEntry 1.3.6.1.4.1.2.6.191.8.3.1 no-access
An entry of loginUserTable
                             aixLoginUserName 1.3.6.1.4.1.2.6.191.8.3.1.1 displaystring read-only
The user name. If the user name is unknown, its value is UNKNOWN_U.
                             aixLoginUserTTY 1.3.6.1.4.1.2.6.191.8.3.1.2 displaystring read-only
The terminal tty name.
                             aixLoginUserHost 1.3.6.1.4.1.2.6.191.8.3.1.3 displaystring read-only
The IP address of the machine the user tried to log onto the system from.
                             aixLoginUserDateAndTime 1.3.6.1.4.1.2.6.191.8.3.1.4 displaystring read-only
The date and time when the user logged in.
                             aixLoginUserIndex 1.3.6.1.4.1.2.6.191.8.3.1.5 integer32 read-only
Index for the table
                 aixDevice 1.3.6.1.4.1.2.6.191.9
                     aixPrinter 1.3.6.1.4.1.2.6.191.9.1
                         aixPrinterTable 1.3.6.1.4.1.2.6.191.9.1.1 no-access
A table of defined printers/plotters. On AIX, the printer is defined, used and dealt with in the same way as the plotter. The number of entries depends on the configuration of the system such as the serial or parallel port number.
                             aixPrinterEntry 1.3.6.1.4.1.2.6.191.9.1.1.1 no-access
An entry of printerTable. Each entry contains all attributes of a defined printer or plotter.
                                 aixPrinterName 1.3.6.1.4.1.2.6.191.9.1.1.1.1 displaystring read-only
When a printer or plotter device is added to the system, a name is automatically assigned to the device. On AIX, this name is in the format of lpx, for example, lp0, lp1.
                                 aixPrinterIndex 1.3.6.1.4.1.2.6.191.9.1.1.1.2 integer32 read-only
The index of the printer table.
                                 aixPrinterType 1.3.6.1.4.1.2.6.191.9.1.1.1.3 displaystring read-only
This is the type of the printer/plotter. The type can be the defined printer/plotter name such as hplj-8100 which represents Hewlett-Packard LaserJet 8100, or opp for Other parallel printer, or osp for other serial printer.
                                 aixPrinterInterface 1.3.6.1.4.1.2.6.191.9.1.1.1.4 displaystring read-only
The printer/plotter interface with the computer. Its value can be parallel, rs232, or rs422.
                                 aixPrinterStatus 1.3.6.1.4.1.2.6.191.9.1.1.1.5 integer read-only
Indicates the current status of the device. Possible values are available(1), indicating that the device is configured in the system and ready to use; and defined(2), indicating that the device is defined to the system but not configured. Enumeration: 'available': 1, 'defined': 2.
                                 aixPrinterDescr 1.3.6.1.4.1.2.6.191.9.1.1.1.6 displaystring read-only
The description for the printer/plotter.
                                 aixPrinterLocation 1.3.6.1.4.1.2.6.191.9.1.1.1.7 displaystring read-only
Location codes of 00-00-S1-00 or 00-00-S2-0 indicate the printer or plotter device is connected to the standard I/O serial ports s1 or s2. A location code of 00-00-0P-00 indicates that the parallel printer is connected to the standard I/O parallel port Any other location code will indicate a printer or plotter which is connected to an adapter card other than the Standard I/O board. For these printers and plotters the location code format is AA-BB-CC-DD where AA-BB indicates the location code of the controlling adapter. A value of 00 for the AA field indicates the adapter card is located in the CPU drawer or system unit depending on the type of system. Any other value for the AA field indicates the card is located in an I/O expansion drawer; in which case, the first digit identifies the I/O bus and the second digit identifies the slot number on the bus, in the CPU drawer, that contain the asynchronous expansion adapter to which the I/O expansion drawer is connected. The first digit of this BB field identifies the I/O bus containing the adapter card. If the card is in the CPU drawer or system unit, this digit will be 0 for the standard I/O bus or 1 for the optional I/O bus. If the card is in an I/O expansion drawer, this digit is 0. The second digit identifies the slot number on the I/O bus (or slot number in the I/O expansion drawer) that contains the card. The CC field identifies the connector on the adapter card to where the asynchronous distribution box is connected. Possible values are 01, 02, 03, and 04. The DD field identifies the port number on the asynchronous distribution box where the printer or plotter is attached.
                                 aixPrinterPortNumber 1.3.6.1.4.1.2.6.191.9.1.1.1.8 displaystring read-only
The printer port number. This indicates the port on an adapter card or asynchronous distribution box to which the printer or plotter is connected. The value must be in the range 0 through 7 for an 8-port adapter card, 0 through 15 for a 16-port adapter card, and 0 through 63 for a 64-port adapter card. The standard I/O ports are designated as s1 and s2 for the two serial ports and p for the parallel port.
                     aixTape 1.3.6.1.4.1.2.6.191.9.2
                         aixTapeDrvTable 1.3.6.1.4.1.2.6.191.9.2.1 no-access
A table of defined tape drives. The number of entries depends on the configuration of the system.
                             aixTapeDrvEntry 1.3.6.1.4.1.2.6.191.9.2.1.1 no-access
An entry in the aixTapeDrvTable. Each entry contains all the attributes of a tape drive.
                                 aixTapeDrvName 1.3.6.1.4.1.2.6.191.9.2.1.1.1 displaystring read-only
Identifies the logical name of the device. When a tape drive is added or defined in the system, a name is automatically assigned to the device. The format of the name looks like rmt0.
                                 aixTapeDrvIndex 1.3.6.1.4.1.2.6.191.9.2.1.1.2 integer32 read-only
The index of the tape drive table.
                                 aixTapeDrvType 1.3.6.1.4.1.2.6.191.9.2.1.1.3 displaystring read-only
Identifies the predefined device type of the tape drive. For example, 4mm2gb2 is a scsi 2.0 GB 4mm Tape Drive.
                                 aixTapeDrvInterface 1.3.6.1.4.1.2.6.191.9.2.1.1.4 displaystring read-only
Identifies the type of tape drive interface. This is the same as the predefined device subclass of the device.
                                 aixTapeDrvStatus 1.3.6.1.4.1.2.6.191.9.2.1.1.5 integer read-only
Indicates the current status of the tape drive. Possible values are available (1), indicating that the tape drive is configured in the system and ready to be used, and defined(2), indicating that the tape drive is defined to the system but not configured. Enumeration: 'available': 1, 'defined': 2.
                                 aixTapeDrvDescr 1.3.6.1.4.1.2.6.191.9.2.1.1.6 displaystring read-only
Provides a short text description of the tape drive device.
                                 aixTapeDrvLocation 1.3.6.1.4.1.2.6.191.9.2.1.1.7 displaystring read-only
For all SCSI devices, including disks, CD-ROMs, read/write optical drives, tapes, target mode, and initiator devices, the location code format is AA-BB-CC-S,L. The AA-BB fields identify the location code of the SCSI adapter controlling the SCSI device. . A value of 00 for the AA field indicates the controlling adapter card is located in the CPU drawer or system unit, depending on the type of system. . The BB field identifies the I/O bus and slot containing the card. The first digit indicates the I/O bus. It is 0 for the standard I/O bus and 1 for the optional I/O bus. The second digit is the slot on the indicated I/O bus containing the card. A value of 00 for the BB field indicates the standard SCSI controller. . The CC field identifies the card's SCSI bus that the device is attached to. For a card that provides only a single SCSI bus, this field will be set to 00. Otherwise, a value of 00 indicates a device attached to the card's internal SCSI bus and a value of 01 indicates a device attached to the card's external SCSI bus. . The S,L field identifies the SCSI ID and logical unit number (LUN) of the SCSI device. The S value indicates the SCSI ID, and the L value indicates the LUN.
                                 aixTapeDrvBlkSize 1.3.6.1.4.1.2.6.191.9.2.1.1.8 integer32 read-only
Indicates the block size to use when reading or writing to the tape.
                                 aixTapeDrvManufacturerName 1.3.6.1.4.1.2.6.191.9.2.1.1.9 displaystring read-only
The name of the manufacturer of the tape drive.
                                 aixTapeDrvModelName 1.3.6.1.4.1.2.6.191.9.2.1.1.10 displaystring read-only
The model name of the tape drive.
                                 aixTapeDrvSN 1.3.6.1.4.1.2.6.191.9.2.1.1.11 displaystring read-only
The tape driver serial number.
                                 aixTapeDrvPN 1.3.6.1.4.1.2.6.191.9.2.1.1.12 displaystring read-only
The tape driver part number.
                                 aixTapeDrvFRU 1.3.6.1.4.1.2.6.191.9.2.1.1.13 displaystring read-only
The tape drive FRU number (Field Replaceable Unit).
                                 aixTapeDrvEC 1.3.6.1.4.1.2.6.191.9.2.1.1.14 displaystring read-only
The tape drive EC (Engineering Change).
                     aixHardDisk 1.3.6.1.4.1.2.6.191.9.3
                         aixHdTable 1.3.6.1.4.1.2.6.191.9.3.1 no-access
A table of defined hard disks. The number of entries depends on the configuration of the system.
                             aixHdEntry 1.3.6.1.4.1.2.6.191.9.3.1.1 no-access
An entry in hdTable. Each entry contains all the attributes of the individual hard disk.
                                 aixHdName 1.3.6.1.4.1.2.6.191.9.3.1.1.1 displaystring read-only
Identifies the logical name of the disk device.
                                 aixHdIndex 1.3.6.1.4.1.2.6.191.9.3.1.1.2 integer32 read-only
The index for the hard disk table.
                                 aixHdType 1.3.6.1.4.1.2.6.191.9.3.1.1.3 displaystring read-only
Identifies the predefined device type of the disk.
                                 aixHdSize 1.3.6.1.4.1.2.6.191.9.3.1.1.4 integer32 read-only
The size in megabytes of the hard disk.
                                 aixHdInterface 1.3.6.1.4.1.2.6.191.9.3.1.1.5 displaystring read-only
Identifies the type of disk interface. This is the same as the predefined device subclass of the disk.
                                 aixHdStatus 1.3.6.1.4.1.2.6.191.9.3.1.1.6 integer read-only
Indicates the current status of the disk device. Possible values are available(1), indicating that the disk device is configured in the system and ready to be used, and defined(2), indicating that the disk device is defined to the system but not configured. Enumeration: 'available': 1, 'defined': 2.
                                 aixHdLocation 1.3.6.1.4.1.2.6.191.9.3.1.1.7 displaystring read-only
For all SCSI devices, including disks, CD-ROMs, read/write optical drives, tapes, target mode, and initiator devices, the location code format is AA-BB-CC-S,L. The AA-BB fields identify the location code of the SCSI adapter controlling the SCSI device. For details, please refer to aixTapeDrvLocation.
                                 aixHdIdentifier 1.3.6.1.4.1.2.6.191.9.3.1.1.8 displaystring read-only
Displays the unique physical volume identifier of the physical volume of a disk. If the disk is not a physical volume, this field value will be none.
                                 aixHdDescr 1.3.6.1.4.1.2.6.191.9.3.1.1.9 displaystring read-only
Provides a short text description of the disk device.
                                 aixHdManufacturerName 1.3.6.1.4.1.2.6.191.9.3.1.1.10 displaystring read-only
The name of the manufacturer of the hard drive.
                                 aixHdModelName 1.3.6.1.4.1.2.6.191.9.3.1.1.11 displaystring read-only
The Model Name of the hard drive.
                                 aixHdSN 1.3.6.1.4.1.2.6.191.9.3.1.1.12 displaystring read-only
The hard driver serial number.
                                 aixHdPN 1.3.6.1.4.1.2.6.191.9.3.1.1.13 displaystring read-only
The hard driver part number.
                                 aixHdFRU 1.3.6.1.4.1.2.6.191.9.3.1.1.14 displaystring read-only
The hard drive FRU number (Field Replaceable Unit).
                                 aixHdEC 1.3.6.1.4.1.2.6.191.9.3.1.1.15 displaystring read-only
The hard drive Engineering Change.
                     aixMemory 1.3.6.1.4.1.2.6.191.9.4
                         aixMemTable 1.3.6.1.4.1.2.6.191.9.4.1 no-access
A table of defined physical memory. The number of entries depends on the configuration of the system.
                             aixMemEntry 1.3.6.1.4.1.2.6.191.9.4.1.1 no-access
An entry in the memory table .
                                 aixMemName 1.3.6.1.4.1.2.6.191.9.4.1.1.1 displaystring read-only
The name of the memory. For example, it may be mem0.
                                 aixMemIndex 1.3.6.1.4.1.2.6.191.9.4.1.1.2 integer32 read-only
The index for the memory table.
                                 aixMemLocation 1.3.6.1.4.1.2.6.191.9.4.1.1.3 displaystring read-only
The memory location code. An example is 00-00.
                                 aixMemSize 1.3.6.1.4.1.2.6.191.9.4.1.1.4 integer32 read-only
The size of the physical memory in megabytes.
                                 aixMemDescr 1.3.6.1.4.1.2.6.191.9.4.1.1.5 displaystring read-only
The description of memory
                     aixCDROM 1.3.6.1.4.1.2.6.191.9.5
                         aixCdromTable 1.3.6.1.4.1.2.6.191.9.5.1 no-access
A table of all defined cdroms.
                             aixCdromEntry 1.3.6.1.4.1.2.6.191.9.5.1.1 no-access
An entry in the cdrom table .
                                 aixCdromName 1.3.6.1.4.1.2.6.191.9.5.1.1.1 displaystring read-only
Identifies the logical name of the CD-ROM drive.
                                 aixCdromIndex 1.3.6.1.4.1.2.6.191.9.5.1.1.2 integer32 read-only
The index for the CD-ROM table.
                                 aixCdromType 1.3.6.1.4.1.2.6.191.9.5.1.1.3 displaystring read-only
Identifies the predefined device type of the CD-ROM drive.
                                 aixCdromInterface 1.3.6.1.4.1.2.6.191.9.5.1.1.4 displaystring read-only
Identifies the type of drive interface. This is the same as the predefined device subclass of the CD-ROM drive.
                                 aixCdromDescr 1.3.6.1.4.1.2.6.191.9.5.1.1.5 displaystring read-only
Provides a short text description of the CD-ROM drive device.
                                 aixCdromStatus 1.3.6.1.4.1.2.6.191.9.5.1.1.6 integer read-only
Indicates the current status of the CD-ROM drive. Possible values are available(1), indicating that the CD-ROM drive is configured in the system and ready to be used, and defined(2), indicating that the drive is defined to the system but not configured. Enumeration: 'available': 1, 'defined': 2.
                                 aixCdromLocation 1.3.6.1.4.1.2.6.191.9.5.1.1.7 displaystring read-only
For all SCSI devices, including disks, CD-ROMs, read/write optical drives, tapes, target mode, and initiator devices, the location code format is AA-BB-CC-S,L. The AA-BB fields identify the location code of the SCSI adapter controlling the SCSI device. For details, please refer to aixTapeDrvLocation.
                                 aixCdromManufacturerName 1.3.6.1.4.1.2.6.191.9.5.1.1.8 displaystring read-only
The name of the manufacturer of the cdrom drive.
                                 aixCdromModelName 1.3.6.1.4.1.2.6.191.9.5.1.1.9 displaystring read-only
The cdrom driver model name.
                                 aixCdromPN 1.3.6.1.4.1.2.6.191.9.5.1.1.10 displaystring read-only
The cdrom driver part number.
                                 aixCdromFRU 1.3.6.1.4.1.2.6.191.9.5.1.1.11 displaystring read-only
The cdrom drive FRU (Field Replaceable Unit).
                                 aixCdromEC 1.3.6.1.4.1.2.6.191.9.5.1.1.12 displaystring read-only
The cdrom drive Engineering Change.
                     aixScsi 1.3.6.1.4.1.2.6.191.9.6
                         aixScsiTable 1.3.6.1.4.1.2.6.191.9.6.1 no-access
A table of SCSI adapters.
                             aixScsiEntry 1.3.6.1.4.1.2.6.191.9.6.1.1 no-access
An entry of the SCSI adapter .
                                 aixScsiName 1.3.6.1.4.1.2.6.191.9.6.1.1.1 displaystring read-only
Identifies the logical name of the adapter.
                                 aixScsiIndex 1.3.6.1.4.1.2.6.191.9.6.1.1.2 integer32 read-only
The index for the scsi adapter table.
                                 aixScsiDescr 1.3.6.1.4.1.2.6.191.9.6.1.1.3 displaystring read-only
Defines a short text description of the adapter.
                                 aixScsiStatus 1.3.6.1.4.1.2.6.191.9.6.1.1.4 integer read-only
Indicates the current status of the adapter. Possible values are available, indicating that the adapter is configured in the system and ready to be used, and defined, indicating that the adapter is defined on the system but not configured. Enumeration: 'available': 1, 'defined': 2.
                                 aixScsiLocation 1.3.6.1.4.1.2.6.191.9.6.1.1.5 displaystring read-only
The location code for the SCSI adapter. An example is 04-C0.
                                 aixScsiAdapterID 1.3.6.1.4.1.2.6.191.9.6.1.1.6 integer32 read-only
Specifies the SCSI ID value which the adapter will use when sending SCSI commands as an initiator device, and, if target mode is supported, specifies the SCSI ID the adapter will respond to when acting as a target device.
                     aixProcessor 1.3.6.1.4.1.2.6.191.9.7
                         aixProcessorTable 1.3.6.1.4.1.2.6.191.9.7.1 no-access
A table of processors.
                             aixProcessorEntry 1.3.6.1.4.1.2.6.191.9.7.1.1 no-access
An entry of the Processor .
                                 aixProcessorName 1.3.6.1.4.1.2.6.191.9.7.1.1.1 displaystring read-only
Identifies the logical name of the processor.
                                 aixProcessorIndex 1.3.6.1.4.1.2.6.191.9.7.1.1.2 integer32 read-only
The index for the processor table.
                                 aixProcessorType 1.3.6.1.4.1.2.6.191.9.7.1.1.3 displaystring read-only
Defines the model type of the processor. For example: PowerPC_604e
                                 aixProcessorDescr 1.3.6.1.4.1.2.6.191.9.7.1.1.4 displaystring read-only
Defines a short text description of the processor.
                                 aixProcessorSpeed 1.3.6.1.4.1.2.6.191.9.7.1.1.5 integer32 read-only
The speed of the processor in hertz.
                     aixNetwork 1.3.6.1.4.1.2.6.191.9.8
                         aixNetworkTable 1.3.6.1.4.1.2.6.191.9.8.1 no-access
A table of Network adapters.
                             aixNetworkEntry 1.3.6.1.4.1.2.6.191.9.8.1.1 no-access
An entry of the Network adapter .
                                 aixNetworkName 1.3.6.1.4.1.2.6.191.9.8.1.1.1 displaystring read-only
Identifies the logical name of the network adapter.
                                 aixNetworkIndex 1.3.6.1.4.1.2.6.191.9.8.1.1.2 integer32 read-only
The index for the network adapter table.
                                 aixNetworkType 1.3.6.1.4.1.2.6.191.9.8.1.1.3 displaystring read-only
The type of the network adapter. An example is ie3.
                                 aixNetworkInterface 1.3.6.1.4.1.2.6.191.9.8.1.1.4 displaystring read-only
The interface name for the Network adapter. An example is LO.
                                 aixNetworkStatus 1.3.6.1.4.1.2.6.191.9.8.1.1.5 integer read-only
Indicates the current status of the adapter. Possible values are available, indicating that the adapter is configured in the system and ready to be used, and defined, indicating that the adapter is defined on the system but not configured. Enumeration: 'available': 1, 'defined': 2.
                                 aixNetworkLocation 1.3.6.1.4.1.2.6.191.9.8.1.1.6 displaystring read-only
The location code for the Network adapter. An example is 10-60.
                                 aixNetworkDescr 1.3.6.1.4.1.2.6.191.9.8.1.1.7 displaystring read-only
Defines a short text description of the adapter. An example is IEEE 802.3 Ethernet Network Interface
                     aixAdapter 1.3.6.1.4.1.2.6.191.9.9
                         aixAdapterTable 1.3.6.1.4.1.2.6.191.9.9.1 no-access
A table of adapters.
                             aixAdapterEntry 1.3.6.1.4.1.2.6.191.9.9.1.1 no-access
An entry of the adapter
                                 aixAdapterName 1.3.6.1.4.1.2.6.191.9.9.1.1.1 displaystring read-only
Identifies the logical name of the adapter.
                                 aixAdapterIndex 1.3.6.1.4.1.2.6.191.9.9.1.1.2 integer32 read-only
The index for the adapter table.
                                 aixAdapterType 1.3.6.1.4.1.2.6.191.9.9.1.1.3 displaystring read-only
The type of the adapter. An example is keyboard.
                                 aixAdapterInterface 1.3.6.1.4.1.2.6.191.9.9.1.1.4 displaystring read-only
The interface name for the adapter. An example is pci.
                                 aixAdapterStatus 1.3.6.1.4.1.2.6.191.9.9.1.1.5 integer read-only
Indicates the current status of the . Possible values are available, indicating that the is configured in the system and ready to be used, and defined, indicating that the is defined on the system but not configured. Enumeration: 'available': 1, 'defined': 2.
                                 aixAdapterLocation 1.3.6.1.4.1.2.6.191.9.9.1.1.6 displaystring read-only
The location code for the adapter. An example is 01-K1-00.
                                 aixAdapterDescr 1.3.6.1.4.1.2.6.191.9.9.1.1.7 displaystring read-only
Defines a short text description of the . An example is Keyboard Adapter
                 aixConformance 1.3.6.1.4.1.2.6.191.10
                       aixCfmGroup 1.3.6.1.4.1.2.6.191.10.1
                           aixAgentGroup 1.3.6.1.4.1.2.6.191.10.1.1
The objects necessary to control and show information about the subagent.
                           aixSeGroup 1.3.6.1.4.1.2.6.191.10.1.2
The objects neccessary to control and show information about the system environment. These objects are mandatory.
                           criticalNotificationGroup 1.3.6.1.4.1.2.6.191.10.1.3
These objects are used to send traps.
                           aixVGGroup 1.3.6.1.4.1.2.6.191.10.1.4
The objects neccessary for controlling and showing information about the volume group.
                           aixLVGroup 1.3.6.1.4.1.2.6.191.10.1.5
The objects neccessary for controlling and showing information about logical volumes.
                           aixPVGroup 1.3.6.1.4.1.2.6.191.10.1.6
The objects neccessary for controlling and showing information about physical volumes.
                           aixPagingSpaceGroup 1.3.6.1.4.1.2.6.191.10.1.7
The objects neccessary for controlling and showing information about paging space.
                           aixFsGroup 1.3.6.1.4.1.2.6.191.10.1.8
The objects neccessary for controlling and showing information about file systems.
                           aixProcessGroup 1.3.6.1.4.1.2.6.191.10.1.9
The objects neccessary for controlling and showing information about processes.
                           aixLoginUsrGroup 1.3.6.1.4.1.2.6.191.10.1.10
The objects neccessary for controlling and showing information about users currently logged in.
                           aixPrtQueueGroup 1.3.6.1.4.1.2.6.191.10.1.11
The objects neccessary for controlling and showing information about print queues.
                           aixUsrGroup 1.3.6.1.4.1.2.6.191.10.1.12
The objects neccessary for controlling and showing information about system users.
                           aixGrpGroup 1.3.6.1.4.1.2.6.191.10.1.13
The objects neccessary for controlling and showing information about system groups.
                           aixSubSystemGroup 1.3.6.1.4.1.2.6.191.10.1.14
The objects neccessary for controlling and showing information about subsystems.
                           aixSubServerGroup 1.3.6.1.4.1.2.6.191.10.1.15
The objects neccessary for controlling and showing information about subservers.
                           aixSeAuxGroup 1.3.6.1.4.1.2.6.191.10.1.16
The objects neccessary for controlling and showing information about the system environment. These objects are optional.
                           aixPrinterGroup 1.3.6.1.4.1.2.6.191.10.1.17
The objects neccessary for showing information about the printer.
                           aixTapeGroup 1.3.6.1.4.1.2.6.191.10.1.18
The objects neccessary for showing information about the tape.
                           aixHardDiskGroup 1.3.6.1.4.1.2.6.191.10.1.19
The objects neccessary for showing information about the hard disk.
                           aixMemoryGroup 1.3.6.1.4.1.2.6.191.10.1.20
The objects neccessary for showing information about the memory.
                           aixCDROMGroup 1.3.6.1.4.1.2.6.191.10.1.21
The objects neccessary for showing information about the CDROM.
                           aixScsiGroup 1.3.6.1.4.1.2.6.191.10.1.22
The objects neccessary for showing information about the SCSI adapter.
                           aixProcessorGroup 1.3.6.1.4.1.2.6.191.10.1.23
The objects neccessary for showing information about the processors.
                           aixNetworkGroup 1.3.6.1.4.1.2.6.191.10.1.24
The objects neccessary for showing information about the Network adapters.
                           aixAdapterGroup 1.3.6.1.4.1.2.6.191.10.1.25
The objects neccessary for showing information about the adapters.
                       aixCompliances 1.3.6.1.4.1.2.6.191.10.2
                           aixCompliance 1.3.6.1.4.1.2.6.191.10.2.1
The statement of compliance.