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
|
Axos-Trap-MIB DEFINITIONS ::= BEGIN
IMPORTS
NOTIFICATION-TYPE, IpAddress, MODULE-IDENTITY, OBJECT-TYPE, Integer32
FROM SNMPv2-SMI
axosAlarmIndex,axosAlarmName,axosAlarmType,axosAlarmCategory,
axosAlarmInstanceId,axosAlarmSeverity,
axosAlarmServiceAffecting,axosAlarmAddress,
axosAlarmText,axosAlarmTimeStamp,axosAlarmTime,
axosAlarmAdditionalInfo,axosEventAdditionalInfo1,
axosEventAdditionalInfo2,axosEventAdditionalInfo3,
axosEventAdditionalInfo4,axosEventAdditionalInfo5,
axosEventAdditionalInfo6,axosEventAdditionalInfo7
FROM AXOS-ALARM-MIB
axosModules
FROM CALIX-PRODUCT-MIB;
axosTrapModule MODULE-IDENTITY
LAST-UPDATED "201604250000Z"
ORGANIZATION "Calix"
CONTACT-INFO
" Calix Networks, Inc.
Postal: 1035 North McDowell Boulevard
Petaluma, CA 94954-1173
USA
Phone: +1 707 766 3000
Fax: +1 707 766 3100
E-mail: mib-info@calix.com"
DESCRIPTION
"Describes all the notifications related to Calix
AXOS products."
REVISION "201604250000Z"
DESCRIPTION
"Initial revision"
::= { axosModules 1 }
axosTrap OBJECT IDENTIFIER ::= { axosTrapModule 1}
axosNotificationObjects OBJECT IDENTIFIER ::= { axosTrap 1 }
axosNotifications OBJECT IDENTIFIER ::= { axosTrap 2 }
--Objects in the Notification.
axosTrapSequenceNo OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is an incrementing counter that shows
the sequence number of the last trap sent. This
may be used to indentify a missing trap. This
value is reset to 0 when the system is reset."
::= { axosNotificationObjects 1 }
--Traps
axosTrapAlarmRaised NOTIFICATION-TYPE
OBJECTS {
axosTrapSequenceNo,
axosAlarmIndex,
axosAlarmName,
axosAlarmType,
axosAlarmCategory,
axosAlarmInstanceId,
axosAlarmSeverity,
axosAlarmServiceAffecting,
axosAlarmAddress,
axosAlarmText,
axosAlarmTimeStamp,
axosAlarmTime,
axosAlarmAdditionalInfo
}
STATUS current
DESCRIPTION "axosTrapAlarmRaised is generated whenever an
alarm is raised"
::= { axosNotifications 1 }
axosTrapAlarmCleared NOTIFICATION-TYPE
OBJECTS {
axosTrapSequenceNo,
axosAlarmIndex,
axosAlarmName,
axosAlarmType,
axosAlarmCategory,
axosAlarmInstanceId,
axosAlarmSeverity,
axosAlarmServiceAffecting,
axosAlarmAddress,
axosAlarmText,
axosAlarmTimeStamp,
axosAlarmTime,
axosAlarmAdditionalInfo
}
STATUS current
DESCRIPTION "axosTrapAlarmRaised is generated whenever an
alarm is cleared"
::= { axosNotifications 2 }
axosTrapEvent NOTIFICATION-TYPE
OBJECTS {
axosTrapSequenceNo,
axosAlarmIndex,
axosAlarmName,
axosAlarmType,
axosAlarmCategory,
axosAlarmAddress,
axosAlarmText,
axosAlarmTimeStamp,
axosAlarmTime,
axosEventAdditionalInfo1,
axosEventAdditionalInfo2,
axosEventAdditionalInfo3,
axosEventAdditionalInfo4,
axosEventAdditionalInfo5,
axosEventAdditionalInfo6,
axosEventAdditionalInfo7
}
STATUS current
DESCRIPTION "axosTrapEvent is sent whenever an
event is generated"
::= { axosNotifications 3 }
END
|