blob: 9782fd434dd19148e9e7fe81cd0ddaba52a471af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
TPLINK-DDMMANAGE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
ifIndex
FROM RFC1213-MIB
DisplayString
FROM SNMPv2-TC
tplinkMgmt
FROM TPLINK-MIB;
tplinkDdmManageMIB MODULE-IDENTITY
LAST-UPDATED "200908270000Z"
ORGANIZATION "TPLINK"
CONTACT-INFO "www.tplink.com"
DESCRIPTION "Private MIB for DDM configuration."
REVISION "200908270000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { tplinkMgmt 96 }
tplinkDdmManageMIBObjects OBJECT IDENTIFIER ::= { tplinkDdmManageMIB 1 }
tplinkDdmManageNotifications OBJECT IDENTIFIER ::= { tplinkDdmManageMIB 2 }
tempExceedThreshold NOTIFICATION-TYPE
OBJECTS
{
ifIndex
}
STATUS current
DESCRIPTION
"A tempExceedThreshold notification is sent when the
value of temperature exceeds the threshold. "
::= { tplinkDdmManageNotifications 1 }
volExceedThreshold NOTIFICATION-TYPE
OBJECTS
{
ifIndex
}
STATUS current
DESCRIPTION
"A volExceedThreshold notification is sent when the
value of voltage exceeds the threshold. "
::= { tplinkDdmManageNotifications 2 }
biasCurExceedThreshold NOTIFICATION-TYPE
OBJECTS
{
ifIndex
}
STATUS current
DESCRIPTION
"A biasCurExceedThreshold notification is sent when the
value of bias current exceeds the threshold. "
::= { tplinkDdmManageNotifications 3 }
txPowExceedThreshold NOTIFICATION-TYPE
OBJECTS
{
ifIndex
}
STATUS current
DESCRIPTION
"A txPowExceedThreshold notification is sent when the
value of Tx power exceeds the threshold. "
::= { tplinkDdmManageNotifications 4 }
rxPowExceedThreshold NOTIFICATION-TYPE
OBJECTS
{
ifIndex
}
STATUS current
DESCRIPTION
"A rxPowExceedThreshold notification is sent when the
value of Rx power exceeds the threshold. "
::= { tplinkDdmManageNotifications 5 }
END
|