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
|
ExaltComm-TRAPS-MIB DEFINITIONS ::= BEGIN
IMPORTS OBJECT-TYPE, NOTIFICATION-TYPE, Integer32 FROM SNMPv2-SMI
productsMIBNotifications, locLinkState, modelName FROM ExaltComProducts;
notifs OBJECT IDENTIFIER ::= { productsMIBNotifications 1 }
notifObjects OBJECT IDENTIFIER ::= { productsMIBNotifications 2 }
locRadioStat OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This integer object reports for possible values:
0 for GREEN, 1 for YELLOW, 2 for RED, 3 for GRAY"
::= { notifObjects 1 }
remRadioStat OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This integer object reports for possible values:
0 for GREEN, 1 for YELLOW, 2 for RED, 3 for GRAY"
::= { notifObjects 2 }
locRSLStat OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This integer object reports for possible values:
1 for high, 2 for low, 3 for normal"
::= { notifObjects 3 }
locTempStat OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This integer object reports for possible values:
1 for high, 2 for low, 3 for normal"
::= { notifObjects 4 }
locRSLStatVert OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This integer object reports for possible values:
1 for high, 2 for low, 3 for normal"
::= { notifObjects 5 }
locEthWtmkHitDurationETH1 OBJECT-TYPE
SYNTAX Integer32 (0..1440)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Reports number of minutes passed since previons notification of Ethernet Utilization above watermark (ETH1)"
::= { notifObjects 6 }
locEthWtmkHitDurationETH2 OBJECT-TYPE
SYNTAX Integer32 (0..1440)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Reports number of minutes passed since previons notification of Ethernet Utilization above watermark (ETH2)"
::= { notifObjects 7 }
locEthWtmkHitDurationETH3 OBJECT-TYPE
SYNTAX Integer32 (0..1440)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Reports number of minutes passed since previons notification of Ethernet Utilization above watermark (ETH3)"
::= { notifObjects 8 }
locEthWtmkHitDurationETH4 OBJECT-TYPE
SYNTAX Integer32 (0..1440)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Reports number of minutes passed since previons notification of Ethernet Utilization above watermark (ETH4)"
::= { notifObjects 9 }
locRSLStatHoriz OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This integer object reports for possible values: 1 for high, 2 for low, 3 for normal"
::= { notifObjects 10 }
cold-start-notif NOTIFICATION-TYPE
OBJECTS { modelName }
STATUS current
DESCRIPTION "cold start Trap"
::= { notifs 1 }
radio-syn-alm-notif NOTIFICATION-TYPE
OBJECTS { locLinkState }
STATUS current
DESCRIPTION "Local Link State Trap"
::= { notifs 2 }
loc-radio-stat-notif NOTIFICATION-TYPE
OBJECTS { locRadioStat }
STATUS current
DESCRIPTION "Local Radio Status Trap"
::= { notifs 3 }
rem-radio-stat-notif NOTIFICATION-TYPE
OBJECTS { remRadioStat }
STATUS current
DESCRIPTION "Remote Radio Status Trap"
::= { notifs 4 }
loc-rsl-stat-horiz-notif NOTIFICATION-TYPE
OBJECTS { locRSLStatHoriz }
STATUS current
DESCRIPTION "Local Horizontal RSL Event Trap"
::= { notifs 5 }
loc-temp-stat-notif NOTIFICATION-TYPE
OBJECTS { locTempStat }
STATUS current
DESCRIPTION "Local Temperature Event Trap"
::= { notifs 6 }
loc-rsl-stat-vert-notif NOTIFICATION-TYPE
OBJECTS { locRSLStatVert }
STATUS current
DESCRIPTION "Local Vertical RSL Event Trap"
::= { notifs 7 }
chan-syn-alm-v-notif NOTIFICATION-TYPE
OBJECTS { locLinkState }
STATUS current
DESCRIPTION "Local Vertical Link State Trap"
::= { notifs 8 }
chan-syn-alm-h-notif NOTIFICATION-TYPE
OBJECTS { locLinkState }
STATUS current
DESCRIPTION "Local Horizontal Link State Trap"
::= { notifs 9 }
loc-rsl-stat-notif NOTIFICATION-TYPE
OBJECTS { locRSLStat }
STATUS current
DESCRIPTION "Local RSL Event Trap"
::= { notifs 10 }
eth-watermark-hit-duration-notif NOTIFICATION-TYPE
OBJECTS { locEthWtmkHitDurationETH1, locEthWtmkHitDurationETH2, locEthWtmkHitDurationETH3 }
STATUS current
DESCRIPTION "Ethernet Utilization above watermark minutes Trap"
::= { notifs 11 }
END
|