RAISECOM-SSH-MIB: View SNMP OID List / Download MIB

VENDOR: BEIJING RAISECOM SCIENTIFIC N TECHNOLOGY DEV.


 Home MIB: RAISECOM-SSH-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
 raisecomSsh 1.3.6.1.4.1.8886.1.15
       raisecomSshObjects 1.3.6.1.4.1.8886.1.15.1
           raisecomSshSvrConfiguration 1.3.6.1.4.1.8886.1.15.1.1
               sshServerVersion 1.3.6.1.4.1.8886.1.15.1.1.1 integer read-write
This object specifies the Secure Shell server working version. In another words, it specifies which versions of Secure Shell protocol connections that device will accept from Secure Shell clients. Enumeration: 'ssh-1': 1, 'ssh-2': 2, 'both': 3.
               sshServerAuthenTimeout 1.3.6.1.4.1.8886.1.15.1.1.2 integer read-write
This object specifies time limit client takes to pass server authentication. The server will disconnect the client that can't pass authentication in the time this object specifies since its first request.
               sshServerAuthenRetries 1.3.6.1.4.1.8886.1.15.1.1.3 integer read-write
This object specifies time limit client takes to pass server authentication. The server will disconnect the client that can't pass authentication in the time this object specifies since its first request.
               sshServerHostKeyName 1.3.6.1.4.1.8886.1.15.1.1.4 octet string read-write
This object specifies the name of host key server uses.
               sshServerEnable 1.3.6.1.4.1.8886.1.15.1.1.5 enablevar read-write
Enables or disables the Secure Shell (SSH) server on the device.
           raisecomSshKeyPairMgnt 1.3.6.1.4.1.8886.1.15.1.2
               sshKeyPairGenerationStatus 1.3.6.1.4.1.8886.1.15.1.2.1 integer read-only
The object indicates the status of key generation. The keyGenerationSuccess indicates that key generation succeeded. The keyGenerationInvalidName indicates that the sshKeyPairName is invalid. The keyGenerationInvalidModulus indicates that the sshKeyPairModulusSz is invalid. The keyGenerationKeyPairExist indicates that there's key with the same name. The keyGenerationKeySavingError indicates that saving key failed. The keyGenerationNumLimit indicates that the number of keys reaches to limit. The keyGenerationInProgress indicates that the key is being generated. Enumeration: 'keyGenerationKeyExist': 5, 'keyGenerationInvalidName': 3, 'keyGenerationNumLimit': 6, 'keyGenerationInvalidModulus': 4, 'keyGenerationSuccess': 1, 'keyGenerationInProgress': 2, 'keyGenerationKeySavingError': 7.
               sshKeyPairTable 1.3.6.1.4.1.8886.1.15.1.2.2 no-access
                   sshKeyPairEntry 1.3.6.1.4.1.8886.1.15.1.2.2.1 no-access
                       sshKeyPairName 1.3.6.1.4.1.8886.1.15.1.2.2.1.1 octet string read-only
This object specifies the key unique name which used by server to determine host key.
                       sshKeyPairType 1.3.6.1.4.1.8886.1.15.1.2.2.1.2 integer read-only
Key type which specifies the generation algorithm. Enumeration: 'rsa': 1, 'dsa': 2.
                       sshKeyPairModulusSz 1.3.6.1.4.1.8886.1.15.1.2.2.1.3 integer read-only
This object specifies modulus size used to generate key.
                       sshKeyPairComment 1.3.6.1.4.1.8886.1.15.1.2.2.1.4 octet string read-only
Comment for this key.
                       sshKeyPairTrapOnComplete 1.3.6.1.4.1.8886.1.15.1.2.2.1.5 truthvalue read-only
This object specifies whether the device should send a trap or not when finishing key generation.
                       sshKeyPairPubData 1.3.6.1.4.1.8886.1.15.1.2.2.1.6 octet string read-only
Public key data of the key in the file format defined in RFC 4716.
                       sshKeyPairStatus 1.3.6.1.4.1.8886.1.15.1.2.2.1.7 rowstatus read-only
This object only includes three valid values: createAndGo, notInService, active and destroy. It will be set to notInService when generation is being process and active when generation succeed, otherwise the associated row will be removed.
           raisecomSshSessionInfo 1.3.6.1.4.1.8886.1.15.1.3
               sshSessionTable 1.3.6.1.4.1.8886.1.15.1.3.1 no-access
                   sshSessionEntry 1.3.6.1.4.1.8886.1.15.1.3.1.1 no-access
                       sshSessionId 1.3.6.1.4.1.8886.1.15.1.3.1.1.1 gauge no-access
An arbitrary index that uniquely identifies a Secure Shell Session, but not the session ID generated resulting from key exchange.
                       sshSessionVersion 1.3.6.1.4.1.8886.1.15.1.3.1.1.2 integer read-only
The object indicates the SSH version used by this session. Enumeration: 'ssh-1': 1, 'ssh-2': 2.
                       sshSessionState 1.3.6.1.4.1.8886.1.15.1.3.1.1.3 integer read-only
The object indicates the current state of Secure Shell Session. The state sessionVersionOk(1) indicates that server and client versions of SSH are exchanged and are compatible. The state sessionKeysExchanged(2) indicates that key exchange has been completed. The state sessionAuthenticated(3) indicates that the client has been successfully authenticated. The state sessionOpen(4) indicates that the session has been successfully opened. The state sessionDisconnecting(5) indicates that the session disconnection has begun. The state sessionDisconnected(6)indicates that the session has been disconnected. The state sessionClosed(7) indicates that the session has closed. Enumeration: 'sessionAuthenticated': 3, 'sessionKeysExchanged': 2, 'sessionVersionOk': 1, 'sessionClosed': 7, 'sessionDisconnecting': 5, 'sessionDisconnected': 6, 'sessionOpen': 4.
                       sshSessionUserId 1.3.6.1.4.1.8886.1.15.1.3.1.1.4 octet string read-only
The object indicates user name associated with this session.
                       sshSessionHostAddr 1.3.6.1.4.1.8886.1.15.1.3.1.1.5 ipaddress read-only
The object indicates IP address of host associated with this session.
                       sshSessionInEncrypt 1.3.6.1.4.1.8886.1.15.1.3.1.1.6 octet string read-only
The object indicates the ingress encryption algorithm of this session.
                       sshSessionOutEncrypt 1.3.6.1.4.1.8886.1.15.1.3.1.1.7 octet string read-only
The object indicates the egress encryption algorithm of this session. If the session version is SSH-1, it is always the same as sshSessionInEncrypt.
                       sshSessionInHmac 1.3.6.1.4.1.8886.1.15.1.3.1.1.8 octet string read-only
The object indicates the ingress HMAC algorithm used in this session.
                       sshSessionOutHmac 1.3.6.1.4.1.8886.1.15.1.3.1.1.9 octet string read-only
The object indicates the egress HMAC algorithm used in this session.
       raisecomSshTraps 1.3.6.1.4.1.8886.1.15.2
           sshKeyPairGenerationCompletion 1.3.6.1.4.1.8886.1.15.2.1
Key pair generation is completed.