home *** CD-ROM | disk | FTP | other *** search
Text File | 1980-01-01 | 26.4 KB | 1,168 lines |
- -- NetManage Private MIB definitions
- --
- -- MIB for release 4.5.2 of SNMPD
- --
- -- Copyright 1992-1995 NetManage, Inc. All Rights Reserved.
- -- Reproduction of this document is authorized on
- -- condition that the foregoing notice is included.
- --
- -- This SNMP MIB Specification contains NetManage's confidential
- -- and proprietary intellectual property.
- -- NetManage, Inc. retains all title and ownership in the
- -- Specification, including any revisions.
- --
- -- It is NetManage's intent to encourage the widespread use of this
- -- specification in connection with the management of desktops
- -- using the Chameleon, Chameleon/NFS or NEWT. NetManage grants
- -- vendors, end-users, and other interested parties a non-exclusive
- -- license to use this Specification in connection with the
- -- management of NetManage's products.
- --
- -- This Specification is supplied "AS IS", and NetManage makes no
- -- warranty, either express or implied, as to the use, operation,
- -- condition, or performance of the Specification.
- --
-
- NETMANAGE-MIB {
- iso org(3) dod(6) internet(1) private(4) enterprises(1) 233
- }
-
- DEFINITIONS ::= BEGIN
-
- IMPORTS
- enterprises, Gauge, TimeTicks, IpAddress FROM RFC1155-SMI
- DisplayString FROM RFC1213-MIB
- OBJECT-TYPE FROM RFC1212;
-
- -- Categories
- netmanage OBJECT IDENTIFIER ::= { enterprises 233 }
- snmpd OBJECT IDENTIFIER ::= { netmanage 1 }
- workstation OBJECT IDENTIFIER ::= { netmanage 2 }
- dos OBJECT IDENTIFIER ::= { netmanage 3 }
- windows OBJECT IDENTIFIER ::= { netmanage 4 }
- storage OBJECT IDENTIFIER ::= { netmanage 5 }
- activity OBJECT IDENTIFIER ::= { netmanage 6 }
- remotetransfer OBJECT IDENTIFIER ::= { netmanage 10 }
-
- -- NetManage Object Types
-
- -- SNMPD Group
-
- -- SNMPD Agent table
-
- agentTable OBJECT-TYPE
- SYNTAX SEQUENCE OF AgentEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION
- "This table holds the list of all
- agents registered with the deamon"
- ::= { snmpd 1 }
-
- agentEntry OBJECT-TYPE
- SYNTAX AgentEntry
- ACCESS not-accessible
- STATUS mandatory
- INDEX { agentEnterprise }
- ::= { agentTable 1 }
-
- AgentEntry ::= SEQUENCE {
- agentEnterprise
- OBJECT IDENTIFIER,
- agentWindow
- INTEGER,
- agentDescription
- DisplayString
- }
-
- agentEnterprise OBJECT-TYPE
- SYNTAX OBJECT IDENTIFIER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The enterprise-ID (sub-tree) for which the
- agent is registered"
- ::= { agentEntry 1 }
-
- agentWindow OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The window handle of the agent's process"
- ::= { agentEntry 2 }
-
- agentDescription OBJECT-TYPE
- SYNTAX DisplayString(SIZE (0..255))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The agent's description"
- ::= { agentEntry 3 }
-
- --
- -- SNMPD Group Daemon
- --
-
- DaemonMesssage OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Displays a quick popup message"
- ::= { snmpd 2 }
-
-
- DaemonProgram OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Remotely executes a program"
- ::= { snmpd 3 }
-
-
- DaemonReboot OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Reboot remote machine or restart windows"
- ::= { snmpd 4 }
-
-
- DaemonBeep OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Plays a wave netmanage wave file or beeps"
- ::= { snmpd 5 }
-
- -- Workstation Group
-
- wsCPU OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The workstation CPU type (e.g.,80386)"
- ::= { workstation 1 }
-
- wsComputerType OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The workstation Computer Type (e.g., PC/AT)"
- ::= { workstation 2 }
-
- wsModel OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The computer's model number"
- ::= { workstation 3 }
-
- wsSubmodel OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The computer's submodel number"
- ::= { workstation 4 }
-
- wsBiosVersion OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The Bios version"
- ::= { workstation 5 }
-
- wsOS OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The operating system name (e.g., MS-DOS)"
- ::= { workstation 6 }
-
- wsOSMajVersion OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The operating system major version
- number (e.g., 5 for DOS 5.0)"
- ::= { workstation 7 }
-
- wsOSMinVersion OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The operating system minor version
- number (e.g., 0 for DOS 5.0)"
- ::= { workstation 8 }
-
- wsNDISTable OBJECT-TYPE
- SYNTAX SEQUENCE OF WsNDISEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION
- "This table holds objects related to network
- adapter cards in your computer: one entry
- per each adapter"
- ::= { workstation 9 }
-
- wsNDISEntry OBJECT-TYPE
- SYNTAX WsNDISEntry
- ACCESS not-accessible
- STATUS mandatory
- INDEX { wsPermPhysAddr }
- ::= { wsNDISTable 1 }
-
- WsNDISEntry ::= SEQUENCE {
- wsPermPhysAddr
- PhysAddress,
- wsCurrPhysAddr
- PhysAddress,
- wsDescription
- DisplayString,
- wsModuleName
- DisplayString,
- wsMACType
- DisplayString,
- wsIEEECode
- OCTET STRING,
- wsIRQ
- INTEGER,
- wsFrameSize
- INTEGER,
- wsTXCapacity
- INTEGER,
- wsDriverType
- INTEGER
- }
-
- wsPermPhysAddr OBJECT-TYPE
- SYNTAX PhysAddress
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The permanent address of the adapter
- unique for each card"
- ::= { wsNDISEntry 1 }
-
- wsCurrPhysAddr OBJECT-TYPE
- SYNTAX PhysAddress
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The current address assigned to the adapter
- (not always equal to the permanent address. Some
- communications packages, such as Decnet, changes it)"
- ::= { wsNDISEntry 2 }
-
- wsDescription OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Textual description of the adapter type"
- ::= { wsNDISEntry 3 }
-
- wsModuleName OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Describes the module name (in PROTOCOL.INI)"
- ::= { wsNDISEntry 4 }
-
- wsMACType OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The MAC type used by the adapter"
- ::= { wsNDISEntry 5 }
-
- wsIEEECode OBJECT-TYPE
- SYNTAX OCTET STRING (SIZE (0..2))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "IEEE code assigned to
- the manufacturer of the adapter"
- ::= { wsNDISEntry 6 }
-
- wsIRQ OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The interrupt line used by the adapter"
- ::= { wsNDISEntry 7 }
-
- wsFrameSize OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Frame Size used by the adapter"
- ::= { wsNDISEntry 8 }
-
- wsTXCapacity OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The Transmit Buffer capacity of the adapter"
- ::= { wsNDISEntry 9 }
-
- wsMathCoprocessor OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Returns 1 if math co-processor exists,
- 0 otherwise"
- ::= { workstation 10 }
-
- wsFloppyDrives OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The number of floppy drives
- defined for the workstation"
- ::= { workstation 11 }
-
- wsRS232Ports OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The number of serial ports defined
- for the workstation"
- ::= { workstation 12 }
-
- -- DOS Group
-
- DosCurrentDrive OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-Only
- STATUS mandatory
- DESCRIPTION "Current Dos Drive"
- ::= {dos 1}
-
- --
- -- Dos Base Memory
- --
-
- DosBaseMemory OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-Only
- STATUS mandatory
- DESCRIPTION "Base Memory Size in K-Bytes"
- ::= {dos 2}
-
- --
- -- Dos Group Resident Processes
- --
-
- DosProcessTable OBJECT-TYPE
- SYNTAX SEQUENCE OF DosProcessEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION "Table of Resident Processes (TSR's)"
- ::= {dos 3}
-
-
- DosProcessEntry OBJECT-TYPE
- SYNTAX DosProcessEntry
- ACCESS not-accessible
- STATUS mandatory
- INDEX {ProcessStart}
- ::= {DosProcessTable 1}
-
- DosProcessEntry ::= SEQUENCE {
- ProcessStart
- INTEGER,
- ProcessName
- DisplayString,
- ProcessSize
- INTEGER,
- ProcessArgs
- DisplayString
- }
-
- ProcessStart OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Starting Address of Process"
- ::= {DosProcessEntry 1}
-
- ProcessName OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Name of Process"
- ::= {DosProcessEntry 2}
-
- ProcessSize OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Size of Process"
- ::= {DosProcessEntry 3}
-
- ProcessArgs OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Command line args of Process"
- ::= {DosProcessEntry 4}
-
- --
- -- Dos Group IRQ Table
- --
-
- DosIrqData OBJECT-TYPE
- SYNTAX SEQUENCE OF DosIrqDataEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION "Information about IRQ's 0 - 15"
- ::= {dos 4}
-
-
- DosIrqDataEntry OBJECT-TYPE
- SYNTAX DosIrqDataEntry
- ACCESS not-accessible
- STATUS Mandatory
- INDEX {IRQNumber}
- ::= {DosIrqData 1}
-
- DosIrqDataEntry ::= SEQUENCE
- {
- IRQNumber
- INTEGER,
- InterruptNum
- INTEGER,
- Address
- DisplayString,
- Description
- DisplayString,
- IRQState
- INTEGER,
- IRQOwner
- DisplayString
- }
-
- IRQNumber OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Selected IRQ number"
- ::= {DosIrqDataEntry 1}
-
- InterruptNum OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Interrupt used by IRQ"
- ::= {DosIrqDataEntry 2}
-
- Address OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Address of IRQ interrupt"
- ::= {DosIrqDataEntry 3}
-
- Description OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Service IRQ performs"
- ::= {DosIrqDataEntry 4}
-
- IRQState OBJECT-TYPE
- SYNTAX INTEGER
- {
- Enabled (0),
- Disabled (1)
- }
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Current state of IRQ"
- ::= {DosIrqDataEntry 5}
-
- IRQOwner OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Name of interrupt owner"
- ::= {DosIrqDataEntry 6}
-
- --
- -- Dos Group Environment Table
- --
-
- DosEnvironmentTable OBJECT-TYPE
- SYNTAX SEQUENCE OF DosEnvEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION "Table of Dos Environment Strings"
- ::= {dos 5}
-
- DosEnvEntry OBJECT-TYPE
- SYNTAX DosEnvEntry
- ACCESS not-accessible
- STATUS mandatory
- INDEX {EnvSequence}
- ::= {DosEnvironmentTable 1}
-
- DosEnvEntey ::= SEQUENCE
- {
- EnvSequence
- INTEGER,
- EnvString
- DisplayString
- }
-
- EnvSequence OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Sequence of Environment Strings"
- ::= {DosEnvEntry 1}
-
- EnvString OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION "Environment string supplied to Dos"
- ::= {DosEnvEntry 2}
-
-
- -- Windows Group
-
- winVersion OBJECT-TYPE
- SYNTAX DisplayString(SIZE (0..255))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Window's version number of the PC"
- ::= { windows 1 }
-
- winMemoryAbove OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The amount of memory (in bytes) available
- above the EMS bankline ( refer to Windows Guide
- to Programming for more information)"
- ::= { windows 2 }
-
- winMemoryBelow OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The amount of memory (in bytes) available
- below the EMS bankline ( refer to Windows Guide
- to Programming for more information)"
- ::= { windows 3 }
-
- winFlags OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Window's configuration flags on
- the PC. ( refer to Windows Guide for Programming
- for more information)"
- ::= { windows 4 }
-
- -- Window's Task table
-
- winTaskTable OBJECT-TYPE
- SYNTAX SEQUENCE OF WinTaskEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION
- "This table lists all the software applications
- (tasks) currently running on the PC"
- INDEX { winHandle }
- ::= { windows 5 }
-
- winTaskEntry OBJECT-TYPE
- SYNTAX WinTaskEntry
- ACCESS not-accessible
- STATUS mandatory
- ::= { winTaskTable 1 }
-
- WinTaskEntry ::= SEQUENCE {
- winHandle
- INTEGER,
- winStyle
- INTEGER,
- winClass
- DisplayString,
- winTitle
- DisplayString,
- winModule
- DisplayString
- }
-
- winHandle OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The window handle of the
- task ( meaningful only to programmers)"
- ::= { winTaskEntry 1 }
-
- winStyle OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The window style (a bit mask of
- different attributes meaningful only to
- programmers)"
- ::= { winTaskEntry 2 }
-
- winClass OBJECT-TYPE
- SYNTAX DisplayString(SIZE (0..255))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "A textual description of the class
- of the task"
- ::= { winTaskEntry 3 }
-
- winTitle OBJECT-TYPE
- SYNTAX DisplayString(SIZE (0..255))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The title(name) of the task
- (e.g., 'Program Manager', 'ping-UNIX', etc.)"
- ::= { winTaskEntry 4 }
-
- winModule OBJECT-TYPE
- SYNTAX DisplayString(SIZE (0..255))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The task module (typically the command that
- started it. e.g., c:\netmanag\ping.exe)"
- ::= { winTaskEntry 5 }
-
- -- Storage Group
-
- -- Drive Table
-
- driveTable OBJECT-TYPE
- SYNTAX SEQUENCE OF driveEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION
- "This table lists all accessible drives on the PC"
- INDEX { driveLetter }
- ::= { storage 1 }
-
- driveEntry OBJECT-TYPE
- SYNTAX DriveEntry
- ACCESS not-accessible
- STATUS mandatory
- ::= { driveTable 1 }
-
- DriveEntry ::= SEQUENCE {
- driveLetter
- OCTET STRING,
- driveLabel
- DisplayString,
- driveNumCluster
- INTEGER,
- driveClusterSize
- INTEGER,
- driveClusterUsed
- INTEGER,
- driveSize
- INTEGER,
- driveType
- INTEGER,
- driveSectorSize
- INTEGER
- }
-
- driveLetter OBJECT-TYPE
- SYNTAX OCTET STRING(SIZE (0..1))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The drive letter"
- ::= { driveEntry 1 }
-
- driveLabel OBJECT-TYPE
- SYNTAX DisplayString (SIZE (0..255))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "The drive's volume label"
- ::= { driveEntry 2 }
-
- driveNumCluster OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Number of clusters on drive"
- ::= { driveEntry 3 }
-
- driveClusterSize OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Cluster size in bytes"
- ::= { driveEntry 4 }
-
- driveClusterUsed OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Number of used clusters"
- ::= { driveEntry 5 }
-
- driveSize OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Size of drive in bytes"
- ::= { driveEntry 6 }
-
- driveType OBJECT-TYPE
- SYNTAX INTEGER {
- fixed(1),
- removable(2),
- remote(3),
- cdrom(4)
- }
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Media type of drive"
- ::= { driveEntry 7 }
-
- driveSectorSize OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Drive's sector size"
- ::= { driveEntry 8 }
-
- -- Directory table
-
- directoryTable OBJECT-TYPE
- SYNTAX SEQUENCE OF directoryEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION
- "This table lists all directories on the PC"
- INDEX { directoryName }
- ::= { storage 2 }
-
- directoryEntry OBJECT-TYPE
- SYNTAX DriveEntry
- ACCESS not-accessible
- STATUS mandatory
- ::= { directoryTable 1 }
-
- DriveEntry ::= SEQUENCE {
- directoryName
- OCTET STRING,
- directoryNumFiles
- INTEGER,
- directoryNumSubdirs
- INTEGER
- }
-
- directoryName OBJECT-TYPE
- SYNTAX OCTET STRING (SIZE (0..255))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Name of directory"
- ::= { directoryEntry 1 }
-
- directoryNumFiles OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Number of files in the directory"
- ::= { directoryEntry 2 }
-
- directoryNumSubDirs OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Number of subdirectories in the directory"
- ::= { directoryEntry 3 }
-
- -- File table
-
- fileTable OBJECT-TYPE
- SYNTAX SEQUENCE OF fileEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION
- "This table lists all files on the PC"
- INDEX { fileQualifier, fileName }
- ::= { storage 3 }
-
- fileEntry OBJECT-TYPE
- SYNTAX FileEntry
- ACCESS not-accessible
- STATUS mandatory
- ::= { fileTable 1 }
-
- FileEntry ::= SEQUENCE {
- fileName
- OCTET STRING,
- fileAttribute
- INTEGER,
- fileTime
- INTEGER,
- fileDate
- INTEGER,
- fileSize
- INTEGER
- }
-
- fileQualifier OBJECT-TYPE
- SYNTAX OCTET STRING (SIZE (0..255))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "File search crition separated by commas
- /D=1 Confine search to local drives only
- /D=2 Allow search on all drives
- /D=ch Confine search to (ch = A...Z) drive only
- /D Confine search to passed directory only
- /S=n Confine search to subtree only (n = path character count)
- Filename Confine search to filename only. Wildcards OK"
- ::= { fileEntry 1 }
-
- fileName OBJECT-TYPE
- SYNTAX OCTET STRING (SIZE (0..255))
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Name of file"
- ::= { fileEntry 1 }
-
- fileAttribute OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "File's access attribute"
- ::= { fileEntry 2 }
-
- fileTime OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "File's last modified time"
- ::= { fileEntry 3 }
-
- fileDate OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "File's last modified date"
- ::= { fileEntry 4 }
-
- fileSize OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "File size in bytes"
- ::= { fileEntry 5 }
-
- -- Activity Group
-
- KeyStrokes OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS Mandatory
- DESCRIPTION
- "Get cumalitive keyboard activity"
- ::= { activity 1 }
-
- MouseClicks OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Get cumalitive mouse activity"
- ::= { activity 2 }
-
- CPUUsage OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Get CPU task yielding time.
- Relative time CPU spends while
- actively in tasks"
- ::= { activity 3 }
-
- DiskUsage OBJECT-TYPE
- SYNTAX INTEGER
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Get relative hard disk usage"
- ::= { activity 4 }
-
- --
- -- RemoteTransfer Group
- --
-
- --
- -- Software Distribution
- --
-
- SDIPAddress OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set IP address of remote machine"
- ::= { remotetransfer 1 }
-
- SDUser OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set user name of remote machine"
- ::= { remotetransfer 2 }
-
- SDPassword OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set user pasword of remote machine"
- ::= { remotetransfer 3 }
-
- SDRootDir OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set location of work order file"
- ::= { remotetransfer 4 }
-
- SDWorkOrder OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set name of work order file"
- ::= { remotetransfer 5 }
-
- SDBy OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set name of sender"
- ::= { remotetransfer 6 }
-
- SDForce OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Force immediate setup after transfer"
- ::= { remotetransfer 7 }
-
- SDDeadLineDate OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set future setup time"
- ::= { remotetransfer 8 }
-
- SDAgentDelay OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set pause time after request"
- ::= { remotetransfer 9 }
-
- --
- -- Software Distribution Table
- --
-
- SDReportTable OBJECT-TYPE
- SYNTAX SEQUENCE OF SDReportEntry
- ACCESS not-accessible
- STATUS mandatory
- DESCRIPTION
- "Table of generated reports"
- ::= { remotetransfer 20 }
-
- SDReportEntry OBJECT-TYPE
- SYNTAX SDReportEntry
- ACCESS not-accessible
- STATUS mandatory
- INDEX { SDRReport }
- ::= { SDReportTable 1 }
-
- SDReportEntry ::= SEQUENCE {
- SDReport
- DisplayString
- }
-
- SDReport OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "Get distribution report"
- ::= { SDReportEntry 1 }
-
- -- Remote backup
-
- RBIPAddress OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set IP address of remote machine"
- ::= { remotetransfer 30 }
-
- RBUser OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set user name of remote machine"
- ::= { remotetransfer 31 }
-
- RBPassword OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set user pasword of remote machine"
- ::= { remotetransfer 32 }
-
- RBRootDir OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set location of work order file"
- ::= { remotetransfer 33 }
-
- RBDelay OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set pause time after request"
- ::= { remotetransfer 34 }
-
- RBIndex OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set order number criteria"
- ::= { remotetransfer 40 }
-
- RBDrive OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set drive letter of request"
- ::= { remotetransfer 41 }
-
- RBIncludeSubDir OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set flag to include subdirectories"
- ::= { remotetransfer 42 }
-
- RBDirectory OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set directory to back up"
- ::= { remotetransfer 43 }
-
- RBFileType OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set filespecs to include in backup"
- ::= { remotetransfer 44 }
-
- RBLastModify OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set filedate criteria for backup"
- ::= { remotetransfer 45 }
-
- RBMoreCritreia OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS read-write
- STATUS mandatory
- DESCRIPTION
- "Set flag for more criteria avalable"
- ::= { remotetransfer 49 }
-
- RBBackupReport OBJECT-TYPE
- SYNTAX DisplayString
- ACCESS Read-Only
- STATUS mandatory
- DESCRIPTION
- "Get backup report"
- ::= { remotetransfer 50 }
-
-
- END
-