initial commit; version 22.5.12042
This commit is contained in:
86
mibs/tplink/TPLINK-HTTP-MIB
Normal file
86
mibs/tplink/TPLINK-HTTP-MIB
Normal file
@ -0,0 +1,86 @@
|
||||
TPLINK-HTTP-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
OBJECT-TYPE,MODULE-IDENTITY
|
||||
FROM SNMPv2-SMI
|
||||
tplinkMgmt
|
||||
FROM TPLINK-MIB;
|
||||
|
||||
tplinkHttp MODULE-IDENTITY
|
||||
LAST-UPDATED "201501211030Z"
|
||||
ORGANIZATION "TPLINK"
|
||||
CONTACT-INFO "www.tplink.com"
|
||||
DESCRIPTION "Private MIB for HTTP configuration."
|
||||
REVISION "201501211030Z"
|
||||
DESCRIPTION "Initial version of this MIB module."
|
||||
::= { tplinkMgmt 51 }
|
||||
|
||||
tplinkHttpMIBObjects OBJECT IDENTIFIER ::= {tplinkHttp 1}
|
||||
tplinkHttpMIBNotifications OBJECT IDENTIFIER ::= {tplinkHttp 2}
|
||||
|
||||
httpEnable OBJECT-TYPE
|
||||
SYNTAX INTEGER{
|
||||
disable(0),
|
||||
enable(1)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"0. disable
|
||||
1. enable"
|
||||
::= { tplinkHttpMIBObjects 1 }
|
||||
|
||||
httpSessionTimeOut OBJECT-TYPE
|
||||
SYNTAX INTEGER (5..30)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "HTTP session timeout in minutes."
|
||||
::= { tplinkHttpMIBObjects 2 }
|
||||
|
||||
httpUserLimitEnable OBJECT-TYPE
|
||||
SYNTAX INTEGER{
|
||||
disable(0),
|
||||
enable(1)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"0. disable
|
||||
1.enable"
|
||||
::= { tplinkHttpMIBObjects 3 }
|
||||
|
||||
httpUserLimitMaxAdminNum OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "The max num of users as Admin. You should enable HTTP user number limiting before setting this object."
|
||||
::= { tplinkHttpMIBObjects 4 }
|
||||
|
||||
httpUserLimitMaxOperatorNum OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "The max num of users as Operator. You should enable HTTP user number limiting before setting this object."
|
||||
::= { tplinkHttpMIBObjects 5 }
|
||||
|
||||
httpUserLimitMaxPowerUserNum OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "The max num of users as Power User. You should enable HTTP user number limiting before setting this object."
|
||||
::= { tplinkHttpMIBObjects 6 }
|
||||
|
||||
httpUserLimitMaxUserNum OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "The max num of users as User. You should enable HTTP user number limiting before setting this object."
|
||||
::= { tplinkHttpMIBObjects 7 }
|
||||
|
||||
httpPort OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..65535)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "HTTP server port number."
|
||||
::= { tplinkHttpMIBObjects 8 }
|
||||
END
|
Reference in New Issue
Block a user