MIBs Depot

HUAWEI-SSH-MIB

Registered at
1.3.6.1.4.1.2011.5.25.118
Last updated
2017-08-17 00:00
Organization
Huawei Technologies Co.,Ltd.
Revisions
2017-08-17 00:00, 2017-05-17 00:00, 2017-03-14 00:00, 2017-01-24 00:00, 2014-09-26 00:00, 2014-06-30 00:00, 2014-05-06 00:00, 2010-11-09 00:00, 2010-08-25 00:00, 2010-06-17 00:00, 2010-04-18 00:00, 2010-03-03 00:00, 2010-01-29 00:00, 2006-09-05 00:00
Namespace
huawei
Source file
HUAWEI-SSH-MIB
Digest
sha256:28f1ba3cb2b6ee2a795ba8e1c22568c3a4181487029f3d8c9bde5b6c9de5a5a8

Description

This mib which contains objects manages the SSH server and SSH client configuration.

Contact

Huawei Industrial Base Bantian, Longgang Shenzhen 518129 People's Republic of China Website: http://www.huawei.com Email: support@huawei.com

Imports

FromSymbols
HUAWEI-MIBhwDatacomm
SNMPv2-CONFMODULE-COMPLIANCE, NOTIFICATION-GROUP, OBJECT-GROUP
SNMPv2-SMIInteger32, MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-IDENTITY, OBJECT-TYPE, Unsigned32, iso
SNMPv2-TCDisplayString, RowStatus, TEXTUAL-CONVENTION

Imported by

Nothing in this corpus imports this module.

Load order

Every file a consumer needs in order to load this module, dependencies first.

HUAWEI-MIB
HUAWEI-SSH-MIB
SNMPv2-CONF
SNMPv2-SMI
SNMPv2-TC

Objects

NameOIDSyntaxAccessStatus
hwSSHServer
OBJECT-IDENTITY
1.3.6.1.4.1.2011.5.25.118.1
hwStelnetServerEnable
OBJECT-TYPE
The object specifies whether the SSH stelnet server is enable. Options: 1. enable(1) -The SSH stelnet server is enable. 2. disable(2)-The SSH stelnet server is disable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.1INTEGER {enable(1), disable(2)}read-writecurrent
hwSftpServerEnable
OBJECT-TYPE
The object specifies whether the sftp server is enable. Options: 1.enable(1) -the sftp server is enable. 2.disable(2)-the sftp server is disable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.2INTEGER {enable(1), disable(2)}read-writecurrent
hwSSHServerComp1x
OBJECT-TYPE
The object specifies whether the SSH server is compatible with SSH1.x. The default is 2. Options: 1. enable(1) -indicates that the version compatibility function of the SSH server is enabled so that the SSH server is compatible with the SSHv1.x client. 2. disable(2)-indicates that the version compatibility function of the SSH server is disabled and therefore the SSH server is incompatible with the SSHv1.x client.
1.3.6.1.4.1.2011.5.25.118.1.3INTEGER {enable(1), disable(2)}read-writecurrent
hwSSHServerTimeOut
OBJECT-TYPE
The object specifies the time when SSH authentication times out. The unit is the second and the default is 60 seconds.
1.3.6.1.4.1.2011.5.25.118.1.4Integer32 (1..120)read-writecurrent
hwSSHServerRetry
OBJECT-TYPE
The object specifies authentication-retry times for SSH user. Default: 3
1.3.6.1.4.1.2011.5.25.118.1.5Integer32 (1..5)read-writecurrent
hwSSHServerPort
OBJECT-TYPE
The object specifies port number for SSH server supporting. The default value is 22.
1.3.6.1.4.1.2011.5.25.118.1.6Integer32 (22 | 1025..65535)read-writecurrent
hwSSHServerKeyTimeOut
OBJECT-TYPE
The interval of updating the SSH server key pair. By default, value is 0 hour, which means server key can't be updated forever. Range: 0-24 Unit: hour
1.3.6.1.4.1.2011.5.25.118.1.7Integer32 (0..24)read-writecurrent
hwSSHServerAlarmEnable
OBJECT-TYPE
The object specifies whether send trap information to NMS. Options: 1.enable(1) -Only when its value enable, allowed to send trap informations to NMS. 2.disable(2)-Can not to send trap informations to NMS.
1.3.6.1.4.1.2011.5.25.118.1.8INTEGER {enable(1), disable(2)}read-writecurrent
hwSftpMaxUserNum
OBJECT-TYPE
The object specifies the max number of sftp user that sftp server supporting. The default is 5.
1.3.6.1.4.1.2011.5.25.118.1.9Integer32 (0..15)read-writecurrent
hwSftpOnLineUserNum
OBJECT-TYPE
The object specifies the number of sftp user that has been connected to sftp server currently.
1.3.6.1.4.1.2011.5.25.118.1.10Integer32read-onlycurrent
hwSSHUserTable
OBJECT-TYPE
This table is used for querying and setting the information about SSH user.
1.3.6.1.4.1.2011.5.25.118.1.11not-accessiblecurrent
hwSSHUserEntry
OBJECT-TYPE
This table is used for querying and setting the information about SSH user. The index of this entry is hwSSHUserIndex.
1.3.6.1.4.1.2011.5.25.118.1.11.1not-accessiblecurrent
hwSSHUserIndex
OBJECT-TYPE
The object specifies the index of hwSSHUserTable.
1.3.6.1.4.1.2011.5.25.118.1.11.1.1Integer32 (1..200)not-accessiblecurrent
hwSSHUserName
OBJECT-TYPE
The object specifies the name of a SSH user. The maximum length of the node is 255.
1.3.6.1.4.1.2011.5.25.118.1.11.1.2OCTET STRING (SIZE(1..255))read-createcurrent
hwSSHUserAssignKey
OBJECT-TYPE
The object specifies is a peer public key for a SSH user. This peer public key on the SSH server must exist and associate with hwRSAPublicKeyName.
1.3.6.1.4.1.2011.5.25.118.1.11.1.3OCTET STRING (SIZE(0..64))read-createcurrent
hwSSHUserAuthType
OBJECT-TYPE
The object specifies the authentication type of SSH user. The default authentication type is authPASSWORD. Options: 1. authNULL(1) -No authenticate. 2. authPASSWORD(2) -Password authentication. 3. authRSA(3) -RSA key authentication. 4. authRSAorPASSWORD(4) -Password or RSA key authentication. 5. authRSAandPASSWORD(5) -Password and RSA key authentication. 6. authDSA(6), -DSA key authentication. 7. authDSAandPASSWORD(7), -Password or DSA key authentication. 8. authAny(8), -Any authentication. 9. authECC(9), -ECC key authentication. 10.authECCandPASSWORD(10) -Password and ECC key authentication.
1.3.6.1.4.1.2011.5.25.118.1.11.1.4INTEGER {authNULL(1), authPASSWORD(2), authRSA(3), authRSAorPASSWORD(4), authRSAandPASSWORD(5), authDSA(6), authDSAandPASSWORD(7), authAny(8), authECC(9), authECCandPASSWORD(10)}read-createcurrent
hwSSHUserServiceType
OBJECT-TYPE
The object specifies the service type of SSH user. Options: 1. servicetypeNULL(1) -default service type. 2. servicetypeSTELNET(2) -The service type of the SSH user is STELNET. 3. servicetypeSFTP(3) -The service type of the SSH user is SFTP. 4. servicetypeALL(4) -The service type of the SSH user is all. 5. servicetypeSNetConf(5), -The service type of the SSH user is SNetConf. 6. servicetypeSftpSNetConf(6), -The service type of the SSH user is Sftp and SNetConf. 7. servicetypeSTelnetSftp(7), -The service type of the SSH user is STelnet and Sftp. 8. servicetypeSTelnetSNetConf(8) -The service type of the SSH user is STelnet and SNetConf.
1.3.6.1.4.1.2011.5.25.118.1.11.1.5INTEGER {servicetypeNULL(1), servicetypeSTELNET(2), servicetypeSFTP(3), servicetypeALL(4), servicetypeSNetConf(5), servicetypeSftpSNetConf(6), servicetypeSTelnetSftp(7), servicetypeSTelnetSNetConf(8)}read-createcurrent
hwSSHUserSftpDirectory
OBJECT-TYPE
The object specifies the working directory for the sftp user. The total length of absolute path is 128,the length of single directory is 128.
1.3.6.1.4.1.2011.5.25.118.1.11.1.6OCTET STRING (SIZE(0..255))read-createcurrent
hwSSHUserAuthorizationCMD
OBJECT-TYPE
The object specifies the authorization type of SSH user. When authorizationAAA is specified, the SSH user will be authorizated by HWTACACS server. The default authorization is authorizationNULL, indicating SSH user doesn't need to be authorizated by HWTACACS server. Options: 1.authorizationNULL(1)-The default authorization is authorizationNULL,indicating SSH user doesn't need to be authorizated by HWTACACS server. 2.authorizationAAA(2) -When authorizationAAA is specified,the SSH user will be authorizated by HWTACACS server.
1.3.6.1.4.1.2011.5.25.118.1.11.1.7INTEGER {authorizationNULL(1), authorizationAAA(2)}read-createcurrent
hwSSHUserRowStatus
OBJECT-TYPE
The object specifies the status of this entry. When the status is active(1), hwSSHUserAssignKey, hwSSHUserAuthType, hwSSHUserServiceType, hwSSHUserSftpDirectory, and hwSSHUserAuthorizationCMD's value in the entry are allowed to be modified.
1.3.6.1.4.1.2011.5.25.118.1.11.1.8RowStatusread-createcurrent
hwSSHUserAssignKeyType
OBJECT-TYPE
The object specifies the public key type of SSH user.
1.3.6.1.4.1.2011.5.25.118.1.11.1.9INTEGER {keyTypeNULL(0), keyTypeRSA(1), keyTypeDSA(2), keyTypeECC(3)}read-createcurrent
hwSSHServerSessionTable
OBJECT-TYPE
The object shows current session information of the SSH server which includes username, version information, retry times of online users currently. The index of this table is hwSSHSessionIndex.
1.3.6.1.4.1.2011.5.25.118.1.12not-accessiblecurrent
hwSSHServerSessionEntry
OBJECT-TYPE
The object shows current session information of the SSH server which includes username, version information, retry times of online users currently. The index of this entry is hwSSHSessionIndex.
1.3.6.1.4.1.2011.5.25.118.1.12.1not-accessiblecurrent
hwSSHSessionIndex
OBJECT-TYPE
The object specifies the index of hwSSHServerSessionTable.
1.3.6.1.4.1.2011.5.25.118.1.12.1.1Integer32not-accessiblecurrent
hwSSHSessionUserName
OBJECT-TYPE
The object specifies the name of a SSH user, which has started a session.
1.3.6.1.4.1.2011.5.25.118.1.12.1.2DisplayStringread-onlycurrent
hwSSHSessionConnectType
OBJECT-TYPE
The object specifies the line number supports a connection of SSH user which is in connection with SSH server.
1.3.6.1.4.1.2011.5.25.118.1.12.1.3INTEGER {none(0), vty0(1), vty1(2), vty2(3), vty3(4), vty4(5), vty5(6), vty6(7), vty7(8), vty8(9), vty9(10), vty10(11), vty11(12), vty12(13), vty13(14), vty14(15), vty15(16), vty16(17), vty17(18), vty18(19), vty19(20), vty20(21)}read-onlycurrent
hwSSHSessionVer
OBJECT-TYPE
The object specifies the version information of a SSH user which is in connection with SSH server.
1.3.6.1.4.1.2011.5.25.118.1.12.1.4DisplayStringread-onlycurrent
hwSSHSessionState
OBJECT-TYPE
The object specifies the state of a SSH user which is in connection with SSH server. Options: 1.started(1)-indicates the state is start.
1.3.6.1.4.1.2011.5.25.118.1.12.1.5INTEGER {started(1)}read-onlycurrent
hwSSHSessionRetry
OBJECT-TYPE
The object specifies SSH user's retrying times in authentications.
1.3.6.1.4.1.2011.5.25.118.1.12.1.6Integer32 (0..5)read-onlycurrent
hwSSHSessionCtosCipher
OBJECT-TYPE
The object specifies the cipher of custom to server.
1.3.6.1.4.1.2011.5.25.118.1.12.1.7DisplayStringread-onlycurrent
hwSSHSessionStocCipher
OBJECT-TYPE
The object specifies the cipher of server to custom.
1.3.6.1.4.1.2011.5.25.118.1.12.1.8DisplayStringread-onlycurrent
hwSSHSessionCtosHmac
OBJECT-TYPE
The object specifies the hmac of custom to server.
1.3.6.1.4.1.2011.5.25.118.1.12.1.9DisplayStringread-onlycurrent
hwSSHSessionStocHmac
OBJECT-TYPE
The object specifies the hmac of server to custom.
1.3.6.1.4.1.2011.5.25.118.1.12.1.10DisplayStringread-onlycurrent
hwSSHSessionKex
OBJECT-TYPE
The object specifies the key exchange.
1.3.6.1.4.1.2011.5.25.118.1.12.1.11DisplayStringread-onlycurrent
hwSSHSessionAuthType
OBJECT-TYPE
The object specifies the authentication type of SSH session.
1.3.6.1.4.1.2011.5.25.118.1.12.1.12DisplayStringread-onlycurrent
hwSSHSessionServiceType
OBJECT-TYPE
The object specifies the service type of SSH session.
1.3.6.1.4.1.2011.5.25.118.1.12.1.13DisplayStringread-onlycurrent
hwSSHSessionKeyType
OBJECT-TYPE
The object specifies the public key type of SSH session.
1.3.6.1.4.1.2011.5.25.118.1.12.1.14INTEGER {keyTypeRSA(1), keyTypeDSA(2), keyTypeECC(3)}read-onlycurrent
hwSSHSessionConnectionIndex
OBJECT-TYPE
The object specifies the line number supports a connection of SSH user which is in connection with SSH(STelnet/Sftp/SNetConf) server.
1.3.6.1.4.1.2011.5.25.118.1.12.1.15Integer32read-onlycurrent
hwSSHSessionCtosCompress
OBJECT-TYPE
The object specifies the Compression algorithm of SSH client to server.
1.3.6.1.4.1.2011.5.25.118.1.12.1.16DisplayStringread-onlycurrent
hwSSHSessionStocCompress
OBJECT-TYPE
The object specifies the Compression algorithm of SSH Server to client.
1.3.6.1.4.1.2011.5.25.118.1.12.1.17DisplayStringread-onlycurrent
hwRSAPublicKeyTable
OBJECT-TYPE
A table of configuration about RSA Public Key. The index of this table is hwRSAPublicKeyName. hwRSAPublicKeyName is the name of RSA Public Key.
1.3.6.1.4.1.2011.5.25.118.1.13not-accessiblecurrent
hwRSAPublicKeyEntry
OBJECT-TYPE
A table of configuration about RSA Public Key. The index of this entry is hwRSAPublicKeyName. hwRSAPublicKeyName is the name of RSA Public Key.
1.3.6.1.4.1.2011.5.25.118.1.13.1not-accessiblecurrent
hwRSAPublicKeyName
OBJECT-TYPE
The object specifies the name of RSA Public Key.
1.3.6.1.4.1.2011.5.25.118.1.13.1.1OCTET STRING (SIZE(1..30))not-accessiblecurrent
hwRSAPublicKeyCode
OBJECT-TYPE
The object specifies is RSA Public Key Code that in the format of ber, the maximum length of the node is 2048. When the RSA public key is created, the index value is the name of the public key, which uses the ASCII code. The public key value must be generated through a tool. Firstly, use the PUTTYGEN.EXE tool to generate the matching public key and private key. Then, use the sshkey.exe tool to convert the generated public key to the required public key value.
1.3.6.1.4.1.2011.5.25.118.1.13.1.2OCTET STRING (SIZE(1..2048))read-createcurrent
hwRSAPublicKeyRowStatus
OBJECT-TYPE
The object specifies the status of this table entry. When the status is active(1), hwRSAPublicKeyName, hwRSAPublicKeyCode's value in the entry are allowed to be modified. createAndGo(4) is supplied to create a new instance of a conceptual row. destroy(6) is supplied to delete the instances associated with an existing conceptual row.
1.3.6.1.4.1.2011.5.25.118.1.13.1.3RowStatusread-createcurrent
hwRSAPublicKeyFingerprint
OBJECT-TYPE
The object specifies the fingerprint of RSA Public Key Code, that including the public key algorithm, length and fingerprint.
1.3.6.1.4.1.2011.5.25.118.1.13.1.4OCTET STRING (SIZE(0..60))read-onlycurrent
hwSNetConfMaxUserNum
OBJECT-TYPE
The object specifies the max number of SNetConf user that SNetConf Server supporting. The default is 5.
1.3.6.1.4.1.2011.5.25.118.1.14Integer32 (0..15)read-writecurrent
hwSNetConfServerEnable
OBJECT-TYPE
The object specifies whether the SSH SNetConf Server is enable. The default is disable(2).
1.3.6.1.4.1.2011.5.25.118.1.15INTEGER {enable(1), disable(2)}read-writecurrent
hwSSHKeepAliveEnable
OBJECT-TYPE
The object specifies whether the KeepAlive functionality on SSH Server is enable. The default is 1.
1.3.6.1.4.1.2011.5.25.118.1.16INTEGER {enable(1), disable(2)}read-writecurrent
hwSCPServerEnable
OBJECT-TYPE
The object specifies whether the SSH SCP Server is enable. The default is 2.
1.3.6.1.4.1.2011.5.25.118.1.17INTEGER {enable(1), disable(2)}read-writecurrent
hwSCPMaxUserNum
OBJECT-TYPE
The object specifies the max number of SCP user that SCP Server supporting. The default is 2.
1.3.6.1.4.1.2011.5.25.118.1.18Integer32 (0..5)read-writecurrent
hwSSHIPv4ServerPort
OBJECT-TYPE
The object specifies port number for SSH IPv4 server supporting. The default value is 22.
1.3.6.1.4.1.2011.5.25.118.1.19Unsigned32 (22 | 1025..65535)read-writecurrent
hwSSHIPv6ServerPort
OBJECT-TYPE
The object specifies port number for SSH IPv6 server supporting. The default value is 22.
1.3.6.1.4.1.2011.5.25.118.1.20Unsigned32 (22 | 1025..65535)read-writecurrent
hwStelnetIPv4ServerEnable
OBJECT-TYPE
The object specifies whether the SSH stelnet IPv4 server is enable. Options: 1. enable(1) -The SSH stelnet IPv4 server is enable. 2. disable(2)-The SSH stelnet IPv4 server is disable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.21INTEGER {enable(1), disable(2)}read-writecurrent
hwStelnetIPv6ServerEnable
OBJECT-TYPE
The object specifies whether the SSH stelnet IPv6 server is enable. Options: 1. enable(1) -The stelnet IPv6 server is enable. 2. disable(2)-The stelnet IPv6 server is disable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.22INTEGER {enable(1), disable(2)}read-writecurrent
hwSftpIPv4ServerEnable
OBJECT-TYPE
The object specifies whether the sftp IPv4 server is enable. Options: 1.enable(1) -The sftp IPv4 server is enable 2.disable(2)-The sftp IPv4 server is disable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.23INTEGER {enable(1), disable(2)}read-writecurrent
hwSftpIPv6ServerEnable
OBJECT-TYPE
The object specifies whether the sftp IPv6 server is enable. Options: 1.enable(1) -the sftp IPv6 server is enable. 2.disable(2)-the sftp IPv6 server is disable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.24INTEGER {enable(1), disable(2)}read-writecurrent
hwSCPIPv4ServerEnable
OBJECT-TYPE
The object specifies whether the SCP IPv4 Server is enable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.25INTEGER {enable(1), disable(2)}read-writecurrent
hwSCPIPv6ServerEnable
OBJECT-TYPE
The object specifies whether the SCP IPv6 Server is enable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.26INTEGER {enable(1), disable(2)}read-writecurrent
hwSNetConfIPv4ServerEnable
OBJECT-TYPE
The object specifies whether the SSH SNetConf IPv4 server is enable. Options: 1.enable(1) -the SSH SNetConf IPv4 server is enable. 2.disable(2)-the SSH SNetConf IPv4 server is disable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.27INTEGER {enable(1), disable(2)}read-writecurrent
hwSNetConfIPv6ServerEnable
OBJECT-TYPE
The object specifies whether the SSH SNetConf IPv6 server is enable. Options: 1. enable(1) -The SSH SNetConf IPv6 server is enable. 2. disable(2)-The SSH SNetConf IPv6 server is disable. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.1.28INTEGER {enable(1), disable(2)}read-writecurrent
hwSSHClient
OBJECT-IDENTITY
1.3.6.1.4.1.2011.5.25.118.2
hwSSHFirstTimeAuthEnable
OBJECT-TYPE
The object specifies whether the SSH client supports first-time-authentication. Options: 1.enable(1) -indicates the SSH client supports first-time-authentication. 2.disable(2)-indicates the SSH client does not support first-time-authentication. The default value is disable.
1.3.6.1.4.1.2011.5.25.118.2.1INTEGER {enable(1), disable(2)}read-writecurrent
hwSSHServerInfoTable
OBJECT-TYPE
A table of configuration about the relation between the SSH server and the rsa peerkey.
1.3.6.1.4.1.2011.5.25.118.2.2not-accessiblecurrent
hwSSHServerInfoEntry
OBJECT-TYPE
A table of configuration about the relation between the SSH server and the rsa peerkey. The index of this entry is hwSSHServerIndex.
1.3.6.1.4.1.2011.5.25.118.2.2.1not-accessiblecurrent
hwSSHServerIndex
OBJECT-TYPE
The object specifies the index of hwSSHServerInfoTable.
1.3.6.1.4.1.2011.5.25.118.2.2.1.1Integer32 (1..20)not-accessiblecurrent
hwSSHServerName
OBJECT-TYPE
The object specifies the name of a SSH server.
1.3.6.1.4.1.2011.5.25.118.2.2.1.2OCTET STRING (SIZE(1..255))read-createcurrent
hwSSHServerAssignKey
OBJECT-TYPE
The object specifies a peer public key for a SSH server. This peer public key must exist.
1.3.6.1.4.1.2011.5.25.118.2.2.1.3OCTET STRING (SIZE(0..64))read-createcurrent
hwSSHServerRowStatus
OBJECT-TYPE
The object specifies the status of this entry. When the status is active, hwSSHServerAssignKey's value in the entry is allowed to be modified.
1.3.6.1.4.1.2011.5.25.118.2.2.1.4RowStatusread-createcurrent
hwSSHServerAssignDSAKey
OBJECT-TYPE
The object specifies a DSA peer public key for a SSH server.This peer public key must exist.
1.3.6.1.4.1.2011.5.25.118.2.2.1.5OCTET STRING (SIZE(0..64))read-createcurrent
hwSSHServerAssignECCKey
OBJECT-TYPE
The object specifies a ECC peer public key for a SSH server.This peer public key must exist.
1.3.6.1.4.1.2011.5.25.118.2.2.1.6OCTET STRING (SIZE(0..64))read-createcurrent
hwSSHKeepAliveInterval
OBJECT-TYPE
The object specifies KeepAlive Timeout interval on SSH Client. The default is 0. 0 specify no KeepAlive packet should be sent to Server.
1.3.6.1.4.1.2011.5.25.118.2.3Integer32 (0..3600)read-writecurrent
hwSSHKeepAliveMaxCount
OBJECT-TYPE
The object specifies maximum KeepAlive packet to send to SSH Server before disconnect. The default is 3.
1.3.6.1.4.1.2011.5.25.118.2.4Integer32 (1..30)read-writecurrent
hwSSHNotifications
OBJECT-IDENTITY
1.3.6.1.4.1.2011.5.25.118.3
hwSSHMIBConformance
OBJECT-IDENTITY
1.3.6.1.4.1.2011.5.25.118.4
hwSSHMIBCompliances
OBJECT-IDENTITY
1.3.6.1.4.1.2011.5.25.118.4.1
hwSSHMIBGroups
OBJECT-IDENTITY
1.3.6.1.4.1.2011.5.25.118.4.2
hwRSALocalKeyTable
OBJECT-IDENTITY
1.3.6.1.4.1.2011.5.25.118.5
hwRSALocalHostPublicKeyCode
OBJECT-TYPE
The object specifies the local host RSA Public Key Code in the format of ber.
1.3.6.1.4.1.2011.5.25.118.5.1OCTET STRING (SIZE(0..2048))read-onlycurrent
hwRSALocalHostPublicKeyFingerprint
OBJECT-TYPE
The object specifies the fingerprint of the local host RSA Public Key Code, that including the public key algorithm, length and fingerprint.
1.3.6.1.4.1.2011.5.25.118.5.2OCTET STRING (SIZE(0..60))read-onlycurrent
hwRSALocalServerPublicKeyCode
OBJECT-TYPE
The object specifies the local server RSA Public Key Code in the format of ber.
1.3.6.1.4.1.2011.5.25.118.5.3OCTET STRING (SIZE(0..2048))read-onlycurrent
hwRSALocalServerPublicKeyFingerprint
OBJECT-TYPE
The object specifies the fingerprint of the local server RSA Public Key Code, that including the public key algorithm, length and fingerprint.
1.3.6.1.4.1.2011.5.25.118.5.4OCTET STRING (SIZE(0..60))read-onlycurrent

Notifications

NameOIDStatus
hwSSHSftpUserNumExceedMax
NOTIFICATION-TYPE
This notification was sent when the total number of sftp users requesting sftp service exceeds max user number configured.
1.3.6.1.4.1.2011.5.25.118.3.1current

Conformance

NameOIDStatus
hwSSHMIBCompliance
MODULE-COMPLIANCE
The compliance statement for systems supporting the HUAWEI-SSH-MIB.
1.3.6.1.4.1.2011.5.25.118.4.1.1current
hwSSHServerGroup
OBJECT-GROUP
The SSH server attribute group.
1.3.6.1.4.1.2011.5.25.118.4.2.1current
hwSSHUserGroup
OBJECT-GROUP
The SSH user's group.
1.3.6.1.4.1.2011.5.25.118.4.2.2current
hwSSHServerSessionGroup
OBJECT-GROUP
The SSH server's session group.
1.3.6.1.4.1.2011.5.25.118.4.2.3current
hwSSHClientGroup
OBJECT-GROUP
The SSH client's attribute group.
1.3.6.1.4.1.2011.5.25.118.4.2.4current
hwSSHServerInfoGroup
OBJECT-GROUP
The SSH serverInfo's group.
1.3.6.1.4.1.2011.5.25.118.4.2.5current
hwSSHNotificationGroup
NOTIFICATION-GROUP
The SSH Notification group.
1.3.6.1.4.1.2011.5.25.118.4.2.6current