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
|
-- =================================================================
-- Copyright (C) 2014 by HUAWEI TECHNOLOGIES. All rights reserved
--
-- Description:HUAWEI VIRTUALPERCEPTION MIB
-- Reference:
-- Version: V1.11
-- ===========================================================
HUAWEI-VP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
EnabledStatus
FROM P-BRIDGE-MIB
ifIndex, ifName
FROM IF-MIB
DisplayString, RowStatus
FROM SNMPv2-TC
Integer32, MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
MacAddress
FROM SNMPv2-TC;
--
-- Module Identifier
--
hwVpMIB MODULE-IDENTITY
LAST-UPDATED "201407161350Z" -- July 16, 2014 at 13:50 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 HUAWEI-VP-MIB contains objects to
Manage configuration and Monitor running state
for virtual perception feature."
REVISION "201407161350Z"
DESCRIPTION "V1.11, modified the MAX-ACCESS of hwVpVmVlan, hwVpVmMac and hwVpVmProfileId."
::= { hwDatacomm 307 }
--
-- Objects Identifier
--
hwVpObjects OBJECT IDENTIFIER ::= { hwVpMIB 1 }
hwVpNotifications OBJECT IDENTIFIER ::= { hwVpMIB 2 }
hwVpConformance OBJECT IDENTIFIER ::= { hwVpMIB 3 }
-- TABLE: hwVpVmTable
hwVpVmTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwVpVmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of VM."
::= { hwVpObjects 1 }
hwVpVmEntry OBJECT-TYPE
SYNTAX HwVpVmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides information about VM entry."
INDEX { hwVpVmVlan, hwVpVmMac }
::= { hwVpVmTable 1 }
HwVpVmEntry ::=
SEQUENCE {
hwVpVmVlan
Integer32,
hwVpVmMac
MacAddress,
hwVpVmProfileId
DisplayString
}
--
-- Node definitions
--
hwVpVmVlan OBJECT-TYPE
SYNTAX Integer32 (0..4094)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the VLAN of VM."
::= { hwVpVmEntry 1 }
hwVpVmMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the MAC of VM."
::= { hwVpVmEntry 2 }
hwVpVmProfileId OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the profile ID of VM."
::= { hwVpVmEntry 3 }
--
-- Notification Identifier
--
hwVpVmDownloadProfileFault NOTIFICATION-TYPE
OBJECTS { hwVpVmVlan, hwVpVmMac, hwVpVmProfileId, ifIndex, ifName }
STATUS current
DESCRIPTION
"The alarm is reported when VM fail to download profile."
::= { hwVpNotifications 1 }
hwVpVmDownloadProfileFaultResume NOTIFICATION-TYPE
OBJECTS { hwVpVmVlan, hwVpVmMac, hwVpVmProfileId, ifIndex, ifName }
STATUS current
DESCRIPTION
"The event is reported when VM succeed in downloading profile."
::= { hwVpNotifications 2 }
hwVpVmAuthenticateFail NOTIFICATION-TYPE
OBJECTS { hwVpVmVlan, hwVpVmMac, hwVpVmProfileId, ifIndex, ifName }
STATUS current
DESCRIPTION
"The alarm is reported when VM fail to pass authentication."
::= { hwVpNotifications 3 }
hwVpVmDeliverAuthorInformationFail NOTIFICATION-TYPE
OBJECTS { hwVpVmVlan, hwVpVmMac, hwVpVmProfileId, ifIndex, ifName }
STATUS current
DESCRIPTION
"The alarm is reported when VM fail to deliver authorization information."
::= { hwVpNotifications 4 }
--
-- Conformance Identifier
--
hwVpCompliances OBJECT IDENTIFIER ::= { hwVpConformance 1 }
hwVpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"This is the virtual perception compliance."
MODULE -- this module
MANDATORY-GROUPS { hwVpObjectGroup, hwVpNotificationGroup }
::= { hwVpCompliances 1 }
hwVpGroups OBJECT IDENTIFIER ::= { hwVpConformance 2 }
hwVpObjectGroup OBJECT-GROUP
OBJECTS { hwVpVmMac, hwVpVmVlan, hwVpVmProfileId }
STATUS current
DESCRIPTION
"This is the virtual perception object group."
::= { hwVpGroups 1 }
hwVpNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwVpVmDownloadProfileFault, hwVpVmDownloadProfileFaultResume, hwVpVmAuthenticateFail, hwVpVmDeliverAuthorInformationFail }
STATUS current
DESCRIPTION
"This is the virtual perception notification group."
::= { hwVpGroups 2 }
END
|