ERICSSON-ROUTER-CONFIG-FILE-MIB

File: ERICSSON-ROUTER-CONFIG-FILE-MIB.mib (20528 bytes)

Imported modules

SNMPv2-SMI SNMPv2-TC SNMPv2-CONF
SNMP-FRAMEWORK-MIB INET-ADDRESS-MIB RMON-MIB
ERICSSON-ROUTER-SMI

Imported symbols

MODULE-IDENTITY NOTIFICATION-TYPE OBJECT-TYPE
Unsigned32 TimeStamp RowStatus
TestAndIncr TruthValue MODULE-COMPLIANCE
OBJECT-GROUP NOTIFICATION-GROUP SnmpAdminString
InetAddressType InetAddress OwnerString
eriRouterMgmt

Defined Types

RcfJobEntry  
SEQUENCE    
  eriRouterCfJobIndex Unsigned32
  eriRouterCfJobOp INTEGER
  eriRouterCfJobProtocol INTEGER
  eriRouterCfJobFilename SnmpAdminString
  eriRouterCfJobIpAddressType InetAddressType
  eriRouterCfJobIpAddress InetAddress
  eriRouterCfJobUsername SnmpAdminString
  eriRouterCfJobPassword SnmpAdminString
  eriRouterCfJobPassiveMode TruthValue
  eriRouterCfJobStopAtLine Unsigned32
  eriRouterCfJobSaveDefaults TruthValue
  eriRouterCfJobState INTEGER
  eriRouterCfJobResult INTEGER
  eriRouterCfJobErrorMsgs SnmpAdminString
  eriRouterCfJobCreateTime TimeStamp
  eriRouterCfJobStartTime TimeStamp
  eriRouterCfJobStopTime TimeStamp
  eriRouterCfJobNotifyOnCompletion TruthValue
  eriRouterCfJobOwner OwnerString
  eriRouterCfJobRowStatus RowStatus

Defined Values

eriRouterConfigFileMib 1.3.6.1.4.1.193.218.2.13
Defines the objects necessary to support loading system configuration files and saving the contents of the current system configuration. For security reasons, all mib objects defined in this module are only accessible via SNMP community strings (v1/v2c) or SNMP contextNames (v3) that map to the system's 'local' context. Note well: due to these security reasons, it is highly encouraged to only allow access to this MIB via the more secure protocols supported by SNMPv3.
MODULE-IDENTITY    

eriRouterConfigFileMIBNotifications 1.3.6.1.4.1.193.218.2.13.0
OBJECT IDENTIFIER    

eriRouterConfigFileMIBObjects 1.3.6.1.4.1.193.218.2.13.1
OBJECT IDENTIFIER    

eriRouterConfigFileMIBConformance 1.3.6.1.4.1.193.218.2.13.2
OBJECT IDENTIFIER    

eriRouterCfJobs 1.3.6.1.4.1.193.218.2.13.1.1
OBJECT IDENTIFIER    

eriRouterCfJobSpinLock 1.3.6.1.4.1.193.218.2.13.1.1.1
An advisory lock used to allow several cooperating Command Generator Applications to coordinate their use of facilities to create/modify entries in the eriRouterCfJobTable.
Status: current Access: read-write
OBJECT-TYPE    
  TestAndIncr  

eriRouterCfJobNextIndex 1.3.6.1.4.1.193.218.2.13.1.1.2
The next available index which can be used to create a eriRouterCfJobEntry.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

eriRouterCfJobTable 1.3.6.1.4.1.193.218.2.13.1.1.3
A table which is used to start and monitor a process which loads a configuration file, or saves the current configuration out to a file. The suggested method to create a new entry is: 1. GET(eriRouterCfJobSpinLock.0, eriRouterCfJobNextIndex.0) and save in slValue, niValue respectively 2. SET(eriRouterCfJobSpinLock.0 = slValue, eriRouterCfJobXxx.niValue = ... eriRouterCfJobYyy.niValue = ... ... eriRouterCfJobRowStatus.niValue = 'createAndGo') Entries whose state is 'completed' may be automatically deleted by the system after some system dependant time.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    RcfJobEntry

eriRouterCfJobEntry 1.3.6.1.4.1.193.218.2.13.1.1.3.1
An entry created by a Command Generator application which starts and monitors a process which loads a system configuration file or saves the current system configuration out to a file. When eriRouterCfJobRowStatus becomes active, eriRouterCfJobState is set to 'pending' and is queued for processing. Only one job may be processed at a time. When the job reaches the head of the queue, eriRouterCfJobState is set to 'inProgress' and the configuration operation will be performed. When the operation completes, eriRouterCfJobState will be set to 'completed'. Also at this time the objects eriRouterCfJobResult and eriRouterCfJobErrorMsgs will be instantiated and will provide the success/failure status of the operation. A job in the 'pending' state may be aborted by setting eriRouterCfJobRowStatus to 'notInService' or 'destroy'. An entry for a job which has completed (eriRouterCfJobState is 'completed') may be reset to the 'pending' state by setting eriRouterCfRowStatus to 'notInService' and then back to 'active' to initiate another configuration operation. Note: while eriRouterCfRowStatus equals 'active', the only object instance that can be modified in the entry is eriRouterCfRowStatus. To alter any other object instance, eriRouterCfRowStatus must be set to 'notInService'.
Status: current Access: not-accessible
OBJECT-TYPE    
  RcfJobEntry  

eriRouterCfJobIndex 1.3.6.1.4.1.193.218.2.13.1.1.3.1.1
A unique identifier for an entry in this table.
Status: current Access: not-accessible
OBJECT-TYPE    
  Unsigned32 1..4294967295  

eriRouterCfJobOp 1.3.6.1.4.1.193.218.2.13.1.1.3.1.2
The configuration operation to perform. If 'load', the file specified in eriRouterCfJobFilename is retrieved, parsed and loaded into the system configuration. If 'save', the current system configuration is written to the file specified in eriRouterCfJobFilename.
Status: current Access: read-create
OBJECT-TYPE    
  INTEGER load(0), save(1)  

eriRouterCfJobProtocol 1.3.6.1.4.1.193.218.2.13.1.1.3.1.3
The file transfer protocol to use. If 'local', the filename specified in eriRouterCfJobFilename exists locally on the system (eg in /flash). If 'tftp', the filename specified in eriRouterCfJobFilename will be read/written from/to the system identified by eriRouterCfJobIpAddress via the TFTP file transfer protocol. If 'ftp', the filename specified in eriRouterCfJobFilename will be read/written from/to the system identified by eriRouterCfJobIpAddress via the FTP file transfer protocol. The values in eriRouterCfJobUsername and eriRouterCfJobPassword will be used for authentication. eriRouterCfJobPassiveMode can be used to enable/disable FTP's passive mode.
Status: current Access: read-create
OBJECT-TYPE    
  INTEGER local(0), tftp(1), ftp(2)  

eriRouterCfJobFilename 1.3.6.1.4.1.193.218.2.13.1.1.3.1.4
The name of the source file (loads) or destination file (saves).
Status: current Access: read-create
OBJECT-TYPE    
  SnmpAdminString Size(1..128)  

eriRouterCfJobIpAddressType 1.3.6.1.4.1.193.218.2.13.1.1.3.1.5
The address type for eriRouterCfJobIpAddress. This object is only relevant for non-local filenames. If eriRouterCfJobProtocol equals 'local', any value for this object will effectively be ignored.
Status: current Access: read-create
OBJECT-TYPE    
  InetAddressType  

eriRouterCfJobIpAddress 1.3.6.1.4.1.193.218.2.13.1.1.3.1.6
The IP address for the file server which contains the source file (loads) or destination file (saves). This object is only relevant for non-local filenames. If eriRouterCfJobProtocol equals 'local', any value for this object will effectively be ignored.
Status: current Access: read-create
OBJECT-TYPE    
  InetAddress  

eriRouterCfJobUsername 1.3.6.1.4.1.193.218.2.13.1.1.3.1.7
The username to use for authentication with the file server. This object is only relevant for the FTP protocol. If eriRouterCfJobProtocol does not equal 'ftp', any value for this object will effectively be ignored. For security reasons, all SNMP gets on this object will return a zero-length string.
Status: current Access: read-create
OBJECT-TYPE    
  SnmpAdminString Size(1..32)  

eriRouterCfJobPassword 1.3.6.1.4.1.193.218.2.13.1.1.3.1.8
The password to use for authentication with the file server. A zero-length string value would be used for usernames that do not require a password. This object is only relevant for the FTP protocol. If eriRouterCfJobProtocol does not equal 'ftp', any value for this object will effectively be ignored. For security reasons, all SNMP gets on this object will return a zero-length string.
Status: current Access: read-create
OBJECT-TYPE    
  SnmpAdminString Size(0..128)  

eriRouterCfJobPassiveMode 1.3.6.1.4.1.193.218.2.13.1.1.3.1.9
Enables/disables passive mode on FTP connections. This object is only relevant for the FTP protocol. If eriRouterCfJobProtocol does not equal 'ftp', any value for this object will effectively be ignored.
Status: current Access: read-create
OBJECT-TYPE    
  TruthValue  

eriRouterCfJobStopAtLine 1.3.6.1.4.1.193.218.2.13.1.1.3.1.10
If this object instance has a non-zero value, parsing and loading of the configuration file will terminate after the specified line number. This object is only relevant for 'load' operations. If eriRouterCfJobOp does not equal 'load', any value for this object will effectively be ignored.
Status: current Access: read-create
OBJECT-TYPE    
  Unsigned32  

eriRouterCfJobSaveDefaults 1.3.6.1.4.1.193.218.2.13.1.1.3.1.11
If 'true', default values for all configuration values are saved. If 'false', only the values which have been explicitly configured are saved. This object is only relevant for 'save' operations. If eriRouterCfJobOp does not equal 'save', any value for this object will effectively be ignored.
Status: current Access: read-create
OBJECT-TYPE    
  TruthValue  

eriRouterCfJobState 1.3.6.1.4.1.193.218.2.13.1.1.3.1.12
The current state of the configuration job. pending -- The initial state of all jobs. Jobs are queued and processed in order of creation. inProgress -- The job is actively being performed. completed -- The job has completed.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER pending(0), inProgress(1), completed(2)  

eriRouterCfJobResult 1.3.6.1.4.1.193.218.2.13.1.1.3.1.13
A generic result code. This object is instantiated only when eriRouterCfJobStatus equals 'completed'. success -- The job completed successfully. other -- An error that doesn't fall into one of the categories below. noMemory -- Insufficient system resources to perform the operation. parse -- A parse failure occurred. ie- there was a syntax error in the source configuration file. io -- An i/o error occurred. access -- A file access error occurred. This could be caused by a non-existant source file, or insufficient access/permission to create/modify the destination file. More detailed error descriptions can be found in the eriRouterCfJobErrorMsgs object.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER success(0), other(1), noMemory(2), parse(3), io(4), access(5)  

eriRouterCfJobErrorMsgs 1.3.6.1.4.1.193.218.2.13.1.1.3.1.14
Detailed error messages generated during the configuration operation. This object is instantiated only when eriRouterCfJobState equals 'completed'. Note: the amount of error messages produced by a configuration operation may exceed the max size of this object (255 bytes). If this happens, the last character in the eriRouterCfJobErrorMsgs value will be '$' to indicate that a truncation occurred. Note: there may be some types of messages that one will see when performing a configuration operation via the CLI. However these messages will not be seen in the values for this object. A specific example on the SMS platform is the messages the CLI will display when there is a parse failure. These messages will not be captured in this object.
Status: current Access: read-only
OBJECT-TYPE    
  SnmpAdminString  

eriRouterCfJobCreateTime 1.3.6.1.4.1.193.218.2.13.1.1.3.1.15
The value of sysUpTime when this job entry was created.
Status: current Access: read-only
OBJECT-TYPE    
  TimeStamp  

eriRouterCfJobStartTime 1.3.6.1.4.1.193.218.2.13.1.1.3.1.16
The value of sysUpTime when eriRouterCfJobState moved from 'pending' to 'inProgress'. This object will not be instantiated until eriRouterCfJobState moves to 'inProgress'. The object will be un-instantiated if eriRouterCfJobRowStatus is set to 'notInService'.
Status: current Access: read-only
OBJECT-TYPE    
  TimeStamp  

eriRouterCfJobStopTime 1.3.6.1.4.1.193.218.2.13.1.1.3.1.17
The value of sysUpTime when the job completed. This object will not be instantiated until eriRouterCfJobState moves to 'completed'. The object will be un-instantiated if eriRouterCfJobRowStatus is set to 'notInService'.
Status: current Access: read-only
OBJECT-TYPE    
  TimeStamp  

eriRouterCfJobNotifyOnCompletion 1.3.6.1.4.1.193.218.2.13.1.1.3.1.18
If 'true', an eriRouterCfJobCompleted notification will be generated when the job completes.
Status: current Access: read-create
OBJECT-TYPE    
  TruthValue  

eriRouterCfJobOwner 1.3.6.1.4.1.193.218.2.13.1.1.3.1.19
This object can be used to identify who/what/where created this job entry.
Status: current Access: read-create
OBJECT-TYPE    
  OwnerString  

eriRouterCfJobRowStatus 1.3.6.1.4.1.193.218.2.13.1.1.3.1.20
The row status for creating, modifying, or deleting an entry in the table. Note that 'active' entries cannot be modified. Any attempt to modify an object in this entry while eriRouterCfJobRowStatus equals 'active' will result in an inconsistentValue error. To modify objects in an active entry, eriRouterCfJobRowStatus must first be set to 'notInService'. All entries will be automatically deleted by the agent after some system dependent time.
Status: current Access: read-create
OBJECT-TYPE    
  RowStatus  

eriRouterCfJobCompleted 1.3.6.1.4.1.193.218.2.13.0.1
A notification indicating that a configuration job has completed.
Status: current Access: read-create
NOTIFICATION-TYPE    

eriRouterConfigFileCompliances 1.3.6.1.4.1.193.218.2.13.2.1
OBJECT IDENTIFIER    

eriRouterConfigFileGroups 1.3.6.1.4.1.193.218.2.13.2.2
OBJECT IDENTIFIER    

eriRouterCfJobGroup 1.3.6.1.4.1.193.218.2.13.2.2.1
The collection of objects which represent a configuration job.
Status: current Access: read-create
OBJECT-GROUP    

eriRouterCfJobNotifyGroup 1.3.6.1.4.1.193.218.2.13.2.2.2
The collection of notifications related to configuration jobs.
Status: current Access: read-create
NOTIFICATION-GROUP    

eriRouterConfigFileCompliance 1.3.6.1.4.1.193.218.2.13.2.1.1
The compliance statement for SNMP entities which implement this Configuration File MIB.
Status: current Access: read-create
MODULE-COMPLIANCE