A3COM0048-EMBEDDED-SCRIPTS: View SNMP OID List / Download MIB
VENDOR: 3COM
Home | MIB: A3COM0048-EMBEDDED-SCRIPTS | |||
---|---|---|---|---|
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).
|
|||
Object Name | OID | Type | Access | Info |
command | 1.3.6.1.4.1.43.10.25.5 | |||
cmdMacroTable | 1.3.6.1.4.1.43.10.25.5.1 | no-access |
Extended RMON table that provides a macro execution facility on the remote unit. |
|
1.3.6.1.4.1.43.10.25.5.1.1 | no-access | |||
cmdMacroIndex | 1.3.6.1.4.1.43.10.25.5.1.1.1 | integer | no-access |
Standard RMON index column. |
cmdMacroName | 1.3.6.1.4.1.43.10.25.5.1.1.2 | displaystring | read-write |
A short text name for this macro. This name can be referenced in the cmdTable to execute a script. |
cmdMacroString | 1.3.6.1.4.1.43.10.25.5.1.1.3 | displaystring | read-write |
Text macro that is represented by this control entry. |
cmdMacroOwner | 1.3.6.1.4.1.43.10.25.5.1.1.4 | ownerstring | read-write |
RMON Owner of this process. |
cmdMacroStatus | 1.3.6.1.4.1.43.10.25.5.1.1.5 | entrystatus | read-write |
Rmon RowStatus for this macro definition. |
cmdExecTable | 1.3.6.1.4.1.43.10.25.5.2 | no-access |
Extended RMON table that provides a script execution facility on the remote unit. Note that scripts executed by this table do not have to reside in the macro table. A script is identified by its 'cmdExecMacroName'. The agent will search all available script sources for that named script. The script _may_ be found in the macro table but this is not mandated. |
|
1.3.6.1.4.1.43.10.25.5.2.1 | no-access | |||
cmdExecUnit | 1.3.6.1.4.1.43.10.25.5.2.1.1 | integer | no-access |
Identifies one of a number of different 'execution units'. Genrally each of these is a separate processor in a distributed environment. |
cmdExecIndex | 1.3.6.1.4.1.43.10.25.5.2.1.2 | integer | no-access |
Standard RMON index column. |
cmdExecProcessStatus | 1.3.6.1.4.1.43.10.25.5.2.1.3 | integer | read-only |
The current status of this process. The various possible values are described as follows: inactive : This process is not currently executing any script. This is the default state after creating a row in the table. running: The process is currently executing a script, and that script is not currently blocked by any internal asynchronous activity. 'running' actually means that this process is capable of being scheduled and is in a 'ready to run' scheduling queue. suspended: The script being executed by this process is currently blocked waiting for the completion of some asynchronous activity. dying: The script that was being executed by this process has completed and is waiting to be tidied up. When the tidyup has been completed this process will either automatically be destroyed or will enter the 'inactive' state. paused: The script being executed has been manually stopped, generally for debug purposes. A script can enter this state either voluntarily be requesting the system to stop it (ie similar to a breakpoint) or can be paused by writing to the cmdExecOperation variable. searching: When a process is given a script to execute the engine must first find that script. The script is identified by name (spe cified in cmdExecMacroName). The agent must search all possible sources for the script, which may take some time. The MIB allows the script to be specified by any name and so some implementations may allow the name to identify a file on some remote file system, for example by using a URL. While the agent searches for the script the process enters the 'searching' state. If the agent locates the script it will enter the 'running' state. If the script cannot be located then the process re-enters the 'inactive' state. Enumeration: 'dying': 4, 'searching': 6, 'paused': 5, 'running': 2, 'inactive': 1, 'suspended': 3. |
cmdExecStartTime | 1.3.6.1.4.1.43.10.25.5.2.1.4 | timeticks | read-only |
sysUpTime when this process was started. |
cmdExecLastExecTime | 1.3.6.1.4.1.43.10.25.5.2.1.5 | timeticks | read-only |
sysUpTime when this process last used any processor time. |
cmdExecSystemTime | 1.3.6.1.4.1.43.10.25.5.2.1.6 | timeticks | read-only |
Number of time-ticks used by this process. |
cmdExecStatement | 1.3.6.1.4.1.43.10.25.5.2.1.8 | integer | read-only |
Generally scripts are broken into statements, this is just about true for any scripting mechanism. The statement number is generally useful for debugging. This object reports the current statement that will be executed _next_. |
cmdExecOperation | 1.3.6.1.4.1.43.10.25.5.2.1.9 | integer | read-write |
This object can be set to cause some action to be applied to a executing process. Note that this variable can only be set if the row- status is valid. Operations are: none - Value returned for _any_ read operation. execute - If the operational state of the macro is 'inactive' then this command will attempt to execute the script named in cmdMacroName. If the process is in any other state this command will be rejected. suspend - This command will suspend the process at the end of the current statement. Command is rejected if the macro is inactive. continue - If a macro is suspended due to a 'suspend' command this will cause it to continue execution from its current point. step - Execute the next statement and then stop. kill - Stop this process from running and put it in the inactive state. Note that this deletes all resource associated with the executing script, but not the process itself. abort - If the current macro status is 'suspended' Will cause it to terminate at its current point. next - Execute the next statement, stepping over child processes. Enumeration: 'none': 1, 'suspend': 3, 'Abort': 7, 'execute': 2, 'Next': 8, 'step': 5, 'continue': 4, 'kill': 6. |
cmdExecLastError | 1.3.6.1.4.1.43.10.25.5.2.1.10 | integer | read-only |
Last error detected by this process or the script executing within the process. Enumeration: 'missingEndParams': 22, 'missingEndList': 18, 'invalidQuoteStr': 23, 'runTimeError': 11, 'invalidBinaryImage': 29, 'syntax': 2, 'nestTooDeep': 10, 'blockMismatch': 5, 'missingEndOid': 19, 'noSuchVar': 12, 'missingSemiColon': 17, 'missingEndBracket': 20, 'illegalLeftVal': 14, 'childDiedBadly': 27, 'rpcTargetDoesnotExist': 33, 'illegalAssignment': 4, 'outOfRange': 13, 'parentDiedPadly': 31, 'missingControlExpression': 36, 'stackOverflow': 7, 'missingEndSubscript': 21, 'rpcTargetNotSupported': 34, 'divideByZero': 30, 'accessViolation': 8, 'nestedErrorHandler': 32, 'namedVarNotSupported': 25, 'invalidGlobalName': 24, 'none': 1, 'noResource': 3, 'badFnParams': 6, 'noTargetProcess': 28, 'sourceNotFound': 16, 'typeMismatch': 9, 'assertionFailed': 35, 'processKilled': 26, 'brokenRemoteProc': 15. |
cmdExecOwner | 1.3.6.1.4.1.43.10.25.5.2.1.11 | ownerstring | read-write |
RMON Owner of this process. |
cmdExecStatus | 1.3.6.1.4.1.43.10.25.5.2.1.12 | entrystatus | read-write |
Rmon RowStatus for this process. |
cmdExecMacroName | 1.3.6.1.4.1.43.10.25.5.2.1.13 | displaystring | read-write |
Name of the script to execute in the process. The script can reside in either the macro table in this MIB module, or in some other internal script repository. |