forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-BBSM-MIB.mib
215 lines (183 loc) · 7.16 KB
/
CISCO-BBSM-MIB.mib
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
-- *****************************************************************
-- CISCO-BBSM-MIB.my: Cisco BBSM MIB file
--
-- April 3 2004, Ting Wu
--
-- Copyright (c) 2004 by cisco Systems, Inc.
-- All rights reserved.
--
-- *****************************************************************
CISCO-BBSM-MIB DEFINITIONS ::= BEGIN
IMPORTS
NOTIFICATION-TYPE,
MODULE-IDENTITY,
OBJECT-TYPE,
Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
DateAndTime
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoBbsmMIB MODULE-IDENTITY
LAST-UPDATED "200404030000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"This mib is designed to send BBSM specific
notifications. There are variables that contain detail data
that are bind to a notification. The SNMP Manager that
receives the notifications should look at the binding
variables for further details of the notification data.
BBSM stands for Building Broadband Service Manager. It is a
software-based service platform that enables customers to
create, market, and operate broadband access services,
such as high-speed Internet access with plug-and-play,
multiple authentication and billing options and Web-based
management, reporting, and configuration."
REVISION "200404030000Z"
DESCRIPTION
"Initial revision of this MIB module."
::= { ciscoMgmt 358 }
--object definitions
ciscoBbsmNotifications OBJECT IDENTIFIER ::= { ciscoBbsmMIB 0 }
ciscoBbsmMIBObjects OBJECT IDENTIFIER ::= { ciscoBbsmMIB 1 }
ciscoBbsmEventInfo OBJECT IDENTIFIER ::= { ciscoBbsmMIBObjects 1}
cbbsmEventDescription OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The cbbsmEventDescription binds with notification.
It displays the description of an event that caused
a notification to be sent.
Examples of cbbsmEventDescription value would be
'Failed to connect to RADIUS server xx.yy.zz.aa' or
'Failed to connect to ICS server xx.yy.zz.aa'"
::= { ciscoBbsmEventInfo 1 }
cbbsmEventSource OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The cbbsmEventSource binds with a notification. It displays
the source of an event that caused the notification to be
sent. The cbbsmEventSource also binds with
cbbsmEventDescription.
Examples of cbbsmEventSource value would be
'BBSM_RADIUS' or
'BBSM_ICS' "
::= { ciscoBbsmEventInfo 2 }
cbbsmEventID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The cbbsmEventID binds with a notification. It displays
event ID of an event that caused the notification to be
sent. The cbbsmEventID also binds with
cbbsmEventDescription.
Examples of a cbbsmEventID would be 1, 2, ..."
::= { ciscoBbsmEventInfo 3 }
cbbsmEventType OBJECT-TYPE
SYNTAX INTEGER
{ error (1),
warning (2),
information (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The cbbsmEventType binds with the notification. It displays
the event type of an event that caused notification to be
sent. The cbbsmEventType also binds with
cbbsmEventDescription.
error(1) : An Error event indicates a significant problem,
such as loss of data or loss of functionality.
warning(2): A Warning event is not necessarily significant,
but may indicate a possible future problem.
information(3): An Information event describes the
successful operation of an application, driver, or service."
::= { ciscoBbsmEventInfo 4 }
cbbsmEventTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The cbbsmEventTime binds with the notification. It is a
date and time string that displays the time of the event
that caused notification to be sent."
::= { ciscoBbsmEventInfo 5 }
-- notification definitions
ciscoBbsmEvent NOTIFICATION-TYPE
OBJECTS {cbbsmEventDescription,
cbbsmEventSource,
cbbsmEventID,
cbbsmEventType,
cbbsmEventTime
}
STATUS current
DESCRIPTION
"Notification of a BBSM event. The details of the
event is binded in variables listed. These variables
are identical to the same event logged on the Microsoft
Event Viewer.
For example, if BBSM had problem connecting to RADIUS
server and SNMP Service on BBSM is configured to send
notifications, a notification of ciscoBbsmEvent will
be sent and binded variables will have following values
cbbsmEventDescription = 'Failed to connect to RADIUS server
xx.yy.zz.aa'
cbbsmEventSource = 'BBSM_RADIUS'
cbbsmEventID = '1'
cbbsmEventType = 2
"
::= { ciscoBbsmNotifications 1 }
-- conformance information
ciscoBbsmMIBConformance OBJECT IDENTIFIER ::= { ciscoBbsmMIB 2 }
ciscoBbsmMIBCompliances OBJECT IDENTIFIER
::= { ciscoBbsmMIBConformance 1 }
ciscoBbsmMIBGroups OBJECT IDENTIFIER
::= { ciscoBbsmMIBConformance 2 }
-- Compliance
ciscoBbsmMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Cisco BBSM MIB"
MODULE -- this module
MANDATORY-GROUPS { ciscoBbsmMIBGroup,
ciscoBbsmMIBNotificationGroup }
::= { ciscoBbsmMIBCompliances 1 }
-- Conformance
ciscoBbsmMIBGroup OBJECT-GROUP
OBJECTS {
cbbsmEventDescription,
cbbsmEventSource,
cbbsmEventID,
cbbsmEventType,
cbbsmEventTime }
STATUS current
DESCRIPTION
"A set of objects providing details of a event
to a Cisco agent."
::= { ciscoBbsmMIBGroups 1 }
ciscoBbsmMIBNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { ciscoBbsmEvent }
STATUS current
DESCRIPTION
"Set of notifications implemented in this module."
::= { ciscoBbsmMIBGroups 2 }
END