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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
-- =================================================================
-- Copyright (C) 2008 by HUAWEI TECHNOLOGIES. All rights reserved
--
-- Description: CE Ping MIB.
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 zhuxiao 2008.10.16,publish
--
--
-- =================================================================
HUAWEI-CE-PING-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
OBJECT-GROUP
FROM SNMPv2-CONF
mib-2, IpAddress, Integer32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
MacAddress, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC;
hwCePing MODULE-IDENTITY
LAST-UPDATED "200810161855Z" -- October 16, 2008 at 18:55 GMT
ORGANIZATION
"Huawei Technologies Co., Ltd."
CONTACT-INFO
"R&D BeiJing, Huawei Technologies co.,Ltd.
Huawei Bld.,NO.3 Xinxi Rd.,
Shang-Di Information Industry Base,
Hai-Dian District Beijing P.R. China
Zip:100085
Http://www.huawei.com
E-mail:support@huawei.com"
DESCRIPTION
"HUAWEI VPLS quality detect funcion."
::= { hwDatacomm 175 }
--
-- Node definitions
--
hwCePingTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCePingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of Ce Ping."
::= { hwCePing 1 }
hwCePingEntry OBJECT-TYPE
SYNTAX HwCePingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hwCePingTable."
INDEX { hwCePingIndex }
::= { hwCePingTable 1 }
HwCePingEntry ::=
SEQUENCE {
hwCePingIndex
Integer32,
hwCePingTargetAddress
IpAddress,
hwCePingSourceAddress
IpAddress,
hwCePingVsiName
OCTET STRING,
hwCePingInterval
Integer32,
hwCePingCount
Integer32,
hwCePingRowStatus
RowStatus
}
hwCePingIndex OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of hwCePingTable,it is always 1."
::= { hwCePingEntry 1 }
hwCePingTargetAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the IP address to be used as the destination."
::= { hwCePingEntry 2 }
hwCePingSourceAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specify an unused IP address in the same network that is associated with the VPLS."
::= { hwCePingEntry 3 }
hwCePingVsiName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VSI name that is uesd by the operation."
::= { hwCePingEntry 4 }
hwCePingInterval OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This value represents the inter-packet delay between packets and is in seconds."
::= { hwCePingEntry 5 }
hwCePingCount OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This value represents the number of packets that need to be transmitted."
::= { hwCePingEntry 6 }
hwCePingRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The operating state of the row."
::= { hwCePingEntry 51 }
hwCePingResultTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCePingResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of CE Ping result."
::= { hwCePing 2 }
hwCePingResultEntry OBJECT-TYPE
SYNTAX HwCePingResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hwCePingResultTable."
INDEX { hwCePingIndex }
::= { hwCePingResultTable 1 }
HwCePingResultEntry ::=
SEQUENCE {
hwCePingResultOperStatus
INTEGER,
hwCePingResultMac
MacAddress
}
hwCePingResultOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
sucessful(1),
inProcess(2),
timeout(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reflects the operational state of a hwCePingEntry:
sucessful(1) - Test is sucessful.
inProcess(2) - Test is in process.
timeout(3) - Test is timeout."
::= { hwCePingResultEntry 1 }
hwCePingResultMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Mac that is detected by the test."
::= { hwCePingResultEntry 2 }
hwCePingGroup OBJECT IDENTIFIER ::= { hwCePing 3 }
hwCePingCtrlGroup OBJECT-GROUP
OBJECTS { hwCePingTargetAddress, hwCePingSourceAddress, hwCePingVsiName, hwCePingInterval, hwCePingCount,
hwCePingRowStatus }
STATUS current
DESCRIPTION
"Description."
::= { hwCePingGroup 1 }
hwCePingResultGroup OBJECT-GROUP
OBJECTS { hwCePingResultOperStatus, hwCePingResultMac }
STATUS current
DESCRIPTION
"Description."
::= { hwCePingGroup 2 }
END
--
-- HUAWEI-CE-PING-MIB.mib
--
|