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
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
|
-- This file is corresponding to Release 10.2.3.100 from 2018/07/18 00:00:00
-- (C)opyright 1991-2017 bintec elmeg GmbH, All Rights Reserved
-- $Revision: 1.56.1.2 $
BIANCA-BRICK-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, Unsigned32, Counter32, Gauge32, Counter64,
IpAddress, TimeTicks, mib-2, enterprises
FROM SNMPv2-SMI
DisplayString, TimeStamp, TruthValue
FROM SNMPv2-TC
bintec, bibo, sys, Date, HexValue
FROM BINTEC-MIB
TRAP-TYPE
FROM RFC-1215
sysDescr, sysName
FROM SNMPv2-MIB
;
biboMIB MODULE-IDENTITY
LAST-UPDATED "201703240000Z"
ORGANIZATION
"bintec elmeg GmbH"
CONTACT-INFO
"EMail: info@bintec-elmeg.com
Web: www.bintec-elmeg.com
"
DESCRIPTION
"MIB module for vendor specific box definitions.
Note: bibo stands for BinTec box stemming from the times where
the company was still called BinTec."
REVISION "201004280000Z"
DESCRIPTION
"First version conforming to SMIv2."
::= { bintec 250 }
-- This MIB module uses the extended OBJECT-TYPE macro as
-- defined in [14];
-- MIB-II (same prefix as MIB-I)
admin OBJECT IDENTIFIER
::= { bibo 1 }
-- Some variables for administration of the BIANCA/BRICK
-- biboAdmTrapCommunity OBJECT-TYPE
-- SYNTAX DisplayString (SIZE (0..255))
-- MAX-ACCESS read-write
-- STATUS mandatory
-- - BINTEC NOTRAP
-- DESCRIPTION
-- "Community name for sending traps."
-- DEFVAL { "snmp-Trap" }
-- ::= { admin 4 }
--
-- biboAdmSnmpVersion OBJECT-TYPE
-- SYNTAX INTEGER { version1(1),
-- version1-compat(2),
-- version1p1(3),
-- version1p1-compat(4),
-- version1p1-auto(5)
-- }
-- MAX-ACCESS read-write
-- STATUS mandatory
--
-- DESCRIPTION
-- "SNMP Version.
-- version1 : SNMP version V1
-- version1_compat : SNMP version V1 compatibility mode
-- without the appending private OID
-- part (.i). This is for some SNMP managers
-- that cannot handle this extension.
-- In this mode rows with identical
-- index variable content cannot be read
-- correctly.
-- p1 (patch1) : getnext returns the lexicographical next
-- OID (ever!)
-- version1p1_auto : use version1p1_compat if possible
-- use version1p1 if nessesary
--
-- Usually the OIDs have the format:
-- .1.3.6.x.x .y.y .i
--
-- .1.3.6.x.x: is the constant part of the OID of the
-- variable specified in MIB-source
-- .y.y : is the specific part of the OID to identify
-- exactly a row.
-- It is the content of all index variables.
-- .i : is a consecutively incremented index number,
-- to distinguish rows with identical index variables
-- "
-- DEFVAL { version1p1-auto }
-- ::= { admin 5 }
--
-- biboAdmSnmpPort OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
--
-- DESCRIPTION
-- "SNMP listen port."
-- DEFVAL { 161 }
-- ::= { admin 6 }
--
-- biboAdmSnmpTrapPort OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
-- - BINTEC NOTRAP
-- DESCRIPTION
-- "SNMP trap port."
-- DEFVAL { 162 }
-- ::= { admin 7 }
biboAdmIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Local IP address. If this object is set, it's value will be
used as the source address for all IP packets that are sent.
Otherwise, the IP address used will be retrieved from the
ipRouteTable, for the interface the IP packet is to be
transmitted over."
::= { admin 8 }
-- biboAdmTrapBrdCast OBJECT-TYPE
-- SYNTAX INTEGER { on(1), off(2) }
-- MAX-ACCESS read-write
-- STATUS current
-- - BINTEC NOTRAP
-- DESCRIPTION
-- "Enable/disable trap broadcasting."
-- DEFVAL { off }
-- ::= { admin 9 }
biboAdmTrapHostTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmTrapHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The biboAdmTrapHostTable defines where traps are sent
(i.e., which hosts). If the table is empty traps are
broadcasted.
Creating entries: Entries are added by assigning an IP
address value to the biboAdmTrapHostAddr field.
Deleting entries: Entries can be removed by assigning
ing the respective biboAdmTrapHostStatus field to
'delete'."
::= { admin 10 }
biboAdmTrapHostEntry OBJECT-TYPE
SYNTAX BiboAdmTrapHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboAdmTrapHostAddr }
::= { biboAdmTrapHostTable 1 }
BiboAdmTrapHostEntry ::= SEQUENCE {
biboAdmTrapHostAddr IpAddress,
biboAdmTrapHostStatus INTEGER
}
biboAdmTrapHostAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ip-Address where traps are sent."
::= { biboAdmTrapHostEntry 1 }
biboAdmTrapHostStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
delete(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status is always valid, and set to delete only to discard
the whole entry."
DEFVAL { valid }
::= { biboAdmTrapHostEntry 2 }
biboAdmSyslogMaxEntries OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum Number of syslog messages stored in memory."
DEFVAL { 20 }
::= { admin 11 }
biboAdmSyslogTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmSyslogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The biboAdmSyslogTable keeps track of syslog messages
received. The size of the table (number of entries), is
limited by the value of biboAdmSyslogMaxEntries. The
columns specify attributes for each message generated. As
this information only reports events on the system, all
fields are read-only.
Creating entries: Entries can only be created by the
system and are made each time a syslog message is
generated.
Deleting entries: Entries are removed by the system
once the size limit (biboAdmSyslogMaxEntries) is reached."
::= { admin 12 }
biboAdmLogHostTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmLogHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The biboAdmLogHostTable lists hosts which are to
receive syslog messages. This table also defines which
types and levels of messages to send.
Creating entries: Entries are created by setting a IP address
to biboAdmLogHostAddr.
Deleting entries: Entries are removed by setting the
appropriate biboAdmLogHostLevel field to 'delete'."
::= { admin 13 }
biboAdmLogHostEntry OBJECT-TYPE
SYNTAX BiboAdmLogHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboAdmLogHostAddr }
::= { biboAdmLogHostTable 1 }
BiboAdmLogHostEntry ::= SEQUENCE {
biboAdmLogHostAddr IpAddress,
biboAdmLogHostLevel INTEGER,
biboAdmLogHostFacility INTEGER,
biboAdmLogHostType INTEGER,
biboAdmLogHostTimestamp INTEGER,
biboAdmLogHostMethod INTEGER
}
biboAdmLogHostAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ip-Address where syslog messages are sent. If the
facility is set to memory or console, this field is
not used."
::= { biboAdmLogHostEntry 1 }
biboAdmLogHostLevel OBJECT-TYPE
SYNTAX INTEGER {
emerg(1),
alert(2),
crit(3),
err(4),
warning(5),
notice(6),
info(7),
debug(8),
delete(9)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Priorities lower or equal this level are sent to loghost.
The delete priority is used to discard the whole entry."
DEFVAL { info }
::= { biboAdmLogHostEntry 2 }
biboAdmLogHostFacility OBJECT-TYPE
SYNTAX INTEGER {
local0(1),
local1(2),
local2(3),
local3(4),
local4(5),
local5(6),
local6(7),
local7(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The facility used for the syslog messages being generated."
DEFVAL { local0 }
::= { biboAdmLogHostEntry 4 }
biboAdmLogHostType OBJECT-TYPE
SYNTAX INTEGER {
system(1),
acct(2),
all(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The subject of the messages that are to be generated. system
means all subjects except accounting, all means all subjects."
DEFVAL { all }
::= { biboAdmLogHostEntry 5 }
biboAdmLogHostTimestamp OBJECT-TYPE
SYNTAX INTEGER {
none(1),
time(2),
all(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes the format of the timestamp.
none(1) = no timestamp,
time(2) = only time is printed,
all(3) = date and time is printed."
DEFVAL { none }
::= { biboAdmLogHostEntry 6 }
biboAdmLogHostMethod OBJECT-TYPE
SYNTAX INTEGER {
udp(1),
tcp(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object provides protocol for sending syslog messages:
udp(1) = udp
tcp(2) = tcp
"
DEFVAL { udp }
::= { biboAdmLogHostEntry 7 }
-- Configuration
biboAdmConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The biboAdmConfigTable is used for assigning
parameters for managing configuration files.
Creating entries: Entries are added to this table by
assigning a value to the biboAdmConfigCmd object. (i.e., The
intermediate result of executing, cmd=save, creates an
entry to this table.).
Deleting entries: Entries can only be removed by the
system and is done only after the requested action has
been performed (i.e. Once the cmd=save action is
complete.)."
::= { admin 14 }
biboAdmConfigEntry OBJECT-TYPE
SYNTAX BiboAdmConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboAdmConfigCmd }
::= { biboAdmConfigTable 1 }
BiboAdmConfigEntry ::= SEQUENCE {
biboAdmConfigCmd INTEGER,
biboAdmConfigObject OBJECT IDENTIFIER,
biboAdmConfigPath DisplayString,
biboAdmConfigPathNew DisplayString,
biboAdmConfigHost IpAddress,
biboAdmConfigState INTEGER,
biboAdmConfigFile DisplayString,
biboAdmConfigTimeout INTEGER,
biboAdmConfigHostUrl DisplayString,
biboAdmConfigCertIndex INTEGER
}
biboAdmConfigDirTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmConfigDirEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration directory table. This table contains
all available configuration files in flash memory."
::= { admin 15 }
biboAdmConfigDirEntry OBJECT-TYPE
SYNTAX BiboAdmConfigDirEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboAdmConfigDirName }
::= { biboAdmConfigDirTable 1 }
BiboAdmConfigDirEntry ::= SEQUENCE {
biboAdmConfigDirName DisplayString,
biboAdmConfigDirCount INTEGER,
biboAdmConfigDirContent DisplayString,
biboAdmConfigDirSaveDate DisplayString
}
biboAdmConfigCmd OBJECT-TYPE
SYNTAX INTEGER {
save(1),
load(2),
put(3),
get(4),
state(5),
delete(6),
move(7),
copy(8),
reboot(9),
reorg(10),
unload(11),
put-all(12),
get-all(13),
load-keep-certs(14),
load-from-default(15)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Command for configuration handling. Possible values are :
save(1) = save configuration (to FLASH)
load(2) = load configuration (from FLASH)
put(3) = write configuration (via TFTP)
get(4) = read configuration (via TFTP)
state(5) = write complete configuration (via TFTP)
delete(6) = delete configuration (within FLASH)
move(7) = move configuration (within FLASH)
copy(8) = copy configuration (within FLASH)
reboot(9) = reboot the system
reorg(10) = reorganizes the flash
unload(11) = remove loaded configuration (from RAM)
put_all(12) = write configuration (via TFTP),
include not accessible variables
get_all(13) = read configuration (via TFTP),
including not accessible variables
load_keep_certs(14) = load configuration (from FLASH),
do not overwrite already loaded certificates
load-from-default(15) = load default configuration (from GENFILES)"
DEFVAL { save }
::= { biboAdmConfigEntry 1 }
biboAdmConfigObject OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Table object id (OID) to save/load. If this field is
set, only this table is saved/loaded. Otherwise all tables
are saved/loaded."
::= { biboAdmConfigEntry 2 }
biboAdmConfigPath OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"NAme of the configuration file in flash memory to save/load."
::= { biboAdmConfigEntry 3 }
biboAdmConfigPathNew OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"New name of configuration file in flash memory to move/copy"
::= { biboAdmConfigEntry 4 }
biboAdmConfigHost OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TFTP host's IP address to send/receive the file to/from.
The configuration is transfered directly from flash
memory (biboAdmConfigPath) to TFTP-file (biboAdmConfigFile)."
::= { biboAdmConfigEntry 5 }
biboAdmConfigState OBJECT-TYPE
SYNTAX INTEGER { todo(1), running(2), done(3), error(4),
delayed(5), stopped(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of this command (i.e., biboAdmConfigCmd).
todo(1) : the command will start soon
running(2) : the command is currently executing
done(3) : the command has successfully completed
error(4) : the command has failed (see biboAdmSyslogTable)
delayed(5) : the command is delayed due to given Timeout
stopped(6) : the command has stopped (Timeout set to -1)
"
DEFVAL { todo }
::= { biboAdmConfigEntry 6 }
biboAdmConfigFile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TFTP filename to read/write from/to the specified host.
The configuration file received is stored in flash memory
specified by biboAdmConfigPath.
The actual configuration is not changed."
::= { biboAdmConfigEntry 7 }
biboAdmConfigTimeout OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set this value (default 0) to delay a new command for this
amount of seconds.
The value is counting down to show the remaining time
(State=delayed).
To stop a scheduled but delayed command set this value
to -1.
timeout = 0 cmd executed immediately (default)
timeout > 0 cmd executed in timeout seconds (counting down)
timeout < 0 cmd execution stopped (deleted)
"
DEFVAL { 0 }
::= { biboAdmConfigEntry 8 }
biboAdmConfigHostUrl OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is a host URL specifying the location to
retrieve or store the configuration file.
The last filename part must be missing and is given
in biboAdmConfigFile.
If this object is given biboAdmConfigHost is ignored.
format:
http://server/path/
tftp://server/path/
xmodem:[1k][@9600]
"
::= { biboAdmConfigEntry 9 }
biboAdmConfigCertIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The index of the certificate to use (from the certTable).
Only used for biboAdmConfigCmd = get / get-all and for
use with biboAdmConfigHostUrl, of course.
If set to 0, no client certificate is used.
Default value is 0."
DEFVAL { 0 }
::= { biboAdmConfigEntry 10 }
---
---
---
biboAdmConfigDirName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the configuration file in flash memory."
::= { biboAdmConfigDirEntry 1 }
biboAdmConfigDirCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of tables saved in the file."
::= { biboAdmConfigDirEntry 2 }
biboAdmConfigDirContent OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description of directory's contents (e.g., <all> or a
series of table numbers)."
::= { biboAdmConfigDirEntry 3 }
biboAdmConfigDirSaveDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Date when configuration was saved. It reflects value of
variable biboExtAdmConfigSaveDate which gets set when the
configuration is saved to flash.
This also means: if a configuration doesn't contain this
variable no date is available."
::= { biboAdmConfigDirEntry 4 }
-- Board Table
biboAdmBoardTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmBoardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The biboAdmBoardTable lists information about the
installed communications modules. This table is updated
after every system boot up.
Creating entries: Entries are created by the system
upon detecting the installed hardware.
Deleting entries: Entries are removed by the system
as a result of removed hardware."
::= { admin 17 }
biboAdmBoardEntry OBJECT-TYPE
SYNTAX BiboAdmBoardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboABrdSlot, biboABrdUnit }
::= { biboAdmBoardTable 1 }
BiboAdmBoardEntry ::=
SEQUENCE {
biboABrdSlot INTEGER,
biboABrdType DisplayString,
biboABrdHWRelease DisplayString,
biboABrdFWRelease DisplayString,
biboABrdPartNo DisplayString,
biboABrdConnector INTEGER,
biboABrdUnit INTEGER,
biboABrdSerialNo DisplayString,
biboABrdCategory INTEGER
}
biboABrdSlot OBJECT-TYPE
SYNTAX INTEGER (0..31)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot, or location of this module."
::= { biboAdmBoardEntry 1 }
biboABrdType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of this module."
::= { biboAdmBoardEntry 2 }
biboABrdHWRelease OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hardware release of this module."
::= { biboAdmBoardEntry 3 }
biboABrdFWRelease OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware release of this module."
::= { biboAdmBoardEntry 4 }
biboABrdPartNo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The part number of this module."
::= { biboAdmBoardEntry 5 }
biboABrdConnector OBJECT-TYPE
SYNTAX INTEGER { auto(1), rj45(2), bnc(3), subd15(4),
rj45-10mbit-hdup(5), rj45-10mbit-fdup(6),
rj45-100mbit-hdup(7), rj45-100mbit-fdup(8) }
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The type of connector used for this module. For
modules with more than one connector this value can be
changed/switched by setting this object. For example,
the CM-BNCTP module supports both twisted pair
(RJ45) and 10Base2 (BNC) connectors. If this object is set
to 'AUTO' then the BRICK will automatically detect
which connector type is being used."
::= { biboAdmBoardEntry 6 }
biboABrdUnit OBJECT-TYPE
SYNTAX INTEGER (0..99)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The logical unit number of this interface."
DEFVAL { 0 }
::= { biboAdmBoardEntry 7 }
biboABrdSerialNo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of this module."
::= { biboAdmBoardEntry 8 }
biboABrdCategory OBJECT-TYPE
SYNTAX INTEGER {
system-board(1),
ethernet(2),
isdn-bri(3),
isdn-pmx(4),
pots(5),
dsl(6),
wlan(7),
tty(8),
dsp(9),
usb(10),
crypt(11),
mobile(12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Board category. It can be one of the following:
system-board(1),
ethernet(2),
isdn-bri(3),
isdn-pmx(4),
pots(5),
dsl(6),
wlan(7),
tty(8),
dsp(9),
usb(10),
crypt(11),
mobile(12)
It advices users of which MIB table to look at when searching
for additional configuration informations."
::= { biboAdmBoardEntry 9 }
-- user defined traps
biboAdmUsrTrapTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmUsrTrapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The biboAdmUsrTrapTable lists user-defined objects that
are used to create traps. These traps are sent locally, but
can also be sent to remote hosts using the
biboAdmTrapHostTable.
Creating entries: Entries are created by assigning the
biboATrpObj object a valid object identifier.
Deleting entries: Entries are removed by setting the
entry's biboATrpStatus object to 'delete'."
::= { admin 18 }
biboAdmUsrTrapEntry OBJECT-TYPE
SYNTAX BiboAdmUsrTrapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboATrpObj }
::= { biboAdmUsrTrapTable 1 }
BiboAdmUsrTrapEntry ::=
SEQUENCE {
biboATrpObj OBJECT IDENTIFIER,
biboATrpStatus INTEGER
}
biboATrpObj OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object identifier of an object to use. Each time this
object's value changes, a trap is created and sent. Either a
single leaf (single variable) or a table (of objects) can be
specified."
::= { biboAdmUsrTrapEntry 1 }
biboATrpStatus OBJECT-TYPE
SYNTAX INTEGER { valid(1), delete(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of this entry. Upon creation of a new entry,
this object's value is set to 'valid'."
DEFVAL { valid }
::= { biboAdmUsrTrapEntry 2 }
biboAdmDomainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Domain name."
DEFVAL { "" }
::= { admin 19 }
biboAdmNameServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of name server."
::= { admin 20 }
biboAdmNameServ2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of second name server."
::= { admin 21 }
biboAdmBridgeEnable OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled (2) }
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Sets bridging to enable / disable status."
DEFVAL { enabled }
::= { admin 22 }
biboAdmCapiTcpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TCP port for remote CAPI demon."
DEFVAL { 2662 }
::= { admin 23 }
biboAdmTraceTcpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TCP port for trace demon."
DEFVAL { 7000 }
::= { admin 24 }
biboAdmRipUdpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDP port for RIP. Setting this object
to zero disables RIP."
DEFVAL { 520 }
::= { admin 25 }
biboAdmSWVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the software release version. It's either identical to
biboAdmSWVersionOS or biboAdmSWVersionOEM."
::= { admin 26 }
biboAdmTimeServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the time server."
::= { admin 27 }
biboAdmTimeOffset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the time offset from GMT in seconds.
If the set value is in the range from -24 to 24,
it means hours, and is automatically converted
to seconds."
DEFVAL { 0 }
::= { admin 28 }
biboAdmConsoleSyslog OBJECT-TYPE
SYNTAX INTEGER { enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether to direct syslog messages to the
console."
DEFVAL { disable }
::= { admin 29 }
biboAdmSyslogTableLevel OBJECT-TYPE
SYNTAX INTEGER {
emerg(1),
alert(2),
crit(3),
err(4),
warning(5),
notice(6),
info(7),
debug(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies which message levels to post to the
biboAdmSyslogTable and the console, if applicable."
DEFVAL { info }
::= { admin 30 }
biboAdmSystemId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the system Identification String."
::= { admin 31 }
biboAdmLicInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmLicInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains an entry for each feature, that
can be activated by a license. The licenses have to
be entered in the biboAdmLicenseTable. This tabl
indicates the current state of the different licenses."
::= { admin 32 }
biboAdmLicInfoEntry OBJECT-TYPE
SYNTAX BiboAdmLicInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboAdmLicInfoType, biboAdmLicInfoStatus }
::= { biboAdmLicInfoTable 1 }
BiboAdmLicInfoEntry ::=
SEQUENCE {
biboAdmLicInfoType INTEGER,
biboAdmLicInfoStatus INTEGER,
biboAdmLicInfoId DisplayString,
biboAdmLicInfoSlot INTEGER,
biboAdmLicInfoMaxLic Counter32,
biboAdmLicInfoInUse Counter32,
biboAdmLicInfoHwSerial DisplayString,
biboAdmLicInfoUnit INTEGER,
biboAdmLicInfoLimit Counter32,
biboAdmLicInfoFree Counter32
}
biboAdmLicInfoType OBJECT-TYPE
SYNTAX INTEGER {
ip(1), capi(2), bridge(3), x25(4), ipx(5), stac(6),
frame-relay(7), tapi(8), ospf(9), extended-lan(10),
tunneling(11), taf(12), extended-wan(13), leased-line(14),
lcr(15),
app-power-phone(17), app-operator-desk(18),
app-voice-mail-server(19), app-accounting-tool(20),
app-intelligent-voice(21), app-6(22),
e25(29),
ipsec(33), ipseccb-ipxfer(34), bgp(35),
uefs(36), siplan(37), siptrunk(38), pim(39),
call-by-call(40), fax(41), sipout(42), brrp(43),
wlan-controller(44), terminal-option(45),
data-encr-accel(46), voice-mail-system(47), pptp(48),
ethernet(128), bri(129), g703(130), pri(131),
modem(132), g7032pri(133), slots(134), e3(135),
serial(136), shdsl(137), vdsl(138)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The licenseable feature."
::= { biboAdmLicInfoEntry 1 }
biboAdmLicInfoStatus OBJECT-TYPE
SYNTAX INTEGER {
builtin(1), valid-license(2), invalid-license(3), no-license(4),
erase-internal(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the license."
::= { biboAdmLicInfoEntry 2 }
biboAdmLicInfoId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The complete serial id string of the special license."
::= { biboAdmLicInfoEntry 3 }
biboAdmLicInfoSlot OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In case of a hardware license corresponding to a dedicated
module serial number, it is the slot number of the module."
::= { biboAdmLicInfoEntry 4 }
biboAdmLicInfoMaxLic OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The max number of allowed chunks."
::= { biboAdmLicInfoEntry 5 }
biboAdmLicInfoInUse OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of chunks in use."
::= { biboAdmLicInfoEntry 6 }
biboAdmLicInfoHwSerial OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The complete serial id string of the special license."
::= { biboAdmLicInfoEntry 7 }
biboAdmLicInfoUnit OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In case of a hardware license corresponding to a dedicated
module serial number, it is the unit number of the module."
::= { biboAdmLicInfoEntry 8 }
biboAdmLicInfoLimit OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of licenseable chunks."
::= { biboAdmLicInfoEntry 9 }
biboAdmLicInfoFree OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of free default licences."
::= { biboAdmLicInfoEntry 10 }
biboAdmBootpRelayServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object contains the destination IP address to
which BOOTP/DHCP request are forwarded by the
BIANCA/BRICK BOOTP relay agent.
If this entry is empty no BOOTP forwarding is done."
::= { admin 33 }
biboAdmRadiusServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object contains the IP address of the RADIUS
server (remote dial in user service). If set to 0.0.0.0
RADIUS services are generally disabled (default).
The corresponding Radius password is configured in the
biboAdmRadiusSecret variable."
::= { admin 34 }
biboAdmLocalPPPIdent OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the local ID string used for PPP authentication
(PAP/CHAP). In pre4.3 versions the sysName has been used
as the local ID string. This is, for increased ease and
transparency of system configuration, no longer true."
DEFVAL { "" }
::= { admin 35 }
biboAdmHttpTcpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TCP port for the HTTP server. Default port is 80, 0 disables
the HTTP server."
DEFVAL { 80 }
::= { admin 36 }
biboAdmTapiTcpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TCP port for remote TAPI demon."
DEFVAL { 2663 }
::= { admin 37 }
biboAdmTimeProtocol OBJECT-TYPE
SYNTAX INTEGER {
none(1),
time-udp(2),
time-tcp(3),
time-sntp(4),
isdn(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field specifies from which source the bricks internal
clock is synchronised:
none(1) = no time synchronisation
time-udp(2) = UDP/TIME (RFC 868), from biboAdmTimeServer
time-tcp(3) = TCP/TIME (RFC 868), from biboAdmTimeServer
time-sntp(4) = SNTP (RFC 1769), from biboAdmTimeServer
isdn(5) = examines ISDN time, from controller stack 0"
DEFVAL { time-udp }
::= { admin 38 }
biboAdmTimeUpdate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the interval for timeserver requests (in seconds).
If the set value is in the range from -24 to 24,
it means hours, and is automatically converted
to seconds.
If the time comes from ISDN, the time is updated
with the next call after this interval."
DEFVAL { 24 }
::= { admin 39 }
biboAdmWINS1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the WINS server (NetBIOS Name Server)."
::= { admin 40 }
biboAdmWINS2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the alternate WINS server."
::= { admin 41 }
admin-2 OBJECT IDENTIFIER
::= { bibo 22 }
-- Card Table
biboAdmCardTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The biboAdmCardTable lists installed cards."
::= { admin 42 }
biboAdmCardEntry OBJECT-TYPE
SYNTAX BiboAdmCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboACrdSlot }
::= { biboAdmCardTable 1 }
BiboAdmCardEntry ::=
SEQUENCE {
biboACrdSlot INTEGER,
biboACrdType DisplayString,
biboACrdState INTEGER,
biboACrdCpldVersion DisplayString,
biboACrdFpgaVersion DisplayString,
biboACrdTemp INTEGER,
biboACrdTempAlarmThreshold INTEGER,
biboACrdTempAlarmTrap INTEGER,
biboACrdAdmin INTEGER,
biboACrdTempAlarmThresholdCriticalLow INTEGER
}
biboACrdSlot OBJECT-TYPE
SYNTAX INTEGER (0..31)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot, or location of this card."
::= { biboAdmCardEntry 1 }
biboACrdType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of this card."
::= { biboAdmCardEntry 2 }
biboACrdState OBJECT-TYPE
SYNTAX INTEGER { down(1), running(2), fail(3), stopped(4),
stopping(5), starting (6) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of the card."
DEFVAL { down }
::= { biboAdmCardEntry 3 }
biboACrdCpldVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of onboard CPLD."
::= { biboAdmCardEntry 4 }
biboACrdFpgaVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of loaded FPGA firmware."
::= { biboAdmCardEntry 5 }
biboACrdTemp OBJECT-TYPE
SYNTAX INTEGER (0..250)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows the actual card temperature
in the unit Celsius."
::= { biboAdmCardEntry 6 }
biboACrdTempAlarmThreshold OBJECT-TYPE
SYNTAX INTEGER (0..250)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Card temperature threshold."
::= { biboAdmCardEntry 7 }
biboACrdTempAlarmTrap OBJECT-TYPE
SYNTAX INTEGER { normal(1), critical(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the card temperature raises above the threshold,
a trap is generated every 60 seconds."
::= { biboAdmCardEntry 8 }
biboACrdAdmin OBJECT-TYPE
SYNTAX INTEGER { up(1), down(2), reconfig(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administrative manipulation of card state."
::= { biboAdmCardEntry 9 }
biboACrdTempAlarmThresholdCriticalLow OBJECT-TYPE
SYNTAX INTEGER (0..250)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower Card temperature threshold to return state from critical
to normal. Mustn't exceed biboACrdTempAlarmThreshold!
When temperature reaches biboACrdTempAlarmThreshold state
changes to critical. This state persists until temperature
falls below biboACrdTempAlarmThreshUncriticalLow where state
changes back to normal."
::= { biboAdmCardEntry 10 }
biboAdmTraps OBJECT IDENTIFIER ::= { admin 43 }
biboAdmTrapACrdTempCritical TRAP-TYPE
ENTERPRISE biboAdmTraps
VARIABLES {
sysDescr,
sysName,
biboACrdSlot,
biboACrdType,
biboACrdState,
biboACrdTemp,
biboACrdTempAlarmThreshold
}
DESCRIPTION "This trap signifies that the Card temperature raises
above the critical alarm-threshold"
::= 1
biboAdmTrapACrdTempOk TRAP-TYPE
ENTERPRISE biboAdmTraps
VARIABLES {
sysDescr,
sysName,
biboACrdSlot,
biboACrdType,
biboACrdState,
biboACrdTemp,
biboACrdTempAlarmThreshold
}
DESCRIPTION "A normal Card temperature has been restored."
::= 2
biboAdmTrapACrdDown TRAP-TYPE
ENTERPRISE biboAdmTraps
VARIABLES {
sysDescr,
sysName,
biboACrdSlot,
biboACrdType,
biboACrdState,
biboACrdTemp
}
DESCRIPTION "This trap signifies that the specified Card is down"
::= 3
biboAdmTrapACrdRunning TRAP-TYPE
ENTERPRISE biboAdmTraps
VARIABLES {
sysDescr,
sysName,
biboACrdSlot,
biboACrdType,
biboACrdState,
biboACrdTemp
}
DESCRIPTION "This trap signifies that the specified Card
is up/running"
::= 4
biboAdmTrapACrdFailed TRAP-TYPE
ENTERPRISE biboAdmTraps
VARIABLES {
sysDescr,
sysName,
biboACrdSlot,
biboACrdType,
biboACrdState,
biboACrdTemp
}
DESCRIPTION "This trap signifies that the specified Card
has failed"
::= 5
biboAdmTrapACrdStopped TRAP-TYPE
ENTERPRISE biboAdmTraps
VARIABLES {
sysDescr,
sysName,
biboACrdSlot,
biboACrdType,
biboACrdState,
biboACrdTemp
}
DESCRIPTION "This trap signifies that the specified Card
is stopped"
::= 6
-- biboAdmSnmpLinkTrapEvent OBJECT-TYPE
-- SYNTAX INTEGER { none(1),
-- any(2),
-- up(3),
-- down(4)
-- }
-- MAX-ACCESS read-write
-- STATUS current
--
-- DESCRIPTION
-- "Defines the ifOperStatus transition(s) of an ifTable object
-- that generates a SNMP linkUp/linkDown trap:
--
-- none : disable linkUp/linkDown trap generation.
--
-- any : enable bintec like trap generation.
-- - entering the up state generates a up trap
-- - any other state change generates a down trap
--
-- up : enable rfc1157 like trap generation.
-- - entering the up state generates a up trap
-- - leaving the up state generates a down trap
--
-- down : enable rfc2233 like trap generation.
-- - leaving the down state generates a up trap
-- - entering the down state generates a down trap
--
-- Seven parameters are sent in each linkUp/linkDown trap pdu:
-- 1. ifEntry.ifIndex (mandatory for linkUp/Down traps)
-- 2. ifEntry.ifDescr
-- 3. ifEntry.ifType
-- 4. ifEntry.ifAdminStatus
-- 5. ifEntry.ifOperStatus
-- 6. system.Description
-- 7. system.Name"
-- DEFVAL { up }
-- ::= { admin 44 }
biboAdmExtendedBanner OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is an additional banner message which is displayed
after the standard welcome message at boot time.
This message is typically used to display info regarding
a special configuration of the router."
DEFVAL { "" }
::= { admin 45 }
biboAdmBootpRelayServ2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object contains the second destination IP address
to which BOOTP/DHCP request are forwarded by the
BIANCA/BRICK BOOTP relay agent.
If this entry is empty no BOOTP forwarding is done."
::= { admin 47 }
biboAdmTimedBootPolicy OBJECT-TYPE
SYNTAX INTEGER {
normal(1), -- same behaviour as in normal operation
aggressive(2), -- send more frequent retries for 10 minutes
endless(3) -- same as aggressive, do not stop at all
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the frequency with which the timed
requests the time (using the specified time protocol)
after system startup until the first reply is received.
Possible values:
normal(1): -- 5 retries after 1, 2, 4, 8, 16 minutes
aggressive(2): -- retry 10 minutes with 1, 2, 4, 8, 10, 10, ...
seconds of timeout
endless(3): -- same as aggressive except there is no time
limit."
DEFVAL { endless }
::= { admin 48 }
biboAdmAcctlogFormat OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the format of accounting messages sent by
the syslog protocol. The format can consist of any order
of random strings, backslash escaped sequences like '\t','\n', etc.
or the following format tags:
Tag Meaning
%d Date the session opened; in DD.MM.YY format.
%t Time the session opened: in HH:MM:SS format
%a session age in seconds
%c protocol type
%i source IP address
%r source port
%f source interface index
%I destination IP address
%R destination port
%F destination interface index
%p outgoing packets
%o outgoing octets
%P incoming packets
%O incoming octets
%s message sequence counter
%% '%'
The format for accounting messages is per default:
'INET: %d %t %a %c %i:%r/%f -> %I:%R/%F %p %o %P %O [%s]'
"
DEFVAL { "INET: %d %t %a %c %i:%r/%f -> %I:%R/%F %p %o %P %O [%s]" }
::= { admin 49 }
biboAdmAcctlogMaxEntries OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum Number of accounting messages stored in memory."
DEFVAL { 20 }
::= { admin 50 }
biboAdmAcctlogTable OBJECT-TYPE
SYNTAX SEQUENCE OF BiboAdmAcctlogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The biboAdmAcctlogTable keeps track of accounting messages
received. The columns specify attributes for each message generated. As
this information only reports events on the system, all
fields are read-only.
Creating entries: Entries can only be created by the
system and are made each time a message for accounting is
generated.
Deleting entries: Entries are removed by the system
the messages are sent to the loghost."
::= { admin 51 }
biboAdmAcctlogEntry OBJECT-TYPE
SYNTAX BiboAdmAcctlogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboAdmAcctlogLevel }
::= { biboAdmAcctlogTable 1 }
BiboAdmAcctlogEntry ::=
SEQUENCE {
biboAdmAcctlogTimeStamp Date,
biboAdmAcctlogLevel INTEGER,
biboAdmAcctlogMessage DisplayString,
biboAdmAcctlogSubject INTEGER
}
biboAdmAcctlogTimeStamp OBJECT-TYPE
SYNTAX Date
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time message was generated."
::= { biboAdmAcctlogEntry 1 }
biboAdmAcctlogLevel OBJECT-TYPE
SYNTAX INTEGER {
emerg(1),
alert(2),
crit(3),
err(4),
warning(5),
notice(6),
info(7),
debug(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Level of acct message."
DEFVAL { info }
::= { biboAdmAcctlogEntry 2 }
biboAdmAcctlogMessage OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The text of the acct message."
::= { biboAdmAcctlogEntry 4 }
biboAdmAcctlogSubject OBJECT-TYPE
SYNTAX INTEGER {
acct(1),
isdn(2),
inet(3),
x25(4),
ipx(5),
capi(6),
ppp(7),
bridge(8),
config(9),
snmp(10),
x21(11),
token(12),
ether(13),
radius(14),
tapi(15),
ospf(16),
fr(17),
modem(18),
rip(19),
atm(20),
pabx(21),
ipsec(22),
tty(23),
bgp(24),
tacacs(25),
brrp(26),
mps(27),
voip(28),
tr069(29),
wlan(30),
usb(31),
http(32),
inet6(33),
wlc(34),
ldap(35),
osp(36),
wtp(37),
tremp(38),
presence(39)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subject of the acct message."
DEFVAL { acct }
::= { biboAdmAcctlogEntry 5 }
biboAdmSyslogEntry OBJECT-TYPE
SYNTAX BiboAdmSyslogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { biboAdmSyslogTimeStamp, biboAdmSyslogLevel }
::= { biboAdmSyslogTable 1 }
BiboAdmSyslogEntry ::=
SEQUENCE {
biboAdmSyslogTimeStamp Date,
biboAdmSyslogLevel INTEGER,
biboAdmSyslogMessage DisplayString,
biboAdmSyslogSubject INTEGER
}
biboAdmSyslogTimeStamp OBJECT-TYPE
SYNTAX Date
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time message was generated."
::= { biboAdmSyslogEntry 1 }
biboAdmSyslogLevel OBJECT-TYPE
SYNTAX INTEGER {
emerg(1),
alert(2),
crit(3),
err(4),
warning(5),
notice(6),
info(7),
debug(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Level of syslog message."
DEFVAL { emerg }
::= { biboAdmSyslogEntry 2 }
biboAdmSyslogMessage OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The text of the syslog message."
::= { biboAdmSyslogEntry 4 }
biboAdmSyslogSubject OBJECT-TYPE
SYNTAX INTEGER {
acct(1),
isdn(2),
inet(3),
x25(4),
ipx(5),
capi(6),
ppp(7),
bridge(8),
config(9),
snmp(10),
x21(11),
token(12),
ether(13),
radius(14),
tapi(15),
ospf(16),
fr(17),
modem(18),
rip(19),
atm(20),
pabx(21),
ipsec(22),
tty(23),
bgp(24),
tacacs(25),
brrp(26),
mps(27),
voip(28),
tr069(29),
wlan(30),
usb(31),
http(32),
inet6(33),
wlc(34),
ldap(35),
osp(36),
wtp(37),
tremp(38),
presence(39)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subject of the syslog message."
DEFVAL { acct }
::= { biboAdmSyslogEntry 5 }
biboAdmTimeSource OBJECT-TYPE
SYNTAX INTEGER {
none(1), -- time has not been initialized yet
rtc(2), -- time has been initialized by real time clock
manual(3), -- time has been set manually
isdn(4), -- time has been set by ISDN
server(5), -- time has been received from a time server
gps(6) -- time has been received from GPS
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source of the current system time."
DEFVAL { none }
::= { admin 52 }
biboAdmIsdnTimeUpdate OBJECT-TYPE
SYNTAX INTEGER {
enabled(1), -- time retrieval over ISDN is enabled
disabled(2), -- time retrieval over ISDN is disabled
convert(3) -- convert setting in TimeProtocol
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether a time value which has been
retrieved via ISDN should be used to set the system time.
Note that the time retrieved via ISDN is ignored if the system
time has been set by a time server previously."
DEFVAL { convert }
::= { admin 53 }
biboAdmSyslogTcpRetries OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of attempts to connect a syslog server over TCP."
DEFVAL { 3 }
::= { admin 55 }
biboAdmSWVersionOS OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the OS software release version as it was always found
in biboAdmSWVersion."
::= { admin 56 }
biboAdmSWVersionOEM OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the OEM software release version.
Either there's a separate OEM version defined or this is
identical to biboAdmSWVersionOS."
::= { admin 57 }
biboAdmStartMode OBJECT-TYPE
SYNTAX INTEGER { normal(1), service(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If service procedure is activated, mode is set to service,
otherwise mode is set to normal."
::= { admin 58 }
extadmin OBJECT IDENTIFIER
::= { admin-2 1 }
biboExtAdmMonAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the host machine running the Activity
Monitor program. This program displays the information
about the current state of all interfaces.
Periodically UDP packets are send to this IP address,
to refresh the data automatically on the target host.
The value 255.255.255.255 represents the broadcast address
of the first LAN interface (e.g. 10.255.255.255), so
more than one Activity Monitor on different hosts can
receive the data."
DEFVAL { 'ffffffff'H }
::= { extadmin 1 }
biboExtAdmMonPort OBJECT-TYPE
SYNTAX INTEGER (0 .. 65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDP port for the Activity Monitor protocol."
DEFVAL { 2107 }
::= { extadmin 2 }
biboExtAdmMonType OBJECT-TYPE
SYNTAX INTEGER {
off(1), physical(2), physical-virt(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter configures the content of the Activity Monitor
packets, or disables it:
off : Activity Monitor disabled
physical : send only physical interfaces information
physical-virt: send physical and virtual interface
information."
DEFVAL { off }
::= { extadmin 3 }
biboExtAdmMonUpdate OBJECT-TYPE
SYNTAX INTEGER (0 .. 60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the time interval for the Activity Monitor
for sending packets (in seconds) to the specified IP address.
The value of 0 disables sending Activity Monitor packets."
DEFVAL { 5 }
::= { extadmin 4 }
biboExtAdmProcRouted OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled (2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"enabled: The routed process is running.
RIP and/or OSPF are available (subject to licenses).
This is the default behavior of the system.
Hints:
RIP may be enabled/disabled by 'biboAdmRipUdpPort'
OSPF may be enabled/disabled by 'ospfAdminStat'
RIP may be if-specific ena/disabled by 'ipExtIfRip*'
OSPF may be if-specific ena/disabled by 'ipExtIfOspf'
... but a running routed process consumes CPU-Time
to keep in sync with interface/routing tables - even
if RIP and OSPF are disabled (global or if-specific).
disabled: The routed process is stopped.
RIP and/or OSPF are unavailable.
Hints:
A stopped routed process consumes no CPU-Time.
Set ipExtAdmProcRouted to 'disabled' is recommended
if both protocols (RIP and OSPF) not used in the
specific router environment.
"
DEFVAL { enabled }
::= { extadmin 5 }
biboExtAdmProcWatchDog OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled (2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"enabled: The watchd process is running.
up/down transitions on interfaces delivered by
various protocols like ping/ifOperStatus/VRRP
are processed by parsing a task table and slave
interfaces are switched up/down according to the
task definition.
disabled: The watchd process is stopped."
DEFVAL { disabled }
::= { extadmin 7 }
biboExtAdmProcSSHd OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled (2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"enabled: The sshd process is running.
disabled: The sshd process is stopped."
DEFVAL { enabled }
::= { extadmin 8 }
biboExtAdmScheduleInterval OBJECT-TYPE
SYNTAX INTEGER (0 .. 65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the time interval in seconds for the Schedule
daemon watching any events (recommended value: 300).
The value 0 disables the scheduler.
Referring table: scheduleTable"
DEFVAL { 0 }
::= { extadmin 9 }
biboExtAdmUpdatePath OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default URL for automatic SW updates, e.g. http://server/path/
This setting is IGNORED if chkUpdSrvAdminOperURL is not empty.
Otherwise, related chkUpdSrv entry is allocated for it.
If URL does NOT end with '/' then it is considered being
complete and copied to related chkUpdSrvDownloadLink.
Otherwise, following parts are appended automatically.
'<sysname>[-<mode>]/<sysname>[-<mode>]-s_current'"
DEFVAL { "http://system-update.eu/" }
::= { extadmin 10 }
biboExtAdmBackRtVerify OBJECT-TYPE
SYNTAX INTEGER { always(1), interface-dependent(2), never(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object activates an additional check for incoming
packets. If set to always (1), incoming packets are only
accepted if return packets sent back to their source IP
address would be sent over the same interface. This prevents
packets being passed from untrusted interfaces to this
interface. If set to interface-dependent (2), this check
will be performed only if enabled for the associated ingress
interface (see ipExtIfBackRtVerify). If set to never (2),
this check will be never performed, regardless wether enabled
or not for the associated interface."
DEFVAL { interface-dependent }
::= { extadmin 11 }
biboExtAdmRerouteViaDefault OBJECT-TYPE
SYNTAX INTEGER { disabled(1), enabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object controls the behaviour of the routing algorithm
when a network route exists for routing a packet, but is
temporarily unusable because the status of the associated
interface prevents transmission. In such a case, the routing
algorithm tries to select an alternate route to allow the
packet to reach its destination. If set to disabled (1),
default routes are discarded during the search for a suitable
alternate route. If set to enabled (2), a default route may
be selected for rerouting provided it is the most appropriate
route available."
DEFVAL { disabled }
::= { extadmin 12 }
biboExtAdmGUILanguage OBJECT-TYPE
SYNTAX DisplayString (SIZE(3))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the language used within the graphical
user interface (currently new web based interface only).
Valid abbreviations (in principle) are defined in ISO 639-2."
DEFVAL { "eng" }
::= { extadmin 13 }
biboExtAdmIpLogging OBJECT-TYPE
SYNTAX BITS { nat(0), tcppr(1), dns(2), ips(3), acl(4) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This bitfield enables logging of dedicated subsystems
within the INET subject:
nat : NAT
tcppr : TCP processing (MSS clamping, ...)
dns : DNS
ips : IP session management
acl : Local Services Access Control
."
DEFVAL { { nat, tcppr, dns, ips, acl } }
::= { extadmin 14 }
biboExtAdmRadiusNasId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An administratively-assigned NAS identifier for this managed
node. If configured this variable is used for each RADIUS
request in order to set the associated NAS-IDENTIFIER RADIUS
attribute value."
::= { extadmin 15 }
biboExtAdmConfigSaveDate OBJECT-TYPE
SYNTAX Date
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp when configuration gets/got saved (system local
time)."
DEFVAL { 0 }
::= { extadmin 17 }
biboExtAdmSnmpShellPrompt OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines prompt of application SNMP shell.
A set of escape sequences is defined with escape character
being a backslash '\':
- 'e': gets replaced by escape character (0x1b)
- 'h': gets replaced by system name (i.e. host)
- 'T': can be used for MIB context replacements ...
%n -> current MIB table name
%# -> current MIB table number
%g -> current MIB group number
A longer string can be put within parentheses '(' ')'
causing the whole string to be left out if no context
is available instead of only the MIB variables.
Examples, assuming context MIB table 'system':
String Yields
------------------------+------------------------
\T%n | 'system'
\T( MIB{%n/#%#/g:%g\)}) | ' MIB{system/#1/g:1}'
- 'l': gets replaced by log name (i.e. user, normally admin)
- 'd': can be used for date/time replacements with '%'
escaped replacements ...
%C -> century
%d -> day of month (01..31)
%D -> date in format 'MM/DD/YY'
%F -> date in format YYYY-MM-DD
%H -> hour (00..23)
%I -> hour (01..12)
%j -> day of year (1..366)
%k -> hour ( 0..23)
%l -> hour ( 1..12)
%m -> month (01..12)
%M -> minute (00..59)
%p -> AM/PM
%P -> am/pm
%R -> 24 hour time in format HH:MM
%s -> seconds sincs 1970-01-01 00:00:00 UTC
%S -> seconds (00..59)
%T -> 24 hour time in format HH:MM:SS
%u -> day of week (1..7)
%w -> day of week (0..6)
%y -> year (last two digits, 00..99)
%Y -> year
A longer string can be put within parentheses '(' ')'
to save repetitions of leading '\d' for every
replacement.
- 'u': gets replaced by system's uptime in format
[D ]HH:MM:SS
Default value is '\h:\t(%n)> '."
DEFVAL { "\h:\T(%n)> " }
::= { extadmin 18 }
biboExtAdmMinArpLifeTime OBJECT-TYPE
SYNTAX INTEGER (0 .. 86400)
UNITS "s"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the minimum lifetime (in seconds)
of ipNetToMediaTable entries."
DEFVAL { 0 }
::= { extadmin 19 }
biboExtAdmInitialGUIView OBJECT-TYPE
SYNTAX INTEGER { full-access(1), user(2), initial-operation(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object controls the initial GUI behavior for admin login
for boxes with supports of 'GUI Views' and 'Initial Operation View' in GUI.
full-access: show the complete admin navigation.
user: show the user view
initial-operation: show the initial operation view.
If initial operation is not supported fall back to user view,
if user view is not supported fall back to full access."
DEFVAL { initial-operation }
::= { extadmin 21 }
-- Time Server Table
timeServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF TimeServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the list of time servers."
::= { admin 54 }
timeServerEntry OBJECT-TYPE
SYNTAX TimeServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object contains a time server entry."
INDEX {
timeSrvPriority
}
::= { timeServerTable 1 }
TimeServerEntry ::=
SEQUENCE {
timeSrvPriority INTEGER,
timeSrvProtocol INTEGER,
timeSrvAddress DisplayString
}
timeSrvPriority OBJECT-TYPE
SYNTAX INTEGER (0..128)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority of the time server.
The time servers are queried in the order of ascending priority
value, i.e. 0 first, 1 second ... ."
::= { timeServerEntry 1 }
timeSrvProtocol OBJECT-TYPE
SYNTAX INTEGER {
delete(1), -- delete this entry
time-udp (2), -- time protocol over udp
time-tcp (3), -- time protocol over tcp
sntp (4), -- sntp protocol
disabled (5) -- disabled
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The protocol used for the time server."
DEFVAL { sntp }
::= { timeServerEntry 2 }
timeSrvAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP Address or DNS name of the time server. If a DNS name
is specified here, it is resolved on demand."
::= { timeServerEntry 3 }
-- End Time Server Table
biboAdmNTPServer OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
enabled(2),
clientdepend(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field controls the NTP server. If it is set to
disabled(1) client requests will be ignored. Setting it
to enabled(2) on every client request a server answer
is transmitted. In clientdepend(3) mode only a answer to
a client request is sent if an external reference exists."
DEFVAL { disabled }
::= { admin 59 }
biboAdmTimeZone OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the currently set timezone. The corresponding
timezone must exist in timeZoneTable."
::= { admin 60 }
timeZoneTable OBJECT-TYPE
SYNTAX SEQUENCE OF TimeZoneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the list of availabe timezones."
::= { admin 61 }
timeZoneEntry OBJECT-TYPE
SYNTAX TimeZoneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object contains a time zone entry."
INDEX {
timeZoneIndex
}
::= { timeZoneTable 1 }
TimeZoneEntry ::=
SEQUENCE {
timeZoneIndex INTEGER,
timeZoneName DisplayString,
timeZoneAlias DisplayString,
timeZoneOffset INTEGER
}
timeZoneIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index in Timezone Table."
::= { timeZoneEntry 1 }
timeZoneName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Name of a Timezone."
::= { timeZoneEntry 2 }
timeZoneAlias OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The abbreviation of a timezone."
::= { timeZoneEntry 3 }
timeZoneOffset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timezone offset from UTC in seconds. Note that this contains
no information about daylight saving for this timezone"
::= { timeZoneEntry 4 }
ntpServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF NtpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of DHCP-client-learned NTP-servers, relevant only if
related administrative table timeServer is empty."
::= { admin 64 }
ntpServerEntry OBJECT-TYPE
SYNTAX NtpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object contains a time server entry."
INDEX { ntpServerPriority }
::= { ntpServerTable 1 }
NtpServerEntry ::=
SEQUENCE {
ntpServerPriority INTEGER,
ntpServerAddress DisplayString
}
ntpServerPriority OBJECT-TYPE
SYNTAX INTEGER (0..128)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Priority of NTP-server. Lower value means 'preferred'."
::= { ntpServerEntry 1 }
ntpServerAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP-address or FQDN of NTP-server."
::= { ntpServerEntry 2 }
sysStat OBJECT IDENTIFIER
::= { sys 500 }
sysStatBootConfig OBJECT-TYPE
SYNTAX INTEGER {
none(1), -- no config at all
bootfac(2), -- factory boot config
default(3), -- default config
boot(4) -- boot config from flash
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"After system boot this variable shows which configuration
was loaded:
none: no configuration whatsoever
bootfac: factory boot configuration
default: default configuration as provided by image
boot: configuration found in flash."
DEFVAL { none }
::= { sysStat 1 }
sysStatFunctionState OBJECT-TYPE
SYNTAX INTEGER { on(1), off(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable contains the current function state, which is
toggeled by pressing the function button on the device."
::= { sysStat 2 }
-- next variable is intentionally saved to indicate operation mode
-- a configuration was saved with
sysStatOperationMode OBJECT-TYPE
SYNTAX INTEGER { plain(0), mgw(1), pbx(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable defines the operation mode of the device
concerning telephony functionality.
If any voice functionality is integrated it can be either
mgw(1) for Media GateWay functionality of pbx(2) for a
full-fledged telephone system.
For systems w/o voice functionality the variable has value
plain(0)."
::= { sysStat 3 }
sysStatConfigConvert OBJECT-TYPE
SYNTAX INTEGER {
idle(1),
start(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable handles the Configuration Conversion from
pbx to mgw (later may be mgw to pbx)
For systems w/o voice functionality the variable has value
plain(0)."
DEFVAL{ idle }
::= { sysStat 4 }
sysStatConfigConvertState OBJECT-TYPE
SYNTAX INTEGER {
idle(1),
progress(2),
done(3),
failed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable handles the Configuration Conversion state
idle - No conversion in progress
progress - conversion in progress
done - conversion done
failed - conversion not possible
The value is set to progress during tne coversion progress.
On errer e.g configuration parameters already exists the
State is set to failed otherwise the State is set to idle
on success."
DEFVAL{ idle }
::= { sysStat 5 }
-- Trace buffers
traceBuffers OBJECT IDENTIFIER ::= { admin 65 }
-- administrative section
trcBufAdmin OBJECT IDENTIFIER ::= { traceBuffers 1 }
trcBufTable OBJECT-TYPE
SYNTAX SEQUENCE OF TrcBufEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the list trace buffers."
::= { trcBufAdmin 1 }
trcBufEntry OBJECT-TYPE
SYNTAX TrcBufEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object contains a trace buffer entry."
INDEX {
trcBufIndex
}
::= { trcBufTable 1 }
TrcBufEntry ::=
SEQUENCE {
trcBufIndex INTEGER,
trcBufDevice DisplayString,
trcBufMode INTEGER,
trcBufDataMode INTEGER,
trcBufSize INTEGER,
trcBufDataSize INTEGER,
trcBufDate INTEGER,
trcBufDescr DisplayString,
trcBufID Unsigned32,
trcBufOperation INTEGER
}
trcBufIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique Index of the trace buffer"
::= { trcBufEntry 1 }
trcBufDevice OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device representing this trace buffer"
::= { trcBufEntry 2 }
trcBufMode OBJECT-TYPE
SYNTAX INTEGER { single-shot(1), continuous(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates operation mode of trace buffer:
single-shot: just fill buffer up to maximum size
continuous: ring buffer mode
In single-shot mode every write attempt that would exceed
buffer limits, causes the buffer to get closed for writing
and the write attempt to fail (as any further attempts will).
In continuous mode the buffer is filled up to the maximum size,
and overwrite older data as new data gets written.
Variable is meaningless as long as variable trcBufOperation
is set to unused."
::= { trcBufEntry 3 }
trcBufDataMode OBJECT-TYPE
SYNTAX INTEGER {
bytestream(1),
message(2),
message-per-session(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates how trace buffer treats data written to it:
In bytestream mode no structure is imposed on written data,
buffer will get completely filled up if enough data is written.
Data overwrite is done byte-by-byte.
Mode message keeps the data structure in messages as passed
down to the trace buffer and allows for reading them back in
same portions as written.
Mode message-per-session treats any data written to trace
buffer between opening and closing it as one message.
Variable is meaningless as long as variable trcBufOperation
is set to unused.
NOTE: modes message and message-per-session only reflect the
last state; it depends on the application(s) writing to the
trace buffer in which mode it is used, so this variable can
toggle between these two states over time."
::= { trcBufEntry 4 }
trcBufSize OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum size of the trace buffer"
::= { trcBufEntry 5 }
trcBufDataSize OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current data size of the trace buffer"
::= { trcBufEntry 6 }
trcBufDate OBJECT-TYPE
SYNTAX Date
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time and date of the buffer creation"
::= { trcBufEntry 7 }
trcBufDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Optional descriptive information of the buffer's purpose."
DEFVAL { "" }
::= { trcBufEntry 8 }
trcBufID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Optional identificator for the buffer."
DEFVAL { "" }
::= { trcBufEntry 9 }
trcBufOperation OBJECT-TYPE
SYNTAX INTEGER {
unused(1),
idle(2),
read(3),
write(4),
read-write(5),
closed(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of the trace buffer:
unused: Device is free to be used
idle : Device is parameterized but not open
read : Device is open for reading
write: Device is open for writing
read-write: Device is open for reading and writing
full: No more writing to buffer possible
Value read-write would normally refer to two processes.
Value full indicates that no more data can be written to
buffer; it will remain unchanged until it gets deleted."
DEFVAL { unused }
::= { trcBufEntry 10 }
trcBufOper OBJECT IDENTIFIER ::= { traceBuffers 2 }
trcBufStatNBufs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of trace buffers supported by running firmware."
::= { trcBufOper 1 }
trcBufStat OBJECT IDENTIFIER ::= { traceBuffers 3 }
trcBufStatNUnused OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of trace buffers currently available to store data."
::= { trcBufStat 1 }
trcBufStatNOpen OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of trace buffers currently available for appending
data."
::= { trcBufStat 2 }
trcBufStatNFull OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of trace buffers currently available for reading data
only (i.e. in state 'full')."
::= { trcBufStat 3 }
-- End Trace Buffers
-- Begin automatic update check sechedule
chkUpdSrv OBJECT IDENTIFIER ::= { extadmin 22 }
chkUpdSrvAdmin OBJECT IDENTIFIER
::= { chkUpdSrv 1 }
chkUpdSrvAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
ondemand(2),
periodic(3),
checknow(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tells when to fetch/process the XML-file-contents pointed at
by chkUpdSrvAdminOperURL (if not empty string).
disabled: Clear chkUpdSrvAdminOperURL and supress further
fetch-attempts.
ondemand: Fetch at system-start and at every change of
chkUpdSrvAdminOperURL (unless empty string).
periodic: In addition to 'ondemand', fetch also periodically
with specified chkUpdSrvAdminInterval.
checknow: Fetch now and switch-back AdminStatus to previous
value (i.e. to disabled, ondemand, periodic).
"
DEFVAL { periodic }
::= { chkUpdSrvAdmin 1 }
chkUpdSrvAdminInterval OBJECT-TYPE
SYNTAX INTEGER (1..8191)
UNITS "h"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Period in hours for checking for available updates.
Default value is once a week (7 * 24 = 168 hours).
Ignored if chkUpdSrvAdminStatus is NOT periodic.
"
DEFVAL { 168 }
::= { chkUpdSrvAdmin 2 }
chkUpdSrvAdminURL OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets location of the XML description file, UNLESS value is set
already at compile-time (see chkUpdSrvAdminOperURL).
"
::= { chkUpdSrvAdmin 3 }
chkUpdSrvAdminOperURL OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shows location of the XML description file, coming from either
chkUpdSrvAdminURL or fixed compile-time-URL, or forced to empty
string if chkUpdSrvAdminStatus is disabled.
If resulting string is empty then chkUpdSrvTable is filled for
biboExtAdmUpdatePath instead, unless also empty.
"
::= { chkUpdSrvAdmin 4 }
chkUpdSrvAdminDefaultDigestType OBJECT-TYPE
SYNTAX INTEGER {
crc32(1),
sha256(2),
signature(3),
none(16)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default digest-checking-method (if not specified in XML-file)
"
DEFVAL {sha256 }
::= { chkUpdSrvAdmin 5 }
chkUpdSrvAdminOperStatus OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
idle(2),
checking(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current activity and state.
"
DEFVAL { idle }
::= { chkUpdSrvAdmin 6 }
chkUpdSrvAdminLastSuccessfulCheckTime OBJECT-TYPE
SYNTAX Date
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If not 0, tells when chkUpdSrvTable was last updated
successfully for contents coming from either
chkUpdSrvAdminOperURL or biboExtAdmUpdatePath.
Is reset to 0 whenever chkUpdSrvAdminOperURL changes.
"
::= { chkUpdSrvAdmin 7 }
chkUpdSrvAdminLastFailedCheckTime OBJECT-TYPE
SYNTAX Date
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If not 0, tells time of last unsuccessful update-attempt.
If bigger than chkUpdSrvAdminLastSuccessfulCheckTime then
retries are scheduled (see chkUpdSrvAdminLastFailedTries).
Is reset to 0 whenever chkUpdSrvAdminOperURL changes.
"
::= { chkUpdSrvAdmin 8 }
chkUpdSrvAdminLastFailedCheckInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Display-status of last unsuccessful update-attempt.
(Not updated for successful checks.)
Is flushed to empty whenever chkUpdSrvAdminOperURL changes.
"
DEFVAL { "" }
::= { chkUpdSrvAdmin 9 }
chkUpdSrvAdminActiveProductClass OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently active product-class.
"
::= { chkUpdSrvAdmin 10 }
chkUpdSrvAdminAlternativeProductClass OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alternative product-class (empty if unknown).
"
::= { chkUpdSrvAdmin 11 }
chkUpdSrvAdminLastFailedTries OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If not 0, tells that retries are scheduled for latest failed
update-check, and how many tries have been done yet (see also
chkUpdSrvAdminLastFailedCheckTime for related timestamp).
Is reset to 0 whenever update-check succeeds or restarts (e.g.
due to changed chkUpdSrvAdminOperURL).
"
::= { chkUpdSrvAdmin 12 }
chkUpdSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChkUpdSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of available update-files. When update-command is called
with dummy-URL 'http:', it looks for a matching default-entry
in this table to get a proper chkUpdSrvDownloadLink.
"
::= { chkUpdSrv 2 }
chkUpdSrvEntry OBJECT-TYPE
SYNTAX ChkUpdSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Detailed info per listed update-file.
"
INDEX {
chkUpdSrvIndex
}
::= { chkUpdSrvTable 1 }
ChkUpdSrvEntry ::=
SEQUENCE {
chkUpdSrvIndex INTEGER,
chkUpdSrvProductClass DisplayString,
chkUpdSrvFileType INTEGER,
chkUpdSrvFileDescr DisplayString,
chkUpdSrvFileVersion DisplayString,
chkUpdSrvFileDigestType INTEGER,
chkUpdSrvFileDigestValue DisplayString,
chkUpdSrvDownloadLink DisplayString,
chkUpdSrvRelNoteLink DisplayString,
chkUpdSrvFileUpdatable INTEGER
}
chkUpdSrvIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique identification of the entry.
"
::= { chkUpdSrvEntry 1 }
chkUpdSrvProductClass OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Product-class for file.
"
::= { chkUpdSrvEntry 2 }
chkUpdSrvFileType OBJECT-TYPE
SYNTAX INTEGER {
blup(1),
boss(2),
logic(3),
bootmon(4),
adsl(5),
vdsl(6),
gphy(7),
systelarchive(20),
voicemailarchive(21),
guixlation(30),
thirdparty(50)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of file.
"
DEFVAL { blup }
::= { chkUpdSrvEntry 3 }
chkUpdSrvFileDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Additional file-description,
used for language and third party files.
"
::= { chkUpdSrvEntry 4 }
chkUpdSrvFileVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of file (empty if unknown).
"
::= { chkUpdSrvEntry 5 }
chkUpdSrvFileDigestType OBJECT-TYPE
SYNTAX INTEGER {
crc32(1),
sha256(2),
signature(3),
none(16)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Method to be used for digest-checking
"
DEFVAL {sha256 }
::= { chkUpdSrvEntry 6 }
chkUpdSrvFileDigestValue OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hash/signature for this file, depending on digest-type.
"
::= { chkUpdSrvEntry 7 }
chkUpdSrvDownloadLink OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"URL for downloading this file.
"
::= { chkUpdSrvEntry 8 }
chkUpdSrvRelNoteLink OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"URL for downloading release-notes (if any) for this file.
"
DEFVAL { "" }
::= { chkUpdSrvEntry 9 }
chkUpdSrvFileUpdatable OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tells if system can be updated with this file.
false: Update will not work or have no effect
true: Update will have effect
unknown: No info available (e.g. unknown file-version)
"
DEFVAL { unknown }
::= { chkUpdSrvEntry 10 }
END -- of BIANCA-BRICK definitions
|