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
|
-- ==================================================================
-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: HUAWEI-EVC-MIB provides information about EVC
-- Reference:
-- Version: V1.01
-- History:
-- <author>, <date>, <contents>
-- HUAWEI 2014-09-011 EVC private MIB
-- ==================================================================
-- ==================================================================
--
-- Variables and types are imported
--
-- ==================================================================
HUAWEI-EVC-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI;
-- September 11, 2014 at 16:55 GMT
hwEVC MODULE-IDENTITY
LAST-UPDATED "201606170918Z" -- September 11, 2014 at 16:55 GMT
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"The EVC MIB module is defined to manage the EVC configuration under system or bride-domain view."
REVISION "201606170918Z" -- September 11, 2014 at 16:55 GMT
DESCRIPTION
"modify the range of Bridge-domain ."
REVISION "201409111655Z" -- September 11, 2014 at 16:55 GMT
DESCRIPTION
"The initial revision of this MIB module."
::= { hwDatacomm 336 }
-- Node definitions
hwEVCMngObjects OBJECT IDENTIFIER ::= { hwEVC 1 }
hwBDStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwBDStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hwBDStatTable used to statistic total number of the inbound and outbound packets of bridge-domains."
::= { hwEVCMngObjects 1 }
hwBDStatEntry OBJECT-TYPE
SYNTAX HwBDStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hwBDStatTable."
INDEX { hwBDStatBDID}
::= { hwBDStatTable 1 }
HwBDStatEntry ::=
SEQUENCE {
hwBDStatBDID
Unsigned32,
hwBDStatInboundPackets
Counter64,
hwBDStatOutboundPackets
Counter64,
hwBDStatInboundBytes
Counter64,
hwBDStatOutboundBytes
Counter64
}
hwBDStatBDID OBJECT-TYPE
SYNTAX Unsigned32 (1..16777215)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Bridge-domain id."
::= { hwBDStatEntry 1 }
hwBDStatInboundPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Inbound packets."
::= { hwBDStatEntry 2 }
hwBDStatOutboundPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Outbound packets."
::= { hwBDStatEntry 3 }
hwBDStatInboundBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Inbound bytes."
::= { hwBDStatEntry 4 }
hwBDStatOutboundBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Outbound bytes."
::= { hwBDStatEntry 5 }
hwEVCConformance OBJECT IDENTIFIER ::= { hwEVC 2 }
hwEVCCompliances OBJECT IDENTIFIER ::= { hwEVCConformance 1 }
hwEVCCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"This is the EVC compliance."
MODULE -- this module
MANDATORY-GROUPS { hwBDStatGroup }
::= { hwEVCCompliances 1 }
hwEVCGroups OBJECT IDENTIFIER ::= { hwEVCConformance 2 }
hwBDStatGroup OBJECT-GROUP
OBJECTS { hwBDStatInboundPackets, hwBDStatOutboundPackets, hwBDStatInboundBytes, hwBDStatOutboundBytes}
STATUS current
DESCRIPTION
"This is the bridge-domain statistics group."
::= { hwEVCGroups 1 }
END
|