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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
|
--========================================================
--
-- MIB : IPO Avaya Inc.
--
-- Version : 2.00.25 04 July 2014
--
--========================================================
--
-- Copyright (c) 2003 - 2014 Avaya Inc.
-- All Rights Reserved.
--
--========================================================
IPO-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, Unsigned32, Integer32,
IpAddress
FROM SNMPv2-SMI
DateAndTime
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
sysDescr
FROM SNMPv2-MIB
ItuPerceivedSeverity
FROM ITU-ALARM-TC-MIB
ifIndex
FROM IF-MIB
mibs
FROM AVAYAGEN-MIB
;
ipoMIB MODULE-IDENTITY
LAST-UPDATED "201407040000Z" -- 04 July 2014
ORGANIZATION "Avaya Inc."
CONTACT-INFO
"Avaya Customer Services
Postal: Avaya, Inc.
211 Mt Airy Rd.
Basking Ridge, NJ 07920
USA
Tel: +1 908 953 6000
WWW: http://www.avaya.com"
DESCRIPTION
"Avaya IP Office MIBs OID tree.
This MIB module defines the root items for MIBs for
use with Avaya IP Office family of telephone switches."
REVISION "201407040000Z" -- 04 July 2014
DESCRIPTION
"Rev 2.00.25
Added new value serviceAMServerNotAvailable"
REVISION "201406250000Z" -- 25 June 2014
DESCRIPTION
"Rev 2.00.24
Added new value serviceCCRNotSupported"
REVISION "201406250000Z" -- 25 June 2014
DESCRIPTION
"Rev 2.00.23
Added new value serviceNonSelectAlarm"
REVISION "201406160000Z" -- 16 June 2014
DESCRIPTION
"Rev 2.00.22
Added new values serviceGeneralAlarm and serviceSystemInfo"
REVISION "201406040000Z" -- 04 June 2014
DESCRIPTION
"Rev 2.00.21
Added new value serviceIPDECTSystemError "
REVISION "201405230000Z" -- 23 May 2014
DESCRIPTION
"Rev 2.00.20
Added new value monitorLogStamped "
REVISION "201405080000Z" -- 08 May 2014
DESCRIPTION
"Rev 2.00.19
Added new values trunkSIPDNSInvalidConfig and trunkSIPDNSTransportError "
REVISION "201401060000Z" -- 06 January 2014
DESCRIPTION
"Rev 2.00.18
Added oneXPortal values for ipoGTEventAppEntity"
REVISION "201310080000Z" -- 08 October 2013
DESCRIPTION
"Rev 2.00.17
Added new values serviceSystemHardDriveAlarm and serviceAdditionalHardDriveAlarm "
REVISION "201308060000Z" -- 06 August 2013
DESCRIPTION
"Rev 2.00.16
Added new values of serviceACCSAlarm for
ipoGTEventReason object"
REVISION "201304241900Z" -- 24 April 2013
DESCRIPTION
"Rev 2.00.15
Added new values for ipoGTEventReason object
serviceCpuAlarm, serviceCpuIOAlarm, serviceMemoryAlarm"
REVISION "201304241518Z" -- 24 April 2013
DESCRIPTION
"Rev 2.00.14
Added new value of serviceLocalBackup for
ipoGTEventReason object"
REVISION "201211171511Z" -- 17 November 2012
DESCRIPTION
"Rev 2.00.13
Added new notification: ipoGenEmergencyCallSvcEvent
Added new value of serviceEmergencyCall to the ipoGTEventReason object."
REVISION "201202281300Z" -- 28 February 2012
DESCRIPTION
"Rev 2.00.12
Added new values for ipoGTEventReason object from
servicePortRangeExhausted to serviceWebservicesUWSError."
REVISION "201111012200Z" -- 1 November 2011
DESCRIPTION
"Rev 2.00.11
Added new values for ipoGTEventReason object from
servicePlannedMaintenance to serviceSslVpnServerReportedError."
REVISION "201109271130Z" -- 27 September 2011
DESCRIPTION
"Rev 2.00.10
Added new value of testAlarm for ipoGTEventReason object."
REVISION "201103151517Z" -- 15 March 2011
DESCRIPTION
"Rev 2.00.09
Added new value of securityError for
ipoGTEventReason object"
REVISION "201010131417Z" -- 13 October 2010
DESCRIPTION
"Rev 2.00.08
Added new value of serviceLicenseFileInvalid for
ipoGTEventReason object"
REVISION "201007121345Z" -- 12 July 2010
DESCRIPTION
"Rev 2.00.07
Introduced new notifications, see ipoGenSvcMiscNotificationsGroup
and new objects, see ipoGenSvcMiscNotificationObjectsGroup"
REVISION "200910190735Z" -- 19 October 2009
DESCRIPTION
"Rev 2.00.06
System Running Backup, Invalid Memory Card, No Licence Key Dongle
Notifications added. Corrections to MIB syntax for System
Shutdown Notification."
REVISION "200910091347Z" -- 09 October 2009
DESCRIPTION
"Rev 2.00.05
System shutdown Notification added."
REVISION "200909110950Z" -- 11 September 2009
DESCRIPTION
"Rev 2.00.04
QOS Monitoring Notification added."
REVISION "200909071620Z" -- 07 September 2009
DESCRIPTION
"Rev 2.00.03
smallBusinessContactCenter(3) value for
ipoGTEventAppEntity changed to customerCallReporter."
REVISION "200804281640Z" -- 28 April 2008
DESCRIPTION
"Rev 2.00.02
Added smallBusinessContactCenter(3) value to
ipoGTEventAppEntity."
REVISION "200804181450Z" -- 18 April 2008
DESCRIPTION
"Rev 2.00.01
Added traps related to Universal PRI licensing."
REVISION "200606290000Z" -- 29 June 2006
DESCRIPTION
"Rev 2.00.00
Traps/notifications revised to provide more information about
the entity and device concerned."
REVISION "200410060000Z" -- 06 October 2004
DESCRIPTION
"Rev 1.00.08
Corrected description of event severities for physical
entities."
REVISION "200408270000Z" -- 27 August 2004
DESCRIPTION
"Rev 1.00.07
Corrected mandatory groups after addition of SOG event
related objects and notifications."
REVISION "200408060000Z" -- 06 August 2004
DESCRIPTION
"Rev 1.00.06
Added SOG event related object and notifications."
REVISION "200407100000Z" -- 10 July 2004
DESCRIPTION
"Rev 1.00.05
Added application event related object and notifications.
Corrected description of ipoGenLKSCommsOperationalEvent."
REVISION "200405280000Z" -- 28 May 2004
DESCRIPTION
"Rev 1.00.04
Revised usage description for ipoGTEventSeverity."
REVISION "200403030000Z" -- 03 March 2004
DESCRIPTION
"Rev 1.00.03
Revised for external publication."
REVISION "200312150000Z" -- 15 December 2003
DESCRIPTION
"Rev 1.00.02
Added loopback object and notification."
REVISION "200311110000Z" -- 11 November 2003
DESCRIPTION
"Rev 1.00.01
Corrected ipoGTEventEntity MAX-ACCESS."
REVISION "200310100000Z" -- 10 October 2003
DESCRIPTION
"Rev 1.00.00
The first published version of this MIB module."
::= { mibs 2 }
-- sub-tree for IP Office wide objects and events irrespective of function
ipoGeneric OBJECT IDENTIFIER ::= { ipoMIB 1 }
-- sub-tree for IP Office functional MIBs
ipoGenMibs OBJECT IDENTIFIER ::= { ipoGeneric 1 }
-- sub-tree for IP Office wide traps/notifications
ipoGenTraps OBJECT IDENTIFIER ::= { ipoGeneric 2 }
-- sub-tree for IP Office wide conformance information
ipoGenConformance OBJECT IDENTIFIER ::= { ipoGeneric 3 }
--********************************************************************
-- IP Office wide traps/notifications
--********************************************************************
ipoGTEvents OBJECT IDENTIFIER ::= { ipoGenTraps 0 }
ipoGTObjects OBJECT IDENTIFIER ::= { ipoGenTraps 1 }
--
-- trap objects
--
ipoGTEventSeverity OBJECT-TYPE
SYNTAX INTEGER {
critical(1),
major(2),
minor(3)
}
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"Severity of the event that has occurred.
The event severity depends upon the type of
entity/notification that the operational state change event
relates to:
GenEntityEvents:
Type of physical Severity
entity
container critical
module major
port major
Known transient errors for entities have a severity of minor.
LKSCommsEvents:
Severity is major
GenLoopbackEvent:
Severity is major
GenAppEvents:
Severity depends on sub-event
Failure/Operational - severity is major
Event - severity depends on event condition
ipoGenSogEvents:
Severity depends on sub-event
HostFailure - severity is Major
ModeChange:
- Mode survivable: severity is Major
- Mode subTending: severity is Minor
PhoneChangeEvents:
Severity is minor
**NOTE: This object is deprecated and replaced by
ipoGTEventStdSeverity."
::= { ipoGTObjects 1 }
ipoGTEventDateTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Date and time of the occurence of the event."
::= { ipoGTObjects 2 }
ipoGTEventEntity OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A reference, by entPhysicalIndex value, to the
EntPhysicalEntry representing the physical entity that an
event is associated with in an entity MIB instantiation within
the IP Office agent."
::= { ipoGTObjects 3 }
ipoGTEventLoopbackStatus OBJECT-TYPE
SYNTAX Integer32 (1..127)
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"This variable represents the current state of the
loopback on the DS1 interface. It contains
information about loopbacks established by a
manager and remotely from the far end.
The ipoGTEventLoopbackStatus is a bit map represented as
a sum, therefore is can represent multiple
loopbacks simultaneously.
The various bit positions are:
1 noLoopback
2 nearEndPayloadLoopback
4 nearEndLineLoopback
8 nearEndOtherLoopback
16 nearEndInwardLoopback
32 farEndPayloadLoopback
64 farEndLineLoopback"
::= { ipoGTObjects 4 }
ipoGTEventAppEntity OBJECT-TYPE
SYNTAX INTEGER {
voiceMail(1),
deltaServer(2),
customerCallReporter(3),
oneXPortal(4)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IP Office application to which a notification/trap
relates."
::= { ipoGTObjects 5 }
ipoGTEventAppEvent OBJECT-TYPE
SYNTAX INTEGER {
storageFull(1), -- severity: Critical
storageNearlyFull(2), -- severity: Major
storageOkay(3), -- severity: Minor
backupCommunicationError(4), -- severity: Major
backupFileError(5), -- severity: Major
httpFailure(6), -- severity: Major
httpSslAcceptFailure(7), -- severity: Major
httpSslConnection(8), -- severity: Major
httpSslFailure(9), -- severity: Major
httpSslPortFailure(10), -- severity: Major
ignoringRequest(11), -- severity: Major
imapInitializationFailed(12), -- severity: Major
imapInvalidMsgNr(13), -- severity: Major
imapMailboxNotExist(14), -- severity: Major
imapMessageInvalid(15), -- severity: Major
imapMessageNotExist(16), -- severity: Major
imapMessageNrNotExist(17), -- severity: Major
imapMissingConnection(18), -- severity: Major
imapMissingSettings(19), -- severity: Major
imapNoLicence(20), -- severity: Major
imapNotConfigured(21), -- severity: Major
imapShiftConnection(22), -- severity: Major
mapiInitializationFailed(23), -- severity: Major
mapiMissingSettings(24), -- severity: Major
mapiConnectionFailed(25), -- severity: Major
mapiShiftConnection(26), -- severity: Major
licence(27), -- severity: Major
licenceDistributed(28), -- severity: Major
licenceExpired(29), -- severity: Major
licenceSOG(30), -- severity: Major
loginFailure(31), -- severity: Major
loginFailureInvalidMailbox(32), -- severity: Major
mailboxNotFound(33), -- severity: Major
makeLiveFileAccess(34), -- severity: Major
makeLiveMissingFile(35), -- severity: Major
offlineMakeLive(36), -- severity: Major
onexError(37), -- severity: Major
pbxConnectionLost(38), -- severity: Major
pbxIncompatibility(39), -- severity: Major
smgrSettingsError(40), -- severity: Major
smtpConnectionFailed(41), -- severity: Major
smtpConnectionTimeout(42), -- severity: Major
smtpError(43), -- severity: Major
smtpSecureConnectionFailed(44), -- severity: Major
smtpUnexpectedData(45), -- severity: Major
smtpUnsuportedData(46), -- severity: Major
socketAbortingError(47), -- severity: Major
socketBindError(48), -- severity: Major
socketClientDisconnectedError(49), -- severity: Major
socketConnectionError(50), -- severity: Major
socketNoresponseError(51), -- severity: Major
socketOptionError(52), -- severity: Major
socketReceiveError(53), -- severity: Major
socketRecvFailedError(54), -- severity: Major
socketSendFailedError(55), -- severity: Major
socketSelectError(56), -- severity: Major
socketTimedOutError(57), -- severity: Major
switchedToPrimary(58), -- severity: Major
switchedToSecondary(59), -- severity: Major
tcpAcceptError(60), -- severity: Major
tcpListenError(61), -- severity: Major
tcpSelectError(62), -- severity: Major
tcpError(63), -- severity: Major
testTimeExpired(64), -- severity: Major
tftpConnectionError(65), -- severity: Major
tftpMonitoringError(66), -- severity: Major
tftpReadingError(67), -- severity: Major
tftpReceivingError(68), -- severity: Major
tftpWrittingError(69), -- severity: Major
tooManyClients(70), -- severity: Major
updateEerror(71), -- severity: Major
updateSuccess(72), -- severity: Major
vmScript(73) -- severity: Major
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP Office application event states. The associated event
severity of the notification/trap the object is carried in
varies depending upon the event condition. The appropriate
severity is detailed against event enumeration."
::= { ipoGTObjects 6 }
ipoGTEventHostAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Address of an IP Office Small Office Gateway Subtending Host."
::= { ipoGTObjects 7 }
ipoGTEventSOGMode OBJECT-TYPE
SYNTAX INTEGER {
survivable(1), -- severity: Major
subTending(2) -- severity: Minor
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP Office Small Office Gateway operating modes.
survivable(1) indicates the control unit has no current host,
either through confguration error or communication failure.
subTending(2) indicates normal operation to a valid Sub-
tending Host."
::= { ipoGTObjects 8 }
ipoGTEventStdSeverity OBJECT-TYPE
SYNTAX ItuPerceivedSeverity
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Severity of the event that has occurred.
The event severity depends upon the type of
entity/notification that the operational state change event
relates to. The severity values that are normally used are
detailed below:
The enterprise versions of standard SNMP traps all have a
severity of major (4).
Operational events which notify the transition back to an
operational state from a failure state have a severity of
cleared (1).
GenEntityEvents:
Operational - severity is cleared (1)
Failure event severity levels
Type of physical Severity for failure
entity
container critical (3)
module major (4)
port major (4)
Error
Known transient errors for entities have a severity of
warning (6).
Change - severity is major (4)
LKSCommsSvcEvents:
Operational - severity is cleared (1)
Failure - severity is major (4)
GenLoopbackSvcEvent:
Severity is major (4)
GenAppSvcEvents:
Severity depends on sub-event
Operational - severity is cleared (1)
Failure - severity is major (4)
Event - severity depends on event condition
For voicemail storage conditions the severity is as
follows:
storageOkay - severity is cleared (1)
storageNearlyFull - severity is warning (6)
(Only warning severity as it could be transitory.)
storageFull - severity is critical (3)
GenSogSvcEvents:
Severity depends on sub-event
HostFailure - severity is Major (4)
ModeChange:
- Mode survivable: severity is Major (4)
- Mode subTending: severity is Minor (5)
GenUPriLicSvcEvents:
Severity depends on sub-event
ChansReduced - severity is Major (4)
CallRejected - severity is Minor (5)
GenQoSMonSvcEvent:
QoSWarning - severity is Warning (6)
PhoneChangeSvcEvents:
Severity is minor (5)
ipoGenSystemRunningBackupEvent:
Severity is cleared (1)
Severity is critical (3)
ipoGenInvalidMemoryCardEvent:
Severity is cleared (1)
Severity is Major (4)
ipoGenNoLicenceKeyDongleEvent:
Severity is cleared (1)
Severity is warning (6)
Severity is critical (3)
ipoGenMemoryCardCapacityEvent:
Severity depends on sub-event
storageOkay - severity is cleared (1)
storageNearlyFull - severity is warning (6)
storageFull - severity is critical (3)"
::= { ipoGTObjects 9 }
ipoGTEventDevID OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (10))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique textual identifier of the alarming device."
::= { ipoGTObjects 10 }
ipoGTEventEntityName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The textual name of the alarming physical entity. The
contents of this object is made of concatenated
entPhysicalName values that fully identify the object with the
overall IP Office entity. Examples values are:
Controller, Trunk Slot B, Trunk Module, T1 PRI 2
= T1 PRI Port 2, on a dual T1 Trunk Module, in Trunk Slot B,
on the IP Office Controller Unit
Controller, VCM Slot 1, VCM 1
= VCM Card, in VCM Slot 1, on the IP Office Controller Unit
Controller, EXP 1, DS EXP 16, DS 12
= DS Phone Port 12, on a DS16 Expansion Module, attached to
Expansion Port 1, on the IP Office Controller Unit"
::= { ipoGTObjects 11 }
ipoGTEventLoopbackStatusBits OBJECT-TYPE
SYNTAX BITS {
noLoopback(0),
nearEndPayloadLoopback(1),
nearEndLineLoopback(2),
nearEndOtherLoopback(3),
nearEndInwardLoopback(4),
farEndPayloadLoopback(5),
farEndLineLoopback(6)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This variable represents the current state of the loopback on
the DS1 interface. It contains information about loopbacks
established by a manager and remotely from the far end.
The ipoGTEventLoopbackStatus is a bit map therefore is can
represent multiple loopbacks simultaneously."
::= { ipoGTObjects 12 }
ipoGTEventQoSMonJitter OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP Office QoS monitoring Received Jitter time in milliseconds."
::= { ipoGTObjects 13 }
ipoGTEventQoSMonRndTrip OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP Office QoS monitoring Round Trip Delay time in milliseconds."
::= { ipoGTObjects 14 }
ipoGTEventQoSMonPktLoss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP Office QoS monitoring Received Packet Loss."
::= { ipoGTObjects 15 }
ipoGTEventQoSMonCallId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP Office QoS monitoring Call Identifier."
::= { ipoGTObjects 16 }
ipoGTEventQoSMonDevType OBJECT-TYPE
SYNTAX INTEGER {
line(1),
extn(2)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP Office QoS monitoring Device Type."
::= { ipoGTObjects 17 }
ipoGTEventQoSMonDevId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP Office QoS monitoring Device Identifier."
::= { ipoGTObjects 18 }
ipoGTEventQoSMonExtnNo OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP Office QoS monitoring Extension Number."
::= { ipoGTObjects 19 }
ipoGTEventSystemShutdownSource OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This variable represents the source from where the system
shutdown was performed.
Possible values are:
DTE-Port
- if the system shutdown is performed using the DTE,
AUX-Button
- if the system shutdown is performed using the AUX
button (available only for IP500v2),
Phone <user name>
- if the system shutdown is performed from a phone,
Manager <security user name>
- if the system shutdown is performed from Manager,
SSA <security user name>
- if the system shutdown is performed from SSA."
::= { ipoGTObjects 20 }
ipoGTEventSystemShutdownTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This variable represents the period of time the system will be in
the shutdown state for. Possible values are in the 5 to 1440 minutes
range, 0 meaning infinite."
::= { ipoGTObjects 21 }
ipoGTEventMemoryCardSlotId OBJECT-TYPE
SYNTAX INTEGER {
compactFlash(1),
systemSD(2),
optionalSD(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This variable indicates a memory card physical position identifier.
System(2) and Optional(3) are valid for the IP500 V2. CF(1) valid
for the IP500."
::= { ipoGTObjects 22 }
ipoGTEventNoValidKeyReason OBJECT-TYPE
SYNTAX INTEGER {
noReason(1),
notPresent(2),
noRegisterAccess(3),
invalidRegisters(4),
invalidWatermark(5),
invalidClusterSize(6),
invalidVolume(7),
invalidHeaderFiles(8),
nonSpecificError(9)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This variable indicates the reason no valid licence feature key is
assumed. This is also the order of importance and check precedence.
noReason(1) - cleared condition
notPresent(2) - license feature key no present
noRegisterAccess(3) - license feature key present, but no access
invalidRegisters(4) - invalid register values
invalidWatermark(5) - watermark invalid or not present
invalidClusterSize(6) - filesystem not as expected"
::= { ipoGTObjects 23 }
ipoGTEventReason OBJECT-TYPE
SYNTAX INTEGER {
configurationAgentNotTargeted(1),
configurationSCNDialPlanConflict(2),
configurationNoIncomingCallRoute(3),
configurationHWTypeFailure(4),
serviceFeatureLicenseMissing(5),
serviceAllLicensesInUse(6),
serviceClockSourceChanged(7),
serviceLogonFailed(8),
serviceNoFreeChannelsAvail(9),
serviceHoldMusicFileFailure(10),
serviceAllResourcesInUse(11),
serviceAlarm(12),
serviceNetworkInterconnectFailure(13),
trunkSeizeFailure(14),
trunkIncomingCallOutgoingTrunk(15),
trunkCLINotDelivered(16),
trunkDDIIncomplete(17),
trunkLOS(18),
trunkOOS(19),
trunkRedAlarm(20),
trunkBlueAlarm(21),
trunkYellowAlarm(22),
trunkIPConnectFail(23),
trunkSCNInvalidConnection(24),
linkDeviceChanged(25),
linkLDAPServerCommFailure(26),
linkResourceDown(27),
linkSMTPServerCommFailure(28),
linkVMProConnFailure(29),
serviceTimeServerAlarm(30),
serviceLicenseFileInvalid(31),
serviceLicenseError(32),
securityError(33),
codecError(34),
scepNoRespError(35),
configAppsProcAlarm(36),
serviceAppsProcAlarm(37),
serviceLicenseServerError(38),
testAlarm(39),
servicePlannedMaintenance(40),
serviceNetworkDisconnection(41),
serviceFailedTlsNegotiation(42),
serviceFailedTlsRenegotiation(43),
serviceLackOfResources(44),
serviceInternalError(45),
serviceTooManyMissedHeartbeats(46),
serviceFailedDnsResolution(47),
serviceDuplicateIpAddress(48),
serviceAuthenticationFailure(49),
serviceSslVpnStackProtocolError(50),
serviceSslVpnServerReportedError(51),
servicePortRangeExhausted(52),
serviceWebservicesUWSError(53),
trunkNoFreeVoIPChannel(54),
serviceEmergencyCall(55),
serviceLocationCongestion(56),
serviceCpuAlarm(57),
serviceCpuIOAlarm(58),
serviceMemoryAlarm(59),
serviceLocalBackup(60),
trunkSMConnectAsSIP(61),
trunkSIPConnectAsSM(62),
serviceSipRxPacketSizeError(63),
serviceACCSAlarm(64),
serviceSystemHardDriveAlarm(65),
serviceAdditionalHardDriveAlarm(66),
linkDialerConnFailure(67),
trunkSIPDNSInvalidConfig(68),
trunkSIPDNSTransportError(69),
monitorLogStamped(70),
trunkSCNInvalidSubOperMode(71),
serviceIPDECTSystemError(72),
serviceIPOCCAlarm(73),
serviceGeneralAlarm(74),
serviceSystemInfo(75),
serviceNonSelectAlarm(76),
serviceCCRNotSupported(77),
serviceAMServerNotAvailable(78),
trunkMediaSecuritySettingsIncompatible(79)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This variable indicates what event took place within Configuration, Service, Trunk
or Link category alarm"
::= { ipoGTObjects 24 }
ipoGTEventData OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This variable contains opaque data that can be used to provide additional information
when the ipoGTEventReason value is not sufficient."
::= { ipoGTObjects 25 }
ipoGTEventAlarmDescription OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This variable describes the alarm"
::= { ipoGTObjects 26 }
ipoGTEventAlarmRemedialAction OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This variable describes the remedial action of the alarm"
::= { ipoGTObjects 27 }
--
-- traps
--
ipoGenEntityFailureEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventEntity
}
STATUS deprecated
DESCRIPTION
"A ipoGenEntityFailureEvent notification is generated whenever a
physical entity on the IP Office fails in its operation. It
signifies that the SNMP entity, acting in an agent role, has
detected that the state of a physical entity of the system has
transitioned from the operational to the failed state
**NOTE: This notification is deprecated and replaced by
ipoGenEntityFailureSvcEvent"
::= { ipoGTEvents 1 }
ipoGenEntityOperationalEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventEntity
}
STATUS deprecated
DESCRIPTION
"A ipoGenEntityOperationalEvent notification is generated whenever
a physical entity on the IP Office becomes operational again
after having failed. It signifies that the SNMP entity, acting
in an agent role, has detected that the state of a physical
entity of the system has transitioned from the failed to the
operational state
**NOTE: This notification is deprecated and replaced by
ipoGenEntityOperationalSvcEvent."
::= { ipoGTEvents 2 }
ipoGenEntityErrorEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventEntity
}
STATUS deprecated
DESCRIPTION
"A ipoGenEntityErrorEvent notification is generated whenever a
physical entity on the IP Office experiences a temporary
error. It signifies that the SNMP entity, acting in an agent
role, has detected a transitory error on a physical entity of
the system.
**NOTE: This notification is deprecated and replaced by
ipoGenEntityErrorSvcEvent."
::= { ipoGTEvents 3 }
ipoGenEntityChangeEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventEntity
}
STATUS deprecated
DESCRIPTION
"A ipoGenEntityChangeEvent notification is generated whenever
a physical entity on the IP Office experiences a change itself
or with other entities associated with it. It signifies that
the SNMP entity, acting in an agent role, has detected a non
error/failure change for a physical entity on the system.
**NOTE: This notification is deprecated and replaced by
ipoGenEntityChangeSvcEvent."
::= { ipoGTEvents 4 }
ipoGenLKSCommsFailureEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime
}
STATUS deprecated
DESCRIPTION
"A ipoGenLKSCommsFailureEvent notification is generated
whenever communication with a Licence Key Server fails. It
signifies that the SNMP entity, acting in an agent role, has
detected that the state of the communications between the
Licence Key Server has transitioned from the operational to
the failed state.
**NOTE: This notification is deprecated and replaced by
ipoGenLKSCommsFailureSvcEvent."
::= { ipoGTEvents 5 }
ipoGenLKSCommsOperationalEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime
}
STATUS deprecated
DESCRIPTION
"A ipoGenLKSCommsOperationalEvent notification is generated
whenever communication with a Licence Key Server becomes
operational again after having failed. It signifies that the
SNMP entity, acting in an agent role, has detected that the
state of the communications between the Licence Key Server has
transitioned from the failed to the operational state.
**NOTE: This notification is deprecated and replaced by
ipoGenLKSCommsOperationalSvcEvent."
::= { ipoGTEvents 6 }
ipoGenLKSCommsErrorEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime
}
STATUS deprecated
DESCRIPTION
"A ipoGenLKSCommsErrorEvent notification is generated whenever
a IP Office experiences a temporary error with License Key
Server communication. It signifies that the SNMP entity,
acting in an agent role, has detected a transitory error with
the communication between the License Key Server and Client
on the system.
**NOTE: This notification is deprecated and replaced by
ipoGenLKSCommsErrorSvcEvent."
::= { ipoGTEvents 7 }
ipoGenLKSCommsChangeEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime
}
STATUS deprecated
DESCRIPTION
"A ipoGenLKSCommsChangeEvent notification is generated
whenever a IP Office experiences a change a non error change
License Key Server communication operation. It signifies that
the SNMP entity, acting in an agent role, has detected a non
error/failure change with the License Key Server and Client
operation on the system.
**NOTE: This notification is deprecated and replaced by
ipoGenLKSCommsChangeSvcEvent."
::= { ipoGTEvents 8 }
ipoGenLoopbackEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventEntity,
ipoGTEventLoopbackStatus
}
STATUS deprecated
DESCRIPTION
"A ipoGenLoopbackEvent notification is generated whenever a IP
Office T1 (DS1) interface operating as a CSU actions a loopback
status change.
**NOTE: This notification is deprecated and replaced by
ipoGenLoopbackSvcEvent."
::= { ipoGTEvents 9 }
ipoGenAppFailureEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventAppEntity
}
STATUS deprecated
DESCRIPTION
"A ipoGenAppFailureEvent notification is generated whenever
communication between a IP Office switch and a IP Office
application fails. It signifies that the SNMP entity, acting
in an agent role, has detected that the state of the
communications between the IP Office switch and a IP Office
application has transitioned from the operational to the
failed state. The IP Office application between which
communication has been lost is identified by the value of
ipoGTEventAppEntity.
**NOTE: This notification is deprecated and replaced by
ipoGenAppFailureSvcEvent."
::= { ipoGTEvents 10 }
ipoGenAppOperationalEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventAppEntity
}
STATUS deprecated
DESCRIPTION
"A ipoGenAppOperationalEvent notification is generated
whenever communication between a IP Office switch and a IP
Office application becomes operational again after having
failed. It signifies that the SNMP entity, acting in an agent
role, has detected that the state of the communications
between the IP Office switch and a IP Office application has
transitioned from the failed to the operational state. The IP
Office application between which communication has been lost
is identified by the value of ipoGTEventAppEntity.
**NOTE: This notification is deprecated and replaced by
ipoGenAppOperationalSvcEvent."
::= { ipoGTEvents 11 }
ipoGenAppEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventAppEntity,
ipoGTEventAppEvent
}
STATUS deprecated
DESCRIPTION
"A ipoGenAppEvent notification is generated whenever a
application entity of the IP Office system experiences an event.
It signifies that the SNMP entity, acting as a proxy for
the application, has detected an event on the application
entity of the overall IP Office system.
The event severity varies dependent upon the event condition.
**NOTE: This notification is deprecated and replaced by
ipoGenAppSvcEvent."
::= { ipoGTEvents 12 }
ipoGenSogHostFailureEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventHostAddress
}
STATUS deprecated
DESCRIPTION
"An ipoGenSogFailureEvent notification is generated whenever a
previously valid Sub-tending host fails during Small Office
Gateway operation.
The ipAddress field indicates the address of the failed host.
The event severity will always indicate Major.
**NOTE: This notification is deprecated and replaced by
ipoGenSogHostFailureSvcEvent."
::= { ipoGTEvents 13 }
ipoGenSogModeChangeEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventSOGMode
}
STATUS deprecated
DESCRIPTION
"An ipoGenSogModeChangeEvent notification is generated whenever
the Small Office Gateway operating mode changes. This also
includes entry to the initial mode.
The ipoGTEventSOGMode field indicates the new operating mode.
The event severity will be major(2) for a ipoGTEventSOGMode value
of survivable(1), and minor(3) for a ipoGTEventSOGMode value of
subTending(2).
**NOTE: This notification is deprecated and replaced by
ipoGenSogModeChangeSvcEvent."
::= { ipoGTEvents 14 }
ipoGenColdStartSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"Enterprise version of standard coldstart trap featuring
device identification information. A coldStart trap
signifies that the sending protocol entity is reinitializing
itself such that the agent's configuration or the protocol
entity implementation may be altered."
::= { ipoGTEvents 15 }
ipoGenWarmStartSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"Enterprise version of standard warmstart trap featuring
device identification information. A warmStart trap
signifies that the sending protocol entity is reinitializing
that neither the agent configuration nor the protocol entity
implementation is altered."
::= { ipoGTEvents 16 }
ipoGenLinkDownSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ifIndex
}
STATUS current
DESCRIPTION
"Enterprise version of standard linkDown trap featuring device
identification information. A linkDown trap signifies that
the sending protocol entity recognizes a failure in one of
the communication links represented in the agent's
configuration."
::= { ipoGTEvents 17 }
ipoGenLinkUpSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ifIndex
}
STATUS current
DESCRIPTION
"Enterprise version of standard linkUp trap featuring device
identification information. A linkUp trap signifies that the
sending protocol entity recognizes that one of the
communication links represented in the agent's configuration
has come up."
::= { ipoGTEvents 18 }
ipoGenAuthFailureSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"Enterprise version of standard authenticationFailure trap
featuring device identification information. An
authenticationFailure trap signifies that the sending
protocol entity is the addressee of a protocol message that
is not properly authenticated. While implementations of the
SNMP must be capable of generating this trap, they must also
be capable of suppressing the emission of such traps via an
implementation- specific mechanism."
::= { ipoGTEvents 19 }
ipoGenEntityFailureSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventEntity,
ipoGTEventEntityName
}
STATUS current
DESCRIPTION
"A ipoGenEntityFailureSvcEvent notification is generated
whenever a physical entity on the IP Office fails in its
operation. It signifies that the SNMP entity, acting in an
agent role, has detected that the state of a physical entity
of the system has transitioned from the operational to the
failed state"
::= { ipoGTEvents 20 }
ipoGenEntityOperationalSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventEntity,
ipoGTEventEntityName
}
STATUS current
DESCRIPTION
"A ipoGenEntityOperationalSvcEvent notification is generated
whenever a physical entity on the IP Office becomes
operational again after having failed. It signifies that the
SNMP entity, acting in an agent role, has detected that the
state of a physical entity of the system has transitioned from
the failed to the operational state"
::= { ipoGTEvents 21 }
ipoGenEntityErrorSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventEntity,
ipoGTEventEntityName
}
STATUS current
DESCRIPTION
"A ipoGenEntityErrorSvcEvent notification is generated
whenever a physical entity on the IP Office experiences a
temporary error. It signifies that the SNMP entity, acting in
an agent role, has detected a transitory error on a physical
entity of the system."
::= { ipoGTEvents 22 }
ipoGenEntityChangeSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventEntity,
ipoGTEventEntityName
}
STATUS current
DESCRIPTION
"A ipoGenEntityChangeSvcEvent notification is generated
whenever a physical entity on the IP Office experiences a
change itself or with other entities associated with it. It
signifies that the SNMP entity, acting in an agent role, has
detected a non error/failure change for a physical entity on
the system."
::= { ipoGTEvents 23 }
ipoGenLKSCommsFailureSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"A ipoGenLKSCommsFailureSvcEvent notification is generated
whenever communication with a Licence Key Server fails. It
signifies that the SNMP entity, acting in an agent role, has
detected that the state of the communications between the
Licence Key Server has transitioned from the operational to
the failed state."
::= { ipoGTEvents 24 }
ipoGenLKSCommsOperationalSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"A ipoGenLKSCommsOperationalSvcEvent notification is generated
whenever communication with a Licence Key Server becomes
operational again after having failed. It signifies that the
SNMP entity, acting in an agent role, has detected that the
state of the communications between the Licence Key Server has
transitioned from the failed to the operational state."
::= { ipoGTEvents 25 }
ipoGenLKSCommsErrorSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"A ipoGenLKSCommsErrorSvcEvent notification is generated
whenever a IP Office experiences a temporary error with
License Key Server communication. It signifies that the SNMP
entity, acting in an agent role, has detected a transitory
error with the communication between the License Key Server
and Client on the system."
::= { ipoGTEvents 26 }
ipoGenLKSCommsChangeSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"A ipoGenLKSCommsChangeSvcEvent notification is generated
whenever a IP Office experiences a change a non error change
License Key Server communication operation. It signifies that
the SNMP entity, acting in an agent role, has detected a non
error/failure change with the License Key Server and Client
operation on the system."
::= { ipoGTEvents 27 }
ipoGenLoopbackSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventEntity,
ipoGTEventEntityName,
ipoGTEventLoopbackStatusBits
}
STATUS current
DESCRIPTION
"A ipoGenLoopbackSvcEvent notification is generated whenever a
IP Office T1 (DS1) interface operating as a CSU actions a
loopback status change."
::= { ipoGTEvents 28 }
ipoGenAppFailureSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventAppEntity
}
STATUS current
DESCRIPTION
"A ipoGenAppFailureSvcEvent notification is generated whenever
communication between a IP Office switch and a IP Office
application fails. It signifies that the SNMP entity, acting
in an agent role, has detected that the state of the
communications between the IP Office switch and a IP Office
application has transitioned from the operational to the
failed state. The IP Office application between which
communication has been lost is identified by the value of
ipoGTEventAppEntity."
::= { ipoGTEvents 29 }
ipoGenAppOperationalSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventAppEntity
}
STATUS current
DESCRIPTION
"A ipoGenAppOperationalSvcEvent notification is generated
whenever communication between a IP Office switch and a IP
Office application becomes operational again after having
failed. It signifies that the SNMP entity, acting in an agent
role, has detected that the state of the communications
between the IP Office switch and a IP Office application has
transitioned from the failed to the operational state. The IP
Office application between which communication has been lost
is identified by the value of ipoGTEventAppEntity."
::= { ipoGTEvents 30 }
ipoGenAppSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventAppEntity,
ipoGTEventAppEvent,
ipoGTEventAlarmDescription
}
STATUS current
DESCRIPTION
"A ipoGenAppSvcEvent notification is generated whenever a
application entity of the IP Office system experiences an
event. It signifies that the SNMP entity, acting as a proxy
for the application, has detected an event on the application
entity of the overall IP Office system.
The event severity varies dependent upon the event condition."
::= { ipoGTEvents 31 }
ipoGenSogHostFailureSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventHostAddress
}
STATUS current
DESCRIPTION
"An ipoGenSogFailureSvcEvent notification is generated
whenever a previously valid Sub-tending host fails during
Small Office Gateway operation.
The ipAddress field indicates the address of the failed host.
The event severity will always indicate major(4)."
::= { ipoGTEvents 32 }
ipoGenSogModeChangeSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventSOGMode
}
STATUS current
DESCRIPTION
"An ipoGenSogModeChangeSvcEvent notification is generated
whenever the Small Office Gateway operating mode changes. This
also includes entry to the initial mode.
The ipoGTEventSOGMode field indicates the new operating mode.
The event severity will be major(4) for a ipoGTEventSOGMode
value of survivable(1), and minor(5) for a ipoGTEventSOGMode
value of subTending(2)."
::= { ipoGTEvents 33 }
ipoGenUPriLicChansReducedSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"A ipoGenUPriLicChansReducedSvcEvent notification is generated
whenever the number of Universal PRI Licensed channels has
been reduced. It signifies that the SNMP entity, acting in an
agent role, has detected a reduction in the licensed channels
on a Univeral PRI trunk."
::= { ipoGTEvents 34 }
ipoGenUPriLicCallRejectedSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"A ipoGenUPriLicCallRejectedSvcEvent notification is generated
whenever a call on a Universal PRI is rejected due to a
licensed channel not being available. It signifies that the
SNMP entity, acting in an agent role, has detected a licensed
channel not available in order to make a call on a Univeral
PRI trunk."
::= { ipoGTEvents 35 }
ipoGenQoSMonSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventQoSMonJitter,
ipoGTEventQoSMonRndTrip,
ipoGTEventQoSMonPktLoss,
ipoGTEventQoSMonCallId,
ipoGTEventQoSMonDevType,
ipoGTEventQoSMonDevId,
ipoGTEventQoSMonExtnNo
}
STATUS current
DESCRIPTION
"A ipoGenQoSMonSvcEvent notification is generated when one of
the monitored QoS parameters (e.g. round trip delay, jitter,
packet loss, etc) exceeds its pre-selected threshold during
the duration of the call. It signifies that the SNMP entity,
acting in an agent role, has detected a state that one of the
monitored QoS parameters for the call exceeded its
pre-selected threshold.
The ipoGTEventQOSMonExtnNo value is only valid when the device
monitored is an extension rather than a line."
::= { ipoGTEvents 36 }
ipoGenSystemShutdownSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventSystemShutdownSource,
ipoGTEventSystemShutdownTimeout
}
STATUS current
DESCRIPTION
"An ipoGenSystemShutdownSvcEvent notification is generated when a
system shutdown is performed. It signifies that the
SNMP entity has detected a system shutdown."
::= { ipoGTEvents 37 }
ipoGenSystemRunningBackupEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr
}
STATUS current
DESCRIPTION
"An ipoGenSystemRunningBackup notification is generated when a
system is running partially or wholly from alternate/backup
software and/or configuration data.
In the case of an IP500 V2, it indicates that the current boot location
is not the System SD card slot, \system\primary."
::= { ipoGTEvents 38 }
ipoGenInvalidMemoryCardEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventMemoryCardSlotId
}
STATUS current
DESCRIPTION
"An ipoGenInvalidMemoryCard notification is generated when a memory
card is detected present but cannot be used due to failure in the
filesystem or card type checks.
The checks are carried out on startup and whenever a memory card is
inserted."
::= { ipoGTEvents 39 }
ipoGenNoLicenceKeyDongleEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventNoValidKeyReason
}
STATUS current
DESCRIPTION
"A ipoGenNoLicenceKeyDongle notification is generated if a system
either does not detect presence, or fails to validate a Licence Feature
Key Dongle.
In the case of an IP500 V2, it indicates that either the System SD card
is not present, or that one of the validation checks has failed. Note
that removing the System SD card will cause this event immediately,
however the licences will remain valid for approximately 2 hours.
ipoGTEventStdSeverity will indicate the events state:
Severity is cleared(1): license dongle OK
Severity is warning(6): license dongle not OK, in grace period
Severity is critical(3): license dongle not OK, grace period expired
The first check to fail is contained within ipoGTEventNoKeyReason."
::= { ipoGTEvents 40 }
ipoGenMemoryCardCapacityEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventMemoryCardSlotId,
ipoGTEventAppEvent
}
STATUS current
DESCRIPTION
"A ipoGenMemoryCardCapacityEvent notification is generated if a memory
card passes one of the preset capacity thresholds.
In the case of an IP500 V2, the thresholds shall be
storageFull(1) - greater than 99% of nominal capacity
storageNearlyFull(2) - greater than 90% of nominal capacity
storageOkay(3) - less than 90% of nominal capacity."
::= { ipoGTEvents 41 }
ipoGenConfigFailureSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenConfigFailureSvcEvent notification is generated
whenever a configuration component fails in its operation. It signifies
that the SNMP entity,acting in an agent role,has detected that
the state of a configuration component has transitioned from the
operational to the failed state.
This notification event is associated with a configuration
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 42}
ipoGenConfigOperationalSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData
}
STATUS current
DESCRIPTION
"A ipoGenConfigOperationalSvcEvent notification is generated
whenever a configuration component becomes operational again
after having failed.It signifies that the SNMP entity,acting in an
agent role,has detected that the state of a configuration component
of thesystem has transitioned from the failed to the operational state.
This notification event is associated with a configuration
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 43}
ipoGenConfigErrorSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenConfigErrorSvcEvent notification is generated
whenever a configuration component experiences a
temporary error.It signifies that the SNMP entity, acting
in an agent role,has detected a transitory error on a
configuration component of the system.
This notification event is associated with a configuration
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 44}
ipoGenConfigChangeSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenConfigChangeSvcEvent notification is generated
whenever a configuration component experiences a change
or a non error change event.It signifies that the SNMP entity, acting
in an agent role,has detected a non error/failure change on a
configuration component of the system.
This notification event is associated with a configuration
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 45}
ipoGenServiceFailureSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenServiceFailureSvcEvent notification is generated
whenever a Service component fails in its operation. It signifies
that the SNMP entity,acting in an agent role,has detected that
the state of a Service component has transitioned from the
operational to the failed state.
This notification event is associated with a service
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 46}
ipoGenServiceOperationalSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData
}
STATUS current
DESCRIPTION
"A ipoGenServiceOperationalSvcEvent notificationis generated
whenever a service component becomes operational again
after having failed.It signifiest hat the SNMP entity, acting in an
agent role, has detected that the state of a service component
of the system has transitioned from the failed to the operational state.
This notification event is associated with a service
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 47}
ipoGenServiceErrorSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenServiceErrorSvcEvent notification is generated
whenever a service component experiences a
temporary error. It signifiest hat the SNMP entity, acting
in an agent role,has detected a transitory error on a
service component of the system.
This notification event is associated with a service
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 48}
ipoGenServiceChangeSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenServiceChangeSvcEvent notification is generated
whenever a service component experiences a change
or a non error change event. It signifies that the SNMP entity, acting
in an agent role,has detected a non error/failure change on a
service component of the system.
This notification event is associated with a service
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 49}
ipoGenTrunkFailureSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenTrunkFailureSvcEvent notification is generated
whenever a trunk component fails in its operation. It signifies
that the SNMP entity,acting in an agent role,has detected that
the state of a Trunk component has transitioned from the
operational to the failed state.
This notification event is associated with a trunk
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 50}
ipoGenTrunkOperationalSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData
}
STATUS current
DESCRIPTION
"A ipoGenTrunkOperationalSvcEvent notificationis generated
whenever a trunk component becomes operational again
after having failed. It signifies that the SNMP entity, acting in an
agent role,has detected that the state of a trunk component
of the system has transitioned from the failed to the operational state.
This notification event is associated with a trunk
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 51}
ipoGenTrunkErrorSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenTrunkErrorSvcEvent notification is generated
whenever a trunk component experiences a
temporary error. It signifies that the SNMP entity, acting
in an agent role, has detected a transitory error on a
trunk component of the system.
This notification event is associated with a trunk
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 52}
ipoGenTrunkChangeSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenTrunkChangeSvcEvent notification is generated
whenever a trunk component experiences a change
or a non error change event. It signifies that the SNMP entity, acting
in an agent role, has detected a non error/failure change on a
trunk component of the system.
This notification event is associated with a trunk
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 53}
ipoGenLinkFailureSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenLinkFailureSvcEvent notification is generated
whenever a Link component fails in its operation. It signifies
that the SNMP entity,acting in an agent role,has detected that
the state of a Link component has transitioned from the
operational to the failed state.
This notification event is associated with a link
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 54}
ipoGenLinkOperationalSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData
}
STATUS current
DESCRIPTION
"A ipoGenLinkOperationalSvcEvent notification is generated
whenever a link component becomes operational again
after having failed. It signifies that the SNMP entity, acting in an
agent role, hasdetected that the state of a link component
of the system has transitioned from the failed to the operational state.
This notification event is associated with a link
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 55}
ipoGenLinkErrorSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenLinkErrorSvcEvent notification is generated
whenever a link component experiences a
temporary error. It signifies that the SNMP entity, acting
in an agent role,has detected a transitory error on a
link component of thesystem.
This notification event is associated with a link
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 56}
ipoGenLinkChangeSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenLinkChangeSvcEvent notification is generated
whenever a link component experiences a change
or a non error change event. It signifies that the SNMP entity, acting
in an agent role,has detected a non error/failure change on a
link component of the system.
This notification event is associated with a link
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 57}
ipoGenEmergencyCallSvcEvent NOTIFICATION-TYPE
OBJECTS {
ipoGTEventStdSeverity,
ipoGTEventDateTime,
ipoGTEventDevID,
sysDescr,
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"A ipoGenEmergencyCallSvcEvent notification is generated
whenever an emergency call is made, regardless whether successfully or not.
It signifies that the SNMP entity, acting
in an agent role, has detected an emergency call attempt on the system.
This notification event is associated with a service
system status category alarm. Details about the alarm are
provided in the included object variables."
::= { ipoGTEvents 58}
--********************************************************************
-- IP Office wide compliance
--********************************************************************
ipoGenCompliances OBJECT IDENTIFIER ::= { ipoGenConformance 1 }
ipoGenGroups OBJECT IDENTIFIER ::= { ipoGenConformance 2 }
--
-- compliance statements
--
ipoGenCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for IP Office agents which implement
up to and including version 1.00.05 of this MIB."
MODULE -- this module
MANDATORY-GROUPS {
ipoGenNotificationObjectsGroup,
ipoGenNotificationsGroup
}
::= { ipoGenCompliances 1 }
ipoGen2Compliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for IP Office agents which implement
version 1.00.06 and later versions of this MIB."
MODULE -- this module
MANDATORY-GROUPS {
ipoGenNotificationObjectsGroup,
ipoGenNotificationsGroup
}
GROUP ipoGenSOGNotificationObjectsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenSOGNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
::= { ipoGenCompliances 2 }
ipoGen3Compliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for IP Office agents which implement
version 1.01.01 and later versions of this MIB."
MODULE -- this module
MANDATORY-GROUPS {
ipoGenv2NotificationObjectsGroup,
ipoGenEntGenNotificationsGroup,
ipoGenSvcNotificationsGroup
}
GROUP ipoGenSOGNotificationObjectsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenSvcSOGNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
::= { ipoGenCompliances 3 }
ipoGen4Compliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for IP Office agents which implement
version 2.00.01 and later versions of this MIB."
MODULE -- this module
MANDATORY-GROUPS {
ipoGenv2NotificationObjectsGroup,
ipoGenEntGenNotificationsGroup,
ipoGenSvcNotificationsGroup
}
GROUP ipoGenSOGNotificationObjectsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenSvcSOGNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenUPriLicSvcNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the Universal PRI trunk module such as
the IP500."
::= { ipoGenCompliances 4 }
ipoGen5Compliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for IP Office agents which implement
version 2.00.04 and later versions of this MIB."
MODULE -- this module
MANDATORY-GROUPS {
ipoGenv2NotificationObjectsGroup,
ipoGenEntGenNotificationsGroup,
ipoGenSvcNotificationsGroup
}
GROUP ipoGenSOGNotificationObjectsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenSvcSOGNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenUPriLicSvcNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the Universal PRI trunk module such as
the IP500."
GROUP ipoGenQosMonNotificationObjectsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the QoS monitoring such as the IP500."
GROUP ipoGenSvcQoSMonNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the QoS monitoring such as the IP500."
::= { ipoGenCompliances 5 }
ipoGen6Compliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for IP Office agents which implement
version 2.00.03 and later versions of this MIB."
MODULE -- this module
MANDATORY-GROUPS {
ipoGenv2NotificationObjectsGroup,
ipoGenEntGenNotificationsGroup,
ipoGenSvcNotificationsGroup
}
GROUP ipoGenSOGNotificationObjectsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenSvcSOGNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenUPriLicSvcNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the Universal PRI trunk module such as
the IP500."
GROUP ipoGenSvcQoSMonNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the QoS monitoring such as the IP500."
GROUP ipoGenSvcSystemShutdownNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the system shutdown such as the IP406v2,
IP412, IP500 and IP500v2."
GROUP ipoGenSvcSystemShutdownObjectGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the system shutdown such as the IP406v2,
IP412, IP500 and IP500v2."
GROUP ipoGenSDcardNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support an SD Card for primary operation"
GROUP ipoGenSDcardNotificationObjectsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support an SD Card for primary operation"
::= { ipoGenCompliances 6 }
ipoGen7Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for IP Office agents which implement
version 2.00.07 and later versions of this MIB."
MODULE -- this module
MANDATORY-GROUPS {
ipoGenv2NotificationObjectsGroup,
ipoGenEntGenNotificationsGroup,
ipoGenSvcNotificationsGroup,
ipoGenSvcMiscNotificationsGroup,
ipoGenSvcMiscNotificationObjectsGroup
}
GROUP ipoGenSOGNotificationObjectsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenSvcSOGNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
SOG devices."
GROUP ipoGenUPriLicSvcNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the Universal PRI trunk module such as
the IP500."
GROUP ipoGenSvcQoSMonNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the QoS monitoring such as the IP500."
GROUP ipoGenSvcSystemShutdownNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the system shutdown such as the IP406v2,
IP412, IP500 and IP500v2."
GROUP ipoGenSvcSystemShutdownObjectGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support the system shutdown such as the IP406v2,
IP412, IP500 and IP500v2."
GROUP ipoGenSDcardNotificationsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support an SD Card for primary operation"
GROUP ipoGenSDcardNotificationObjectsGroup
DESCRIPTION
"Implementation of this group is only mandatory for IP Office
systems that support an SD Card for primary operation"
::= { ipoGenCompliances 7 }
--
-- MIB groupings
--
ipoGenNotificationObjectsGroup OBJECT-GROUP
OBJECTS {
ipoGTEventSeverity,
ipoGTEventDateTime,
ipoGTEventEntity,
ipoGTEventLoopbackStatus,
ipoGTEventAppEntity,
ipoGTEventAppEvent
}
STATUS deprecated
DESCRIPTION
"Objects that are contained in IP Office wide notifications.
**NOTE: This group is deprecated and replaced by
ipoGenv2NotificationObjectsGroup."
::= { ipoGenGroups 1 }
ipoGenNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenEntityFailureEvent,
ipoGenEntityOperationalEvent,
ipoGenEntityErrorEvent,
ipoGenEntityChangeEvent,
ipoGenLKSCommsFailureEvent,
ipoGenLKSCommsOperationalEvent,
ipoGenLKSCommsErrorEvent,
ipoGenLKSCommsChangeEvent,
ipoGenLoopbackEvent,
ipoGenAppOperationalEvent,
ipoGenAppFailureEvent,
ipoGenAppEvent
}
STATUS deprecated
DESCRIPTION
"The notifications which indicate specific changes in the
state of the IP Office system.
**NOTE: This group is deprecated and replaced by
ipoGenSvcNotificationsGroup."
::= { ipoGenGroups 2 }
ipoGenSOGNotificationObjectsGroup OBJECT-GROUP
OBJECTS {
ipoGTEventHostAddress,
ipoGTEventSOGMode
}
STATUS current
DESCRIPTION
"Objects that are contained in IP Office SOG notifications."
::= { ipoGenGroups 3 }
ipoGenSOGNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenSogHostFailureEvent,
ipoGenSogModeChangeEvent
}
STATUS deprecated
DESCRIPTION
"The notifications which indicate specific changes in the
state of the IP Office SOG system.
**NOTE: This group is deprecated and replaced by
ipoGenSvcNotificationsGroup."
::= { ipoGenGroups 4 }
ipoGenv2NotificationObjectsGroup OBJECT-GROUP
OBJECTS {
ipoGTEventDateTime,
ipoGTEventEntity,
ipoGTEventAppEntity,
ipoGTEventAppEvent,
ipoGTEventStdSeverity,
ipoGTEventDevID,
ipoGTEventEntityName,
ipoGTEventLoopbackStatusBits
}
STATUS current
DESCRIPTION
"Objects that are contained in IP Office wide notifications."
::= { ipoGenGroups 5 }
ipoGenEntGenNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenColdStartSvcEvent,
ipoGenWarmStartSvcEvent,
ipoGenLinkDownSvcEvent,
ipoGenLinkUpSvcEvent,
ipoGenAuthFailureSvcEvent
}
STATUS current
DESCRIPTION
"IP Office Enterpise versions of the generic traps as defined
RFC1215 that provide more identification of the entity
concerned."
::= { ipoGenGroups 6 }
ipoGenSvcNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenEntityFailureSvcEvent,
ipoGenEntityOperationalSvcEvent,
ipoGenEntityErrorSvcEvent,
ipoGenEntityChangeSvcEvent,
ipoGenLKSCommsFailureSvcEvent,
ipoGenLKSCommsOperationalSvcEvent,
ipoGenLKSCommsErrorSvcEvent,
ipoGenLKSCommsChangeSvcEvent,
ipoGenLoopbackSvcEvent,
ipoGenAppOperationalSvcEvent,
ipoGenAppFailureSvcEvent,
ipoGenAppSvcEvent
}
STATUS current
DESCRIPTION
"The service notifications which indicate specific changes in
the state of the IP Office system."
::= { ipoGenGroups 7 }
ipoGenSvcSOGNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenSogHostFailureSvcEvent,
ipoGenSogModeChangeSvcEvent
}
STATUS current
DESCRIPTION
"The service notifications which indicate specific changes in
the state of the IP Office SOG system."
::= { ipoGenGroups 8 }
ipoGenUPriLicSvcNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenUPriLicChansReducedSvcEvent,
ipoGenUPriLicCallRejectedSvcEvent
}
STATUS current
DESCRIPTION
"The service notifications which indicate specific changes
related to the state licensing and Universal PRI trunks on the
IP Office system."
::= { ipoGenGroups 9 }
ipoGenQosMonNotificationObjectsGroup OBJECT-GROUP
OBJECTS {
ipoGTEventQoSMonJitter,
ipoGTEventQoSMonRndTrip,
ipoGTEventQoSMonPktLoss,
ipoGTEventQoSMonCallId,
ipoGTEventQoSMonDevType,
ipoGTEventQoSMonDevId,
ipoGTEventQoSMonExtnNo
}
STATUS current
DESCRIPTION
"Additional objects that are contained in IP Office QOS
Monitoring notifications."
::= { ipoGenGroups 10 }
ipoGenSvcQoSMonNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenQoSMonSvcEvent
}
STATUS current
DESCRIPTION
"The service notifications which indicate specific changes
related to the value of QoS parameters for a call on a physical
entity on the IP Office system."
::= { ipoGenGroups 11 }
ipoGenSvcSystemShutdownObjectGroup OBJECT-GROUP
OBJECTS {
ipoGTEventSystemShutdownSource,
ipoGTEventSystemShutdownTimeout
}
STATUS current
DESCRIPTION
"Additional objects that are contained in the system shutdown
notification"
::= { ipoGenGroups 12 }
ipoGenSvcSystemShutdownNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenSystemShutdownSvcEvent
}
STATUS current
DESCRIPTION
"The service notifications which indicate specific changes
related to the system shutdown performed on the IP Office system."
::= { ipoGenGroups 13 }
ipoGenSDcardNotificationObjectsGroup OBJECT-GROUP
OBJECTS {
ipoGTEventMemoryCardSlotId,
ipoGTEventNoValidKeyReason
}
STATUS current
DESCRIPTION
"Additional objects that are contained in IP Office SD card
notifications."
::= { ipoGenGroups 14 }
ipoGenSDcardNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenAppOperationalSvcEvent,
ipoGenAppFailureSvcEvent,
ipoGenAppSvcEvent,
ipoGenSystemRunningBackupEvent,
ipoGenInvalidMemoryCardEvent,
ipoGenNoLicenceKeyDongleEvent,
ipoGenMemoryCardCapacityEvent
}
STATUS current
DESCRIPTION
"The notifications associated with IP Office SD card usage."
::= { ipoGenGroups 15 }
ipoGenSvcMiscNotificationObjectsGroup OBJECT-GROUP
OBJECTS {
ipoGTEventReason,
ipoGTEventData,
ipoGTEventAlarmDescription,
ipoGTEventAlarmRemedialAction
}
STATUS current
DESCRIPTION
"Additional objects that are contained in IP Office
notifications to provide additional information to
end user"
::= { ipoGenGroups 16 }
ipoGenSvcMiscNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ipoGenConfigFailureSvcEvent,
ipoGenConfigOperationalSvcEvent,
ipoGenConfigErrorSvcEvent,
ipoGenConfigChangeSvcEvent,
ipoGenServiceFailureSvcEvent,
ipoGenServiceOperationalSvcEvent,
ipoGenServiceErrorSvcEvent,
ipoGenServiceChangeSvcEvent,
ipoGenTrunkFailureSvcEvent,
ipoGenTrunkOperationalSvcEvent,
ipoGenTrunkErrorSvcEvent,
ipoGenTrunkChangeSvcEvent,
ipoGenLinkFailureSvcEvent,
ipoGenLinkOperationalSvcEvent,
ipoGenLinkErrorSvcEvent,
ipoGenLinkChangeSvcEvent,
ipoGenEmergencyCallSvcEvent
}
STATUS current
DESCRIPTION
"The notifications indicating change in status
related to four areas: Configuration, Sevice,
Trunk and Link"
::= { ipoGenGroups 17 }
END
|