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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
TPLINK-SYSINFO-MIB DEFINITIONS ::= BEGIN
IMPORTS
TimeStamp
FROM SNMPv2-TC
OBJECT-TYPE
FROM SNMPv2-SMI
tplinkMgmt
FROM TPLINK-MIB
ifIndex
FROM RFC1213-MIB;
tplinkSysInfoMIB MODULE-IDENTITY
LAST-UPDATED "201211290000Z"
ORGANIZATION "TP-LINK"
CONTACT-INFO "www.tplink.com"
DESCRIPTION
"This MIB module contain a collection of managed objects
that get infomation of the system."
REVISION "201211290000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { tplinkMgmt 1 }
tplinkSysInfoMIBObjects OBJECT IDENTIFIER ::= {tplinkSysInfoMIB 1}
tplinkSysInfoNotifications OBJECT IDENTIFIER ::= {tplinkSysInfoMIB 2}
tpSysInfoDescription OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual description of the entity. This value
should include the full name and version
identification of the system's hardware type,
software operating-system, and networking
software. It is current that this only contain
printable ASCII characters."
::= { tplinkSysInfoMIBObjects 1 }
tpSysInfoHostName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An administratively-assigned name for this
managed node. By convention, this is the node's
fully-qualified domain name.range:17 byte."
::= { tplinkSysInfoMIBObjects 2 }
tpSysInfoLocation OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The physical location of this node (e.g.,
`telephone closet, 3rd floor'),range:32 byte."
::= { tplinkSysInfoMIBObjects 3 }
tpSysInfoContact OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The textual identification of the contact person
for this managed node, together with information
on how to contact this person.range:32 byte."
::= { tplinkSysInfoMIBObjects 4 }
tpSysInfoHwVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hardWare version of the product."
::= { tplinkSysInfoMIBObjects 5 }
tpSysInfoSwVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The softWare version of the product."
::= { tplinkSysInfoMIBObjects 6 }
tpSysInfoMacAddr OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of the product."
::= { tplinkSysInfoMIBObjects 7 }
tpSysInfoSerialNum OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Serial number of the product."
::= { tplinkSysInfoMIBObjects 8 }
tpSysInfoUpTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in hundredths of a second) since the
network management portion of the system was last
re-initialized."
::= { tplinkSysInfoMIBObjects 9 }
tpSysInfoSerialPort OBJECT-TYPE
SYNTAX INTEGER{
9600(0), --config the baud rate as 9600
19200(1), --config the baud rate as 19200
38400(2), --config the baud rate as 38400
57600(3), --config the baud rate as 57600
115200(4) --config the baud rate as 115200
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"config the baud rate of the system"
::= { tplinkSysInfoMIBObjects 10}
tpSysInfoPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF TPSYSINFOPORTENTRY
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port Utilization."
::= { tplinkSysInfoMIBObjects 11 }
tpSysInfoPortEntry OBJECT-TYPE
SYNTAX TPSYSINFOPORTENTRY
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains of the information of port Utilization."
INDEX { ifIndex }
::= { tpSysInfoPortTable 1 }
TPSYSINFOPORTENTRY ::=
SEQUENCE {
tpSysInfoPortRxUtilization
OCTET STRING,
tpSysInfoPortTxUtilization
OCTET STRING
}
tpSysInfoPortRxUtilization OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Displays the port Tx Utilization."
::= { tpSysInfoPortEntry 1 }
tpSysInfoPortTxUtilization OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Displays the port Tx Utilization."
::= { tpSysInfoPortEntry 2 }
tpSysInfoLed OBJECT-TYPE
SYNTAX INTEGER{
off(0), --LED off
on(1), --LED on
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Config the switch LED status."
::= { tplinkSysInfoMIBObjects 12}
END
|