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
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
|
Network Working Group D. Chen, Editor
Request for Comments: 2024 P. Gayek
Category: Standards Track IBM
S. Nix
Metaplex, Inc.
October 1996
Definitions of Managed Objects for Data Link Switching
using SMIv2
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Abstract
This specification defines an extension to the Management Information
Base (MIB) for use with SNMP-based network management. In
particular, it defines objects for configuring, monitoring, and
controlling Data Link Switches (DLSw) [1].
This memo specifies a MIB module in a manner that is both compliant
to the SNMPv2 SMI [2], and semantically identical to the SNMPv1
definitions [3].
Table of Contents
1.0 The SNMPv2 Network Management Framework . . . . . . . . . 2
1.1 Object Definitions . . . . . . . . . . . . . . . . . . . . 2
2.0 Overview . . . . . . . . . . . . . . . . . . . . . . . . . 2
2.1 Relation to Interface Group (RFC 1573) [8] . . . . . . . . . 2
2.2 Relation to Underlying DLC Layer . . . . . . . . . . . . . 3
2.3 Relation to SDLC MIB (RFC 1747) . . . . . . . . . . . . . 3
2.4 DLSw MIB Structure . . . . . . . . . . . . . . . . . . . . 4
2.4.1 Compliance . . . . . . . . . . . . . . . . . . . . . . 4
2.5 DLSw MIB Usage . . . . . . . . . . . . . . . . . . . . . . 5
2.5.1 Cooperative DLSw nodes . . . . . . . . . . . . . . . . 5
2.5.2 Setting capabilities exchange-related objects . . . . 5
2.5.3 Examples of Tasks Using This MIB . . . . . . . . . . . 6
3.0 Definitions . . . . . . . . . . . . . . . . . . . . . . . 11
4.0 Acknowledgements . . . . . . . . . . . . . . . . . . . . . 89
5.0 References . . . . . . . . . . . . . . . . . . . . . . . . 89
6.0 Security Considerations . . . . . . . . . . . . . . . . . 90
Chen, et. al. Standards Track [Page 1]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
7.0 Authors' Addresses . . . . . . . . . . . . . . . . . . . . 90
1.0 The SNMPv2 Network Management Framework
The SNMP Network Management Framework presently consists of three
major components. They are:
RFC 1902 [2] which defines the SMI, the mechanisms used for
describing and naming objects for the purpose of management.
STD 17, RFC 1213 [4] defines MIB-II, the core set of managed
objects for the Internet suite of protocols.
STD 15, RFC 1157 [5] and RFC 1905 [6] which define two versions of
the protocol used for network access to managed objects.
The Framework permits new objects to be defined for the purpose of
experimentation and evaluation.
1.1 Object Definitions
Managed objects are accessed via a virtual information store, termed
the Management Information Base or MIB. Objects in the MIB are
defined using the subset of Abstract Syntax Notation One (ASN.1)
defined in the SMI. In particular, each object type is named by an
OBJECT IDENTIFIER, an administratively assigned name. The object
type together with an object instance serves to uniquely identify a
specific instantiation of the object. For human convenience, we
often use a textual string, termed the descriptor, to refer to the
object type.
2.0 Overview
This memo identifies the set of objects for configuring, monitoring,
and controlling Data Link Switches.
2.1 Relation to Interface Group (RFC 1573) [8]
o ifIndex is used as the index into dlswIfTable, which shows and
controls the interfaces that DLSw is active on.
o Local entries in the MAC address and NetBIOS (NB) name caches can
point to an ifEntry to indicate the interface through which DLSw can
reach that MAC address or NB name. See the objects
dlswDirMacLocation and dlswDirNBLocation.
o Local entries in the circuit table use ifIndex to indicate the
interface through which DLSw is connected to the local end station.
Chen, et. al. Standards Track [Page 2]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
See the object dlswCircuitS1Index.
o ifIndex is the primary index into dlswSdlcLsTable, which lists the
SDLC stations DLSw is serving.
2.2 Relation to Underlying DLC Layer
The DLSw MIB does not duplicate the information in the MIBs for the
DLC layer underneath it. Instead, each circuit table entry contains
a pointer to a conceptual row in an underlying enterprise-specific or
standard DLC MIB.
Using the 802.2 LLC management as an example, the following rules
should be considered when developing new DLSw related DLC MIBs, and
when implementing the interactions between DLSw MIB and DLC MIBs:
o The referenced row should represent the local LLC-2 (and/or LLC-1,
if supported) link station that DLSw is using. In the current 802.2
LLC MIB draft, this might be a row of one of the tables
llcCcAdminTable, llcCcOperTable, or llcCcStatsTable.
A circuit using local LLC services will therefore have
dlswCircuitS1DlcType = llc, and dlswCircuitS1Dlc = pointer to an LLC
MIB table row.
o Because DLSw is the user of LLC services, it is generally preferable
to initiate administrative actions using the DLSw MIB and allow DLSw
to control LLC directly, rather than starting with LLC MIB
administrative actions. For example, a hung circuit should be
disconnected by setting dlswCircuitState, as opposed to setting
llcCcAdminStatus to disable the LLC part of the circuit. Similarly,
setting bits in dlswIfSapList will cause row creation in
llcSapOperTable as well as set the necessary DLSw-LLC relationship.
2.3 Relation to SDLC MIB (RFC 1747)
The general comments stated in 2.2, "Relation to Underlying DLC
Layer" apply to the SDLC MIB. The following apply if the DLSw MIB is
implemented in a product that also implements RFC 1747 [9]:
o The row referenced from dlswCircuitS1Dlc should represent the local
SDLC link station that DLSw is using. This might be a row of one of
the tables sdlcLSAdminTable, sdlcLSOperTable, or sdlcLSStatsTable.
A circuit using local SDLC services will therefore have
dlswCircuitS1DlcType = sdlc, and dlswCircuitS1Dlc = OID of one of
these table rows.
Chen, et. al. Standards Track [Page 3]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
o dlswSdlcLsTable uses the same indices that are used to index link
station information in RFC 1747. This table provides a mapping
between this native SDLC addressing (interface, link station
address) and the addressing used in the DLSw domain (local MAC and
SAP).
2.4 DLSw MIB Structure
See 3 .0, "Definitions" on page 11 for a diagram outlining the DLSw
MIB structure. The following groups of objects are included:
dlswNode Objects related to this DLSw node's configuration,
monitoring and control.
dlswTConn Objects relating to transport connections to this
DLSw's partner nodes.
dlswInterface Objects configured for this DLSw relating to its local
interfaces.
dlswDirectory Objects reflecting this DLSw's view of where
end-station resources (MAC addresses and NetBIOS names)
are located.
dlswCircuit Objects showing the end-station connections that
DLSw currently has established, or that are coming up
or have gone down.
dlswSDLC Objects configured for this DLSw's SDLC-attached end
stations.
2.4.1 Compliance
The MIB provides the following compliance statements:
dlswCoreCompliance Defines the minimum support required of all
implementations. Note that for this and the
other compliance statements, NetBIOS-related
objects are grouped separately because the
DLSw Version 1 Standard [1] does not require
NetBIOS support.
dlswTConnTCPCompliance Defines the minimum support required of
implementations that use TCP as a transport
protocol.
dlswDirCompliance Defines the minimum support required of
implementations that support some sort of
Chen, et. al. Standards Track [Page 4]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
directory function.
dlswDirLocateCompliance Defines the minimum support required of
implementations that support a directory
function and also support the ordered
retrieval of the entries that match a given
resource.
dlswSdlcCompliance Defines the minimum support required of
implementations that support SDLC-attached
end stations.
2.5 DLSw MIB Usage
2.5.1 Cooperative DLSw nodes
To reduce the size of the MIB, thus the amount of data that each
agent needs to keep, the information that usually could be made
available in two partner nodes (e.g., information exchanged between
them) is only defined in the MIB as the info received. That is,
there are no objects defined for the info sent. In order to form the
complete picture of the state of a resource, the manager needs to
retrieve info from multiple DLSw nodes. An example is that the SAP
list, NETBIOS list and MAC list are kept at the receiving end of a
DLSw capabilities exchange (the sender does not save what it sent to
each partner).
Note well: The DLSw protocol does not specify a technique for a
manager to correlate the transport address of the partner managed
DLSw node and the transport address that the management protocol
uses.
2.5.2 Setting capabilities exchange-related objects
This MIB supports changes to DLSw variables whose change should be
reported to DLSw partner nodes in a "run-time" capabilities exchange.
Since a DLSw node normally unicasts these capabilities messages to
all its active partners, frequent changes to these variables can
result in excessive network traffic. To avoid this problem,
developers of network management applications using this MIB should
try to group all such changes in a few SNMP SET requests, and should
send them in bulk. Agent developers should implement a technique to
group a number of changes into a single capabilities exchange
message. One possible approach is to send a run-time capabilities
message only if no capabilities-related changes have been received
for a pre-defined period of time.
Chen, et. al. Standards Track [Page 5]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
2.5.3 Examples of Tasks Using This MIB
2.5.3.1 Configuring DLSw to actively connect to a specific TCP/IP
partner
Create a conceptual row in dlswTConnConfigTable with: Index = the
highest the managed station has used so far + 1; TDomain =
dlswTCPDomain; LocalTAddr = this node's DLSw IP address; RemoteTAddr
= the partner's DLSw IP address; EntryType = individual; SetupType =
activePersistent. Note that determining the index to use may require
dumping the TConnConfigTable, but this will not typically be a large
table. If the DLSw node rejects the row creation due to index
collision, the management station should increment its index value
and try again.
2.5.3.2 Configuring DLSw to passively accept any partner
Create a conceptual row in dlswTConnConfigTable as above but with:
RemoteTAddr = 0; EntryType = global; SetUpType = passive. Every
individual transport connection accepted as a result of this global
row will inherit the configuration values from this row.
To prevent a specific remote node from being passively accepted as a
partner, create another row with: RemoteTAddr = that node's IP
address; EntryType = individual; SetupType = excluded.
2.5.3.3 Configuring DLSw to allow or connect to a group of partners
Define a conceptual row in dlswTConnConfigTable as above but with:
EntryType = group; GroupDefinition = pointer to an enterprise-
specific representation of a group. For example, a group definition
might consist of an IP address value and mask, or a multicast IP
address. Every individual transport connection accepted as a result
of this group row will inherit the configuration values from this
row.
When a group is created that has some overlap with entries where
EntryType = individual (there will always be this overlap when a
global row exists), the DLSw node must use the configured rows using
a "most specific match wins" rule. That is, the entry in
TConnConfigTable with the remote address most nearly matching an
incoming connection should be used to provide the values for the new
connection. For equal matches, the choice of TConnConfigTable entry
is up to the DLSw node implementation. Note that the management
station should never create two TConnConfig rows with duplicate
remote addressing values.
Chen, et. al. Standards Track [Page 6]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
2.5.3.4 Identifying the protocol level of a partner DLSw
If the partner DLSw has implemented at least the AIW Version 1 DLSw
Standard [1], the AIW version and release number for the DLSw
protocol is accessible from dlswTConnOperPartnerVersion. If
TConnOperPartnerVersion is a string of zero length but the
TConnOperState = `connected' state (i.e., is not still performing
capabilities exchange), the partner DLSw can be assumed to be an RFC
1434+ node.
2.5.3.5 Recycling a transport connection
Quiesce or forcibly disconnect the transport connection by setting
TConnOperState to `quiescing' or `disconnecting', and monitor until
it moves to the `disconnected' state or the TConnOper row disappears.
The row may disappear because implementations are not required to
maintain transport connection information after a transport
connection has gone down.
The action required to re-activate the transport connection depends
on the value of TConnConfigSetupType for the relevant TConnConfig
row. ActivePersistent connections will attempt to come back
automatically. Passive connections must be re-established from the
remote partner. ActiveOnDemand connections will be re-established by
this node, but only after some end-station operation triggers a
circuit setup attempt.
2.5.3.6 Investigating why a transport connection went down
TConnOperDiscTime and TConnOperDiscReason provide the vital
information of the time and the cause of the disconnection of a
transport connection and TConnOperDiscActiveCir indicates whether end
users may have been affected. This MIB does not specify the duration
that an agent must make this information available after the
disconnection of a transport connection occurs. Manager should try
the agent of the partner DLSw, if such information is not available
in one DLSw node. Additional information might come from the MIB for
the transport protocol (e.g., TCP or LLC). dlswTConnStat* and
dlswTConnConfigOpens give a more general picture of transport
connection activity, but can't give specific reasons for problems.
2.5.3.7 Changing the configuration of an active transport connection
Follow this sequence of managment protocol set operations:
1. Use TConnOperConfigIndex to locate the TConnConfig entry that
governs the configuration of the transport connection.
Chen, et. al. Standards Track [Page 7]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
2. Change the rowStatus of that conceptual row to notInService. This
prevents the transport connection from being connected automatically
if TConnConfigSetupType = activePersistent.
3. Quiesce or forcibly disconnect the transport connection by setting
TConnOperState to `quiescing' or `disconnecting', and monitor until
it moves to the `disconnected' state or the TConnOper row
disappears.
4. Change the values of TConnConfig variables as desired.
5. Change the rowStatus of the TConnConfig conceptual row to active.
TConnConfigSetupType will subsequently control whether this node
will actively seek to re-establish the transport connection, or will
wait.
2.5.3.8 Checking configuration validity for an active transport
connection
Use TConnOperConfigIndex to identify the row of TConnConfig for the
transport connection. If TConnConfigLastModifyTime is greater than
TConnOperConnectTime, then one or more of the variables in the
TConnConfig row may not be valid for the current state of the active
transport connection. This is an exception condition and will not
normally be the case.
2.5.3.9 Configuring the interfaces and SAPs DLSw will use
To add DLSw end-station support (not transport connection support) to
an interface, create a conceptual row for that ifIndex in the
dlswIfTable. For many products, you will specify the same single
virtual segment number for all interfaces. Indicate the list of SAPs
to be supported by that interface - this could be all 0xFFs if the
product has some automatic SAP opening function.
To open or close a SAP to DLSw on an existing interface, simply set
or reset the appropriate bit in dlswIfSapList in the table row for
that interface.
2.5.3.10 Configuring static MAC address (or NetBIOS name) cache entries
It is common to configure a few static directory entries to preload
in the caches of the DLSw nodes and reduce the need for broadcast
searches. The following example adds entries to the MAC cache to
indicate that a specific MAC address is reachable through two
different remote partners:
1. The manager retrieves dlswDirMacCacheNextIndex to get an index
assignment from the DLSw node. The DLSw node ensures that the
retrieved index will not be reused.
Chen, et. al. Standards Track [Page 8]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
2. The manager creates a conceptual row in dlswDirMacTable with:
Index = the retrieved index; Mac = the MAC address; Mask = all
0xFF's; EntryType = userConfiguredPublic; LocationType = remote;
Location = OID for dlswTConnConfigEntry of the 1st partner; Status
= unknown (recommended for new entries).
3. The manager repeats the preceding 2 steps and creates a second row
using Index = second index retrieved; Location = OID for
dlswTConnConfigEntry of the 2nd partner.
Note that the DLSw node is not obligated to use newly created
directory entries in the order in which they were created. It is
recommended that entries be used in most-specific match first order,
i.e., an entry with a Mask of all 0xFFs should take precedence over
one with a "partial wildcard". The relative order of static versus
dynamic entries and of "equal length" matches is up to the DLSw
implementation.
The dlswDirStat objects can be used to get an idea of the success
rate for a particular static caching scheme.
2.5.3.11 Seeing where the directory indicates a given resource is
To retrieve all directory information related to a given resource (in
this example, a NetBIOS name), the management station should:
1. Retrieve dlswDirLocateNBLocation in the dlswDirLocateNBTable entry
where NBName = the fully-specified NetBIOS name without wildcards;
NBMatch = 1.
2. Use the returned value (i.e., OID) to retrieve the contents of the
dlswDirNBEntry itself.
3. Repeat the previous two steps with NBMatch = 2, 3, ..., until the
end of dlswDirLocateNBTable is reached.
The DLSw node conveys the precedence relationship of the different
matching directory entries by the order in which it returns their
OIDs.
2.5.3.12 Investigating circuit bringup failure
Circuit bringup takes place in two stages: explorer flows to locate
the target resource (MAC address or NetBIOS name); and establishing
the circuit itself. To determine the success of explorer flows, have
the origin end station initiate a link establishment to the target,
and look later for cache entries for the target MAC address or
NetBIOS name. The dlswTConn*ex* counters also give some visibility
to which transport connections are being used to look for resources.
Once circuit establishment is started, an entry of dlswCircuitTable
for the two MAC/SAP addresses involved is created.
Chen, et. al. Standards Track [Page 9]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswCircuitEntryTime, StateTime, and State may provide useful
information about intermediate states the circuit is reaching before
becoming disconnected again.
2.5.3.13 Investigating the failure of an established circuit
The variables dlswCircuitDiscReason* in the dlswCircuitTable provide
the key information of the cause of the disconnection of circuits.
In addition, the underlying DLC MIBs may provide information at the
link station level, and some clues (e.g., DISC or FRMR counters) at
the SAP or interface level.
2.5.3.14 Seeing circuit-level traffic statistics
Locate the relevant dlswCircuitEntry and follow dlswCircuitS1Dlc to a
link station-level table entry in the underlying DLC MIB. Move to
the corresponding link station's statistics table in the DLC MIB to
get counters of frames, bytes, etc. for this circuit.
2.5.3.15 Cutting down the flow of DLSw-related traps
Set some or all of the dlswTrapCntl* objects to the value of
`disabled' or `partial'.
Chen, et. al. Standards Track [Page 10]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
3.0 Definitions
-- *******************************************************************
--
-- The structure of the DLSw MIB (t: indicates table):
-- DLSw MIB
-- |-- Node Group
-- | |-- Node Identity
-- | |-- Node Operational Related
-- | |-- Node Resource
-- |
-- |-- Transport Connection Group
-- | |-- Statistics
-- | |t- Transport Connection Configuration
-- | |t- Transport Connection Operation
-- | | |-- capabilities
-- | | |-- Supported SAP List
-- | | |-- statistics
-- | | |-- transport connection itself
-- | | |-- traffic over the transport connection
-- | | |-- directory search activities
-- | | |-- search filtered statistics
-- | | |-- circuits over the transport connection
-- | |-- Transport Specific
-- | |-- Tcp
-- | |t- Transport Connection Config (Tcp Specific)
-- | |t- Transport Connection Operation (Tcp Specific)
-- |
-- |-- Interface Group
-- | |t- interfaces that DLSw is active on.
-- |
-- |-- Directory Group
-- | |-- Statistics
-- | |-- Directory Cache
-- | | |t- Directory of MAC addresses
-- | | |t- Directory of NETBIOS names
-- | |-- Locate
-- | |t- Directory of Locate MAC
-- | |t- Directory of Locate NETBIOS
-- |
-- |-- Circuit Group
-- | |-- Statistics
-- | |t- Circuits
-- |
-- |-- Virtual and non-LAN end stations
-- | |t- SDLC end station
-- |
-- *******************************************************************
Chen, et. al. Standards Track [Page 11]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
-- *******************************************************************
-- This MIB module contains objects necessary for management of Data
-- Link Switches.
--
-- Terminology:
-- (1) DLSw:
-- A device which provides data link switching function.
-- Sometimes it is referred as a DLSw or DLSw node.
-- Local DLSw: The DLSw that the DLSw SNMP Agent is running on.
-- Partner DLSw (or DLSw partner): A DLSw node that is "transport
-- connected" with the local DLSw. Sometimes the term "DLSw
-- partners" is used to indicate the two ends of a transport
-- connection.
--
-- (2) TCP Connection:
-- Full-duplex (-capable) association defined by a pair of
-- (IP address, port) pairs, running the TCP protocol. The port
-- addresses in RFC 1795 define two TCP connections between
-- a pair of DLSw nodes, each being used to send data in a
-- single direction.
-- Local: This end of TCP connection
-- Foreign: Remote end of TCP connection
--
-- (3) Transport Connection:
-- It is a generic term for a full-duplex reliable connection
-- between DLSw nodes. This term is used to refer to the
-- association between DLSw nodes without being concerned
-- about whether TCP is the protocol or whether there are
-- one or two TCP connection.
-- (Note: for two TCP connections, the transport connection is
-- opened if and only if both TCP connections are operational.
-- Also note: sometimes race conditions will occur, but the
-- condition should only be temporary.)
--
-- (4) Data Link:
-- An instance of OSI layer-2 procedures for exchanging information
-- using either connection-oriented (e.g., LLC-2) or connectionless
-- (e.g., LLC-1) services. A DLSw node or pair of partner nodes
-- switches data traffic from stations of one data link to
-- stations of another data link. Data link switching is
-- transparent to end stations.
-- Source: the end station which sends a message.
-- Destination: the end station which receives a message.
-- (This DLSw role is with respect to a give message)
--
-- (5) Circuit:
-- End-to-end association of two DLC entities through one or
-- two DLSw nodes. A circuit is the concatenation of two
Chen, et. al. Standards Track [Page 12]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
-- "data links", optionally with an intervening transport
-- connection.
-- Origin: the end station which initiates the circuit.
-- Target: the end station which receives the initiation.
--
-- (6) Link Station:
-- It is one end of an LLC-2 connection. It performs error
-- recovery procedure, retries, and various timers.
-- DLSw terminates LLC-2 connection at each end of DLSw nodes,
-- thus, keepAlive and error recovery on LLC-2 connections are
-- kept to each side of LAN and do not flow through the WAN.
-- A link station is substantiated when SABME is sent/received.
-- All link stations have circuits, but not all circuits
-- have link stations.
--
-- Key assumptions are:
-- (1) The MIB is designed to manage a single DLSw entity.
--
-- (2) A DLSw may support various types of transport connections.
-- - This DLSw MIB module does not restrict the possibility to
-- have, at any given moment, more than one "transport
-- connection" defined or active between two DLSw's.
-- - However, current DLSw architecture does not provide a mechanism,
-- e.g., DLSw host name, to prevent two transport connections of
-- different types between the same two DLSw's.
--
-- (3) This MIB assumes that interface MIB is implemented. ifIndex
-- is used in this MIB module.
--
-- (4) This MIB assumes that the SDLC MIB (or an equivalent enterprise
-- specific MIB) is implemented, since SDLC-specific objects
-- are not duplicated here.
--
-- (5) This MIB assumes that the LLC-2 MIB (or an equivalent enterprise
-- specific MIB) is implemented, since LLC-related objects are not
-- duplicated here.
--
-- (6) All MACs, SAPs, Ring numbers, ... are in non-canonical form.
-- That is, the most significant bit will be transmitted first.
--
-- *******************************************************************
DLSW-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString, RowStatus,
RowPointer, TruthValue,
TEXTUAL-CONVENTION FROM SNMPv2-TC
Chen, et. al. Standards Track [Page 13]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
Counter32, Gauge32, TimeTicks,
OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
ifIndex FROM IF-MIB
sdlcLSAddress FROM SNA-SDLC-MIB;
dlsw MODULE-IDENTITY
LAST-UPDATED "9606040900Z"
ORGANIZATION "AIW DLSw MIB RIGLET and IETF DLSw MIB Working Group"
CONTACT-INFO
"David D. Chen
IBM Corporation
800 Park, Highway 54
Research Triangle Park, NC 27709-9990
Tel: 1 919 254 6182
E-mail: dchen@vnet.ibm.com"
DESCRIPTION
"This MIB module contains objects to manage Data Link
Switches."
::= { mib-2 46 }
dlswMIB OBJECT IDENTIFIER ::= { dlsw 1 }
dlswDomains OBJECT IDENTIFIER ::= { dlsw 2 }
-- *******************************************************************
-- Textual convention definitions
-- *******************************************************************
NBName ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents a single qualified NetBIOS name, which can include
`don't care' and `wildcard' characters to represent a number
of real NetBIOS names. If an individual character position in
the qualified name contains a `?', the corresponding character
position in a real NetBIOS name is a `don't care'. If the
qualified name ends in `*', the remainder of a real NetBIOS
name is a `don't care'. `*' is only considered a wildcard if it
appears at the end of a name."
SYNTAX OCTET STRING (SIZE (0..16))
MacAddressNC ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1x:"
STATUS current
DESCRIPTION
"Represents an 802 MAC address represented in
Chen, et. al. Standards Track [Page 14]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
non-canonical format. That is, the most significant
bit will be transmitted first. If this information
is not available, the value is a zero length string."
SYNTAX OCTET STRING (SIZE (0 | 6))
TAddress ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Denotes a transport service address.
For dlswTCPDomain, a TAddress is 4 octets long,
containing the IP-address in network-byte order."
SYNTAX OCTET STRING (SIZE (0..255))
EndStationLocation ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Representing the location of an end station related
to the managed DLSw node."
SYNTAX INTEGER {
other (1),
internal (2), -- local virtual MAC address
remote (3), -- via DLSw partner
local (4) -- locally attached
}
DlcType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Representing the type of DLC of an end station, if
applicable."
SYNTAX INTEGER {
other (1), -- not assigned yet
na (2), -- not applicable
llc (3), -- 802.2 Logical Link Control
sdlc (4), -- SDLC
qllc (5) -- QLLC
}
LFSize ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The largest size of the INFO field (including DLC header,
not including any MAC-level or framing octets).
64 valid values as defined by the IEEE 802.1D
Addendum are acceptable."
SYNTAX INTEGER {
lfs516(516), lfs635(635), lfs754(754), lfs873(873),
lfs993(993), lfs1112(1112), lfs1231(1231),
Chen, et. al. Standards Track [Page 15]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
lfs1350(1350), lfs1470(1470), lfs1542(1542),
lfs1615(1615), lfs1688(1688), lfs1761(1761),
lfs1833(1833), lfs1906(1906), lfs1979(1979),
lfs2052(2052), lfs2345(2345), lfs2638(2638),
lfs2932(2932), lfs3225(3225), lfs3518(3518),
lfs3812(3812), lfs4105(4105), lfs4399(4399),
lfs4865(4865), lfs5331(5331), lfs5798(5798),
lfs6264(6264), lfs6730(6730), lfs7197(7197),
lfs7663(7663), lfs8130(8130), lfs8539(8539),
lfs8949(8949), lfs9358(9358), lfs9768(9768),
lfs10178(10178), lfs10587(10587), lfs10997(10997),
lfs11407(11407), lfs12199(12199), lfs12992(12992),
lfs13785(13785), lfs14578(14578), lfs15370(15370),
lfs16163(16163), lfs16956(16956), lfs17749(17749),
lfs20730(20730), lfs23711(23711), lfs26693(26693),
lfs29674(29674), lfs32655(32655), lfs38618(38618),
lfs41600(41600), lfs44591(44591), lfs47583(47583),
lfs50575(50575), lfs53567(53567), lfs56559(56559),
lfs59551(59551), lfs65535(65535)
}
null OBJECT IDENTIFIER ::= { 0 0 }
-- *******************************************************************
-- DLSw Transport Domain definitions
-- *******************************************************************
-- DLSw over TCP
dlswTCPDomain OBJECT IDENTIFIER ::= { dlswDomains 1 }
-- for an IP address of length 4:
--
-- octets contents encoding
-- 1-4 IP-address network-byte order
--
DlswTCPAddress ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1d.1d.1d.1d"
STATUS current
DESCRIPTION
"Represents the IP address of a DLSw which uses
TCP as a transport protocol."
SYNTAX OCTET STRING (SIZE (4))
-- *******************************************************************
-- DLSw MIB Definition
-- *******************************************************************
Chen, et. al. Standards Track [Page 16]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
-- The DLSw MIB module contains an object part and a conformance part.
-- Object part is organized in the following groups:
-- (1) dlswNode -- information about this DLSw
-- (2) dlswTConn -- about adjacent DLSw partners
-- (3) dlswInterface -- about which interfaces DLSw is active on
-- (4) dlswDirectory -- about any directory of local/remote resources
-- (5) dlswCircuit -- about established circuits.
-- (6) dlswSdlc -- about SDLC data link switched devices
dlswNode OBJECT IDENTIFIER ::= { dlswMIB 1 }
dlswTConn OBJECT IDENTIFIER ::= { dlswMIB 2 }
dlswInterface OBJECT IDENTIFIER ::= { dlswMIB 3 }
dlswDirectory OBJECT IDENTIFIER ::= { dlswMIB 4 }
dlswCircuit OBJECT IDENTIFIER ::= { dlswMIB 5 }
dlswSdlc OBJECT IDENTIFIER ::= { dlswMIB 6 } -- SDLC
-- *******************************************************************
-- THE NODE GROUP
-- *******************************************************************
-- -------------------------------------------------------------------
-- DLSw Node Identity
-- -------------------------------------------------------------------
dlswNodeVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value identifies the particular version of the DLSw
standard supported by this DLSw. The first octet is a
hexadecimal value representing the DLSw standard Version
number of this DLSw, and the second is a hexadecimal value
representing the DLSw standard Release number. This
information is reported in DLSw Capabilities Exchange."
REFERENCE
"DLSW: Switch-to-Switch Protocol RFC 1795"
::= { dlswNode 1 }
dlswNodeVendorID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value identifies the manufacturer's IEEE-assigned
organizationally Unique Identifier (OUI) of this DLSw.
This information is reported in DLSw Capabilities
Exchange."
REFERENCE
Chen, et. al. Standards Track [Page 17]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"DLSW: Switch-to-Switch Protocol RFC 1795"
::= { dlswNode 2 }
dlswNodeVersionString OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This string gives product-specific information about
this DLSw (e.g., product name, code release and fix level).
This flows in Capabilities Exchange messages."
REFERENCE
"DLSW: Switch-to-Switch Protocol RFC 1795"
::= { dlswNode 3 }
-- -------------------------------------------------------------------
-- DLSw Code Capability
-- -------------------------------------------------------------------
dlswNodeStdPacingSupport OBJECT-TYPE
SYNTAX INTEGER {
none (1), -- does not support DLSw
-- Standard pacing scheme
adaptiveRcvWindow (2), -- the receive window size
-- varies
fixedRcvWindow (3) -- the receive window size
-- remains constant
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Circuit pacing, as defined in the DLSw Standard, allows each
of the two DLSw nodes on a circuit to control the amount
of data the other is permitted to send to them. This object
reflects the level of support the DLSw node has for this
protocol. (1) means the node has no support for the standard
circuit pacing flows; it may use RFC 1434+ methods only, or
a proprietary flow control scheme. (2) means the node supports
the standard scheme and can vary the window sizes it grants as
a data receiver. (3) means the node supports the standard
scheme but never varies its receive window size."
::= { dlswNode 4 }
-- -------------------------------------------------------------------
-- DLSw Node Operational Objects
-- -------------------------------------------------------------------
dlswNodeStatus OBJECT-TYPE
SYNTAX INTEGER {
active (1),
Chen, et. al. Standards Track [Page 18]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
inactive (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of the DLSw part of the system. Changing the
value from active to inactive causes DLSw to take
the following actions - (1) it disconnects all circuits
through all DLSw partners, (2) it disconnects all
transport connections to all DLSw partners, (3) it
disconnects all local DLC connections, and (4) it stops
processing all DLC connection set-up traffic.
Since these are destructive actions, the user should
query the circuit and transport connection tables in
advance to understand the effect this action will have.
Changing the value from inactive to active causes DLSw
to come up in its initial state, i.e., transport
connections established and ready to bring up circuits."
::= { dlswNode 5 }
dlswNodeUpTime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "hundredths of a second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time (in hundredths of a second) since
the DLSw portion of the system was last re-initialized.
That is, if dlswState is in the active state,
the time the dlswState entered the active state.
It will remain zero if dlswState is in the
inactive state."
::= { dlswNode 6 }
dlswNodeVirtualSegmentLFSize OBJECT-TYPE
SYNTAX LFSize
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The largest frame size (including DLC header and info field
but not any MAC-level or framing octets) this DLSw can forward
on any path through itself. This object can represent any box-
level frame size forwarding restriction (e.g., from the use
of fixed-size buffers). Some DLSw implementations will have
no such restriction.
This value will affect the LF size of circuits during circuit
creation. The LF size of an existing circuit can be found in
Chen, et. al. Standards Track [Page 19]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
the RIF (Routing Information Field)."
DEFVAL { lfs65535 }
::= { dlswNode 7 }
-- ...................................................................
-- NETBIOS Resources
-- ...................................................................
dlswNodeResourceNBExclusivity OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of true indicates that the NetBIOS Names
configured in dlswDirNBTable are the only ones accessible
via this DLSw.
If a node supports sending run-time capabilities exchange
messages, changes to this object should cause that action.
It is up to the implementation exactly when to start the
run-time capabilities exchange."
::= { dlswNode 8 }
-- ...................................................................
-- MAC Address List
-- ...................................................................
dlswNodeResourceMacExclusivity OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of true indicates that the MAC addresses
configured in the dlswDirMacTable are the only ones
accessible via this DLSw.
If a node supports sending run-time capabilities exchange
messages, changes to this object should cause that action.
It is up to the implementation exactly when to start the
run-time capabilities exchange."
::= { dlswNode 9 }
-- *******************************************************************
-- TRANSPORT CONNECTION (aka: PARTNER DLSW)
-- *******************************************************************
-- -------------------------------------------------------------------
Chen, et. al. Standards Track [Page 20]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
-- Transport Connection Statistics Objects
-- -------------------------------------------------------------------
dlswTConnStat OBJECT IDENTIFIER ::= { dlswTConn 1 }
dlswTConnStatActiveConnections OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transport connections that are not in
`disconnected' state."
::= { dlswTConnStat 1 }
dlswTConnStatCloseIdles OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times transport connections in this node
exited the connected state with zero active circuits on
the transport connection."
::= { dlswTConnStat 2 }
dlswTConnStatCloseBusys OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times transport connections in this node
exited the connected state with some non-zero number
of active circuits on the transport connection. Normally
this means the transport connection failed unexpectedly."
::= { dlswTConnStat 3 }
-- -------------------------------------------------------------------
-- Transport Connection Configuration Table
-- -------------------------------------------------------------------
dlswTConnConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswTConnConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the transport connections
that will be initiated or accepted by this
DLSw. Structure of masks allows wildcard
definition for a collection of transport
connections by a conceptual row. For a
specific transport connection, there may
Chen, et. al. Standards Track [Page 21]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
be multiple of conceptual rows match the
transport address. The `best' match will
the one to determine the characteristics
of the transport connection."
::= { dlswTConn 2 }
dlswTConnConfigEntry OBJECT-TYPE
SYNTAX DlswTConnConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each conceptual row defines a collection of
transport connections."
INDEX { dlswTConnConfigIndex }
::= { dlswTConnConfigTable 1 }
DlswTConnConfigEntry ::= SEQUENCE {
dlswTConnConfigIndex INTEGER,
dlswTConnConfigTDomain OBJECT IDENTIFIER,
dlswTConnConfigLocalTAddr TAddress,
dlswTConnConfigRemoteTAddr TAddress,
dlswTConnConfigLastModifyTime TimeTicks,
dlswTConnConfigEntryType INTEGER,
dlswTConnConfigGroupDefinition RowPointer,
dlswTConnConfigSetupType INTEGER,
dlswTConnConfigSapList OCTET STRING,
dlswTConnConfigAdvertiseMacNB TruthValue,
dlswTConnConfigInitCirRecvWndw INTEGER,
dlswTConnConfigOpens Counter32,
dlswTConnConfigRowStatus RowStatus
}
dlswTConnConfigIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index to the conceptual row of the table.
Negative numbers are not allowed. There
are objects defined that point to conceptual
rows of this table with this index value.
Zero is used to denote that no corresponding
row exists.
Index values are assigned by the agent, and
should not be reused but should continue to
increase in value."
::= { dlswTConnConfigEntry 1 }
Chen, et. al. Standards Track [Page 22]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswTConnConfigTDomain OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object identifier which indicates the transport
domain of this conceptual row."
::= { dlswTConnConfigEntry 2 }
dlswTConnConfigLocalTAddr OBJECT-TYPE
SYNTAX TAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The local transport address for this conceptual row
of the transport connection definition."
::= { dlswTConnConfigEntry 3 }
dlswTConnConfigRemoteTAddr OBJECT-TYPE
SYNTAX TAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The remote transport address. Together with
dlswTConnConfigEntryType and dlswTConnConfigGroupDefinition,
the object instance of this conceptual row identifies a
collection of the transport connections that will be
either initiated by this DLSw or initiated by a partner
DLSw and accepted by this DLSw."
::= { dlswTConnConfigEntry 4 }
dlswTConnConfigLastModifyTime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "hundredths of a second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in hundredths of a second) since the value of
any object in this conceptual row except for
dlswTConnConfigOpens was last changed. This value
may be compared to dlswTConnOperConnectTime to
determine whether values in this row are completely
valid for a transport connection created using
this row definition."
::= { dlswTConnConfigEntry 5 }
dlswTConnConfigEntryType OBJECT-TYPE
SYNTAX INTEGER {
Chen, et. al. Standards Track [Page 23]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
individual (1),
global (2),
group (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object instance signifies the type of entry in the
associated conceptual row. The value of `individual'
means that the entry applies to a specific partner DLSw
node as identified by dlswTConnConfigRemoteTAddr and
dlswTConnConfigTDomain. The value of `global'
means that the entry applies to all partner DLSw nodes
of the TDomain. The value of 'group' means that the entry
applies to a specific set of DLSw nodes in the TDomain.
Any group definitions are enterprise-specific and are pointed
to by dlswTConnConfigGroupDefinition. In the cases of
`global' and `group', the value in dlswTConnConfigRemoteTAddr
may not have any significance."
::= { dlswTConnConfigEntry 6 }
dlswTConnConfigGroupDefinition OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For conceptual rows of `individual' and `global' as
specified in dlswTConnConfigEntryType, the instance
of this object is `0.0'. For conceptual rows of
`group', the instance points to the specific
group definition."
::= { dlswTConnConfigEntry 7 }
dlswTConnConfigSetupType OBJECT-TYPE
SYNTAX INTEGER {
other (1),
activePersistent (2),
activeOnDemand (3),
passive (4),
excluded (5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This value of the instance of a conceptual row
identifies the behavior of the collection of
transport connections that this conceptual row
Chen, et. al. Standards Track [Page 24]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
defines. The value of activePersistent, activeOnDemand
and passive means this DLSw will accept any transport
connections, initiated by partner DLSw nodes, which
are defined by this conceptual row. The value of
activePersistent means this DLSw will also initiate
the transport connections of this conceptual row and
retry periodically if necessary. The value of
activeOnDemand means this DLSw will initiate a
transport connection of this conceptual row, if
there is a directory cache hits. The value of
other is implementation specific. The value of exclude
means that the specified node is not allowed to be
a partner to this DLSw node. To take a certain
conceptual row definition out of service, a value of
notInService for dlswTConnConfigRowStatus should be
used."
DEFVAL { passive }
::= { dlswTConnConfigEntry 8 }
dlswTConnConfigSapList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SAP list indicates which SAPs are advertised to
the transport connection defined by this conceptual
row. Only SAPs with even numbers are represented,
in the form of the most significant bit of the first
octet representing the SAP 0, the next most significant
bit representing the SAP 2, to the least significant
bit of the last octet representing the SAP 254. Data
link switching is allowed for those SAPs which have
one in its corresponding bit, not allowed otherwise.
The whole SAP list has to be changed together. Changing
the SAP list affects only new circuit establishments
and has no effect on established circuits.
This list can be used to restrict specific partners
from knowing about all the SAPs used by DLSw on all its
interfaces (these are represented in dlswIfSapList for
each interface). For instance, one may want to run NetBIOS
with some partners but not others.
If a node supports sending run-time capabilities exchange
messages, changes to this object should cause that action.
When to start the run-time capabilities exchange is
implementation-specific.
Chen, et. al. Standards Track [Page 25]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
The DEFVAL below indicates support for SAPs 0, 4, 8, and C."
DEFVAL { 'AA000000000000000000000000000000'H }
::= { dlswTConnConfigEntry 9 }
dlswTConnConfigAdvertiseMacNB OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of true indicates that any defined local MAC
addresses and NetBIOS names will be advertised to a
partner node via initial and (if supported) run-time
capabilities exchange messages. The DLSw node should send
the appropriate exclusivity control vector to accompany
each list it sends, or to represent that the node is
explicitly configured to have a null list.
The value of false indicates that the DLSw node should not
send a MAC address list or NetBIOS name list, and should
also not send their corresponding exclusivity control
vectors."
DEFVAL { true }
::= { dlswTConnConfigEntry 10 }
dlswTConnConfigInitCirRecvWndw OBJECT-TYPE
SYNTAX INTEGER (0..65535)
UNITS "SSP messages"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The initial circuit receive pacing window size, in the unit
of SSP messages, to be used for future transport connections
activated using this table row. The managed node sends this
value as its initial receive pacing window in its initial
capabilities exchange message. Changing this value does not
affect the initial circuit receive pacing window size of
currently active transport connections. If the standard window
pacing scheme is not supported, the value is zero.
A larger receive window value may be appropriate for partners
that are reachable only via physical paths that have longer
network delays."
DEFVAL { 1 }
::= { dlswTConnConfigEntry 11 }
dlswTConnConfigOpens OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
Chen, et. al. Standards Track [Page 26]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
STATUS current
DESCRIPTION
"Number of times transport connections entered
connected state according to the definition of
this conceptual row."
::= { dlswTConnConfigEntry 12 }
dlswTConnConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used by the manager to create
or delete the row entry in the dlswTConnConfigTable
following the RowStatus textual convention. The value
of notInService will be used to take a conceptual
row definition out of use."
::= { dlswTConnConfigEntry 13 }
-- -------------------------------------------------------------------
-- Transport Connection Operation Table
-- -------------------------------------------------------------------
-- (1) At most one transport connection can be connected between
-- this DLSw and one of its DLSw partners at a given time.
-- (2) Multiple transport types are supported.
-- (3) Since the entries may be reused, dlswTConnOperEntryTime
-- needs to be consulted for the possibility of counter reset.
-- -------------------------------------------------------------------
dlswTConnOperTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswTConnOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of transport connections. It is optional but
desirable for the agent to keep an entry for some
period of time after the transport connection is
disconnected. This allows the manager to capture
additional useful information about the connection, in
particular, statistical information and the cause of the
disconnection."
::= { dlswTConn 3 }
dlswTConnOperEntry OBJECT-TYPE
SYNTAX DlswTConnOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
Chen, et. al. Standards Track [Page 27]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
""
INDEX { dlswTConnOperTDomain, dlswTConnOperRemoteTAddr }
::= { dlswTConnOperTable 1 }
DlswTConnOperEntry ::= SEQUENCE {
dlswTConnOperTDomain OBJECT IDENTIFIER,
dlswTConnOperLocalTAddr TAddress,
dlswTConnOperRemoteTAddr TAddress,
dlswTConnOperEntryTime TimeTicks,
dlswTConnOperConnectTime TimeTicks,
dlswTConnOperState INTEGER,
dlswTConnOperConfigIndex INTEGER,
dlswTConnOperFlowCntlMode INTEGER,
dlswTConnOperPartnerVersion OCTET STRING,
dlswTConnOperPartnerVendorID OCTET STRING,
dlswTConnOperPartnerVersionStr DisplayString,
dlswTConnOperPartnerInitPacingWndw INTEGER,
dlswTConnOperPartnerSapList OCTET STRING,
dlswTConnOperPartnerNBExcl TruthValue,
dlswTConnOperPartnerMacExcl TruthValue,
dlswTConnOperPartnerNBInfo INTEGER,
dlswTConnOperPartnerMacInfo INTEGER,
dlswTConnOperDiscTime TimeTicks,
dlswTConnOperDiscReason INTEGER,
dlswTConnOperDiscActiveCir INTEGER,
dlswTConnOperInDataPkts Counter32,
dlswTConnOperOutDataPkts Counter32,
dlswTConnOperInDataOctets Counter32,
dlswTConnOperOutDataOctets Counter32,
dlswTConnOperInCntlPkts Counter32,
dlswTConnOperOutCntlPkts Counter32,
dlswTConnOperCURexSents Counter32,
dlswTConnOperICRexRcvds Counter32,
dlswTConnOperCURexRcvds Counter32,
dlswTConnOperICRexSents Counter32,
dlswTConnOperNQexSents Counter32,
dlswTConnOperNRexRcvds Counter32,
dlswTConnOperNQexRcvds Counter32,
dlswTConnOperNRexSents Counter32,
Chen, et. al. Standards Track [Page 28]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswTConnOperCirCreates Counter32,
dlswTConnOperCircuits Gauge32
}
dlswTConnOperTDomain OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object identifier indicates the transport domain
of this transport connection."
::= { dlswTConnOperEntry 1 }
dlswTConnOperLocalTAddr OBJECT-TYPE
SYNTAX TAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local transport address for this transport connection.
This value could be different from dlswTConnConfigLocalAddr,
if the value of the latter were changed after this transport
connection was established."
::= { dlswTConnOperEntry 2 }
dlswTConnOperRemoteTAddr OBJECT-TYPE
SYNTAX TAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The remote transport address of this transport connection."
::= { dlswTConnOperEntry 3 }
dlswTConnOperEntryTime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "hundredths of a second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time (in hundredths of a second) since this
transport connection conceptual row was created."
::= { dlswTConnOperEntry 4 }
-- ...................................................................
-- DLSw Transport Connection Operational Objects
-- ...................................................................
dlswTConnOperConnectTime OBJECT-TYPE
SYNTAX TimeTicks
Chen, et. al. Standards Track [Page 29]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
UNITS "hundredths of a second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time (in hundredths of a second) since this
transport connection last entered the 'connected' state.
A value of zero means this transport connection has never
been established."
::= { dlswTConnOperEntry 5 }
dlswTConnOperState OBJECT-TYPE
SYNTAX INTEGER {
connecting (1),
initCapExchange (2),
connected (3),
quiescing (4),
disconnecting (5),
disconnected (6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of this transport connection. The transport
connection enters `connecting' state when DLSw makes
a connection request to the transport layer. Once initial
Capabilities Exchange is sent, the transport connection
enters enters `initCapExchange' state. When partner
capabilities have been determined and the transport
connection is ready for sending CanUReach (CUR) messages,
it moves to the `connected' state. When DLSw is in the
process of bringing down the connection, it is in the
`disconnecting' state. When the transport layer
indicates one of its connections is disconnected, the
transport connection moves to the `disconnected' state.
Whereas all of the values will be returned in response
to a management protocol retrieval operation, only two
values may be specified in a management protocol set
operation: `quiescing' and `disconnecting'. Changing
the value to `quiescing' prevents new circuits from being
established, and will cause a transport disconnect when
the last circuit on the connection goes away. Changing
the value to `disconnecting' will force off all circuits
immediately and bring the connection to `disconnected'
state."
::= { dlswTConnOperEntry 6 }
dlswTConnOperConfigIndex OBJECT-TYPE
Chen, et. al. Standards Track [Page 30]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of dlswTConnConfigIndex of the dlswTConnConfigEntry
that governs the configuration information used by this
dlswTConnOperEntry. The manager can therefore normally
examine both configured and operational information
for this transport connection.
This value is zero if the corresponding dlswTConnConfigEntry
was deleted after the creation of this dlswTConnOperEntry.
If some fields in the former were changed but the conceptual
row was not deleted, some configuration information may not
be valid for this operational transport connection. The
manager can compare dlswTConnOperConnectTime and
dlswTConnConfigLastModifyTime to determine if this condition
exists."
::= { dlswTConnOperEntry 7 }
-- ...................................................................
-- Transport Connection Characteristics
-- ...................................................................
dlswTConnOperFlowCntlMode OBJECT-TYPE
SYNTAX INTEGER {
undetermined (1),
pacing (2), -- DLSw standard flow control
other (3) -- non-DLSw standard flow control
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The flow control mechanism in use on this transport connection.
This value is undetermined (1) before the mode of flow control
can be established on a new transport connection (i.e., after
CapEx is sent but before Capex or other SSP control messages
have been received). Pacing (2) indicates that the standard
RFC 1795 pacing mechanism is in use. Other (3) may be either
the RFC 1434+ xBusy mechanism operating to a back-level DLSw,
or a vendor-specific flow control method. Whether it is xBusy
or not can be inferred from dlswTConnOperPartnerVersion."
::= { dlswTConnOperEntry 8 }
-- ...................................................................
dlswTConnOperPartnerVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0 | 2))
Chen, et. al. Standards Track [Page 31]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value identifies which version (first octet) and release
(second octet) of the DLSw standard is supported by this
partner DLSw. This information is obtained from a DLSw
capabilities exchange message received from the partner DLSw.
A string of zero length is returned before a Capabilities
Exchange message is received, or if one is never received.
A conceptual row with a dlswTConnOperState of `connected' but
a zero length partner version indicates that the partner is
a non-standard DLSw partner.
If an implementation chooses to keep dlswTConnOperEntrys in
the `disconnected' state, this value should remain unchanged."
REFERENCE
"DLSW: Switch-to-Switch Protocol RFC 1795"
::= { dlswTConnOperEntry 9 }
dlswTConnOperPartnerVendorID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0 | 3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value identifies the IEEE-assigned organizationally
Unique Identifier (OUI) of the maker of this partner
DLSw. This information is obtained from a DLSw
capabilities exchange message received from the partner DLSw.
A string of zero length is returned before a Capabilities
Exchange message is received, or if one is never received.
If an implementation chooses to keep dlswTConnOperEntrys in
the `disconnected' state, this value should remain unchanged."
::= { dlswTConnOperEntry 10 }
dlswTConnOperPartnerVersionStr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..253))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value identifies the particular product version (e.g.,
product name, code level, fix level) of this partner DLSw.
The format of the actual version string is vendor-specific.
This information is obtained from a DLSw capabilities exchange
message received from the partner DLSw.
A string of zero length is returned before a Capabilities
Exchange message is received, if one is never received, or
if one is received but it does not contain a version string.
Chen, et. al. Standards Track [Page 32]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
If an implementation chooses to keep dlswTConnOperEntrys in
the `disconnected' state, this value should remain unchanged."
REFERENCE
"DLSW: Switch-to-Switch Protocol RFC 1795"
::= { dlswTConnOperEntry 11 }
dlswTConnOperPartnerInitPacingWndw OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the partner initial receive pacing window. This
is our initial send pacing window for all new circuits on this
transport connection, as modified and granted by the first flow
control indication the partner sends on each circuit.
This information is obtained from a DLSw capabilities exchange
message received from the partner DLSw.
A value of zero is returned before a Capabilities
Exchange message is received, or if one is never received.
If an implementation chooses to keep dlswTConnOperEntrys in
the `disconnected' state, this value should remain unchanged."
REFERENCE
"DLSW: Switch-to-Switch Protocol RFC 1795"
::= { dlswTConnOperEntry 12 }
-- ...................................................................
dlswTConnOperPartnerSapList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0 | 16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Supported SAP List received in the capabilities
exchange message from the partner DLSw. This list has
the same format described for dlswTConnConfigSapList.
A string of zero length is returned before a Capabilities
Exchange message is received, or if one is never received.
If an implementation chooses to keep dlswTConnOperEntrys in
the `disconnected' state, this value should remain unchanged."
::= { dlswTConnOperEntry 13 }
dlswTConnOperPartnerNBExcl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
Chen, et. al. Standards Track [Page 33]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"The value of true signifies that the NetBIOS names received
from this partner in the NetBIOS name list in its capabilities
exchange message are the only NetBIOS names reachable by
that partner. `False' indicates that other NetBIOS names may
be reachable. `False' should be returned before a Capabilities
Exchange message is received, if one is never received, or if
one is received without a NB Name Exclusivity CV.
If an implementation chooses to keep dlswTConnOperEntrys in
the `disconnected' state, this value should remain unchanged."
::= { dlswTConnOperEntry 14 }
dlswTConnOperPartnerMacExcl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of true signifies that the MAC addresses received
from this partner in the MAC address list in its capabilities
exchange message are the only MAC addresses reachable by
that partner. `False' indicates that other MAC addresses may
be reachable. `False' should be returned before a Capabilities
Exchange message is received, if one is never received, or if
one is received without a MAC Address Exclusivity CV.
If an implementation chooses to keep dlswTConnOperEntrys in
the `disconnected' state, this value should remain unchanged."
::= { dlswTConnOperEntry 15 }
dlswTConnOperPartnerNBInfo OBJECT-TYPE
SYNTAX INTEGER {
none (1), -- none is kept
partial (2), -- partial list is kept
complete (3), -- complete list is kept
notApplicable (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It is up to this DSLw whether to keep either none, some,
or all of the NetBIOS name list that was received in
the capabilities exchange message sent by this partner DLSw.
This object identifies how much information was kept by
this DLSw. These names are stored as userConfigured
remote entries in dlswDirNBTable.
A value of (4), notApplicable, should be returned before
a Capabilities Exchange message is received, or if one is
never received.
Chen, et. al. Standards Track [Page 34]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
If an implementation chooses to keep dlswTConnOperEntrys in
the `disconnected' state, this value should remain unchanged."
::= { dlswTConnOperEntry 16 }
dlswTConnOperPartnerMacInfo OBJECT-TYPE
SYNTAX INTEGER {
none (1), -- none is kept
partial (2), -- partial list is kept
complete (3), -- complete list is kept
notApplicable (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It is up to this DLSw whether to keep either none, some,
or all of the MAC address list that was received in the
capabilities exchange message sent by this partner DLSw.
This object identifies how much information was kept by
this DLSw. These names are stored as userConfigured
remote entries in dlswDirMACTable.
A value of (4), notApplicable, should be returned before
a Capabilities Exchange message is received, or if one is
never received.
If an implementation chooses to keep dlswTConnOperEntrys in
the `disconnected' state, this value should remain unchanged."
::= { dlswTConnOperEntry 17 }
-- ...................................................................
-- Information about the last disconnect of this transport connection.
-- These objects make sense only for implementations that keep
-- transport connection information around after disconnection.
-- ...................................................................
dlswTConnOperDiscTime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "hundredths of a second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time (in hundredths of a second) since the
dlswTConnOperState last entered `disconnected' state."
::= { dlswTConnOperEntry 18 }
dlswTConnOperDiscReason OBJECT-TYPE
SYNTAX INTEGER {
other (1),
capExFailed (2),
transportLayerDisc (3),
Chen, et. al. Standards Track [Page 35]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
operatorCommand (4),
lastCircuitDiscd (5),
protocolError (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object signifies the reason that either prevented the
transport connection from entering the connected state, or
caused the transport connection to enter the disconnected
state."
::= { dlswTConnOperEntry 19 }
dlswTConnOperDiscActiveCir OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of circuits active (not in DISCONNECTED state)
at the time the transport connection was last disconnected.
This value is zero if the transport connection has never
been connected."
::= { dlswTConnOperEntry 20 }
-- ...................................................................
-- Transport Connection Statistics
-- (1) Traffic counts
-- ...................................................................
dlswTConnOperInDataPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "SSP messages"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Switch-to-Switch Protocol (SSP) messages of
type DGRMFRAME, DATAFRAME, or INFOFRAME received on this
transport connection."
::= { dlswTConnOperEntry 21 }
dlswTConnOperOutDataPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "SSP messages"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Switch-to-Switch Protocol (SSP) messages of
type DGRMFRAME, DATAFRAME, or INFOFRAME transmitted on this
transport connection."
Chen, et. al. Standards Track [Page 36]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
::= { dlswTConnOperEntry 22 }
dlswTConnOperInDataOctets OBJECT-TYPE
SYNTAX Counter32
UNITS "octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number octets in Switch-to-Switch Protocol (SSP) messages
of type DGRMFRAME, DATAFRAME, or INFOFRAME received on this
transport connection. Each message is counted starting with
the first octet following the SSP message header."
::= { dlswTConnOperEntry 23 }
dlswTConnOperOutDataOctets OBJECT-TYPE
SYNTAX Counter32
UNITS "octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number octets in Switch-to-Switch Protocol (SSP) messages
of type DGRMFRAME, DATAFRAME, or INFOFRAME transmitted on this
transport connection. Each message is counted starting with
the first octet following the SSP message header."
::= { dlswTConnOperEntry 24 }
dlswTConnOperInCntlPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "SSP messages"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Switch-to-Switch Protocol (SSP) messages
received on this transport connection which were not of
type DGRMFRAME, DATAFRAME, or INFOFRAME."
::= { dlswTConnOperEntry 25 }
dlswTConnOperOutCntlPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "SSP messages"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Switch-to-Switch Protocol (SSP) messages of
transmitted on this transport connection which were not of
type DGRMFRAME, DATAFRAME, or INFOFRAME."
::= { dlswTConnOperEntry 26 }
Chen, et. al. Standards Track [Page 37]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
-- ...................................................................
-- (2) Directory activities (Explorer messages)
-- ...................................................................
dlswTConnOperCURexSents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CanUReach_ex messages sent on this transport
connection."
::= { dlswTConnOperEntry 27 }
dlswTConnOperICRexRcvds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICanReach_ex messages received on this transport
connection."
::= { dlswTConnOperEntry 28 }
dlswTConnOperCURexRcvds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CanUReach_ex messages received on this transport
connection."
::= { dlswTConnOperEntry 29 }
dlswTConnOperICRexSents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ICanReach_ex messages sent on this transport
connection."
::= { dlswTConnOperEntry 30 }
-- ...................................................................
dlswTConnOperNQexSents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NetBIOS_NQ_ex (NetBIOS Name Query-explorer)
Chen, et. al. Standards Track [Page 38]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
messages sent on this transport connection."
::= { dlswTConnOperEntry 31 }
dlswTConnOperNRexRcvds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NETBIOS_NR_ex (NetBIOS Name Recognized-explorer)
messages received on this transport connection."
::= { dlswTConnOperEntry 32 }
dlswTConnOperNQexRcvds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NETBIOS_NQ_ex messages received on this
transport connection."
::= { dlswTConnOperEntry 33 }
dlswTConnOperNRexSents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NETBIOS_NR_ex messages sent on this transport
connection."
::= { dlswTConnOperEntry 34 }
-- ...................................................................
-- (3) Circuit activities on each transport connection
-- ...................................................................
dlswTConnOperCirCreates OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times that circuits entered `circuit_established'
state (not counting transitions from `circuit_restart')."
::= { dlswTConnOperEntry 35 }
dlswTConnOperCircuits OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active circuits on this transport
Chen, et. al. Standards Track [Page 39]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
connection, where `active' means not in `disconnected' state."
::= { dlswTConnOperEntry 36 }
-- -------------------------------------------------------------------
-- Transport Connection Specific
-- -------------------------------------------------------------------
dlswTConnSpecific OBJECT IDENTIFIER ::= { dlswTConn 4 }
dlswTConnTcp OBJECT IDENTIFIER ::= { dlswTConnSpecific 1 }
-- ...................................................................
-- TCP Transport Connection Specific -- Configuration
-- ...................................................................
dlswTConnTcpConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswTConnTcpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the TCP transport connections that
will be either initiated by or accepted by this DSLw.
It augments the entries in dlswTConnConfigTable whose domain
is dlswTCPDomain."
::= { dlswTConnTcp 1 }
dlswTConnTcpConfigEntry OBJECT-TYPE
SYNTAX DlswTConnTcpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each conceptual row defines parameters that are
specific to dlswTCPDomain transport connections."
INDEX { dlswTConnConfigIndex }
::= { dlswTConnTcpConfigTable 1 }
DlswTConnTcpConfigEntry ::= SEQUENCE {
dlswTConnTcpConfigKeepAliveInt INTEGER,
dlswTConnTcpConfigTcpConnections INTEGER,
dlswTConnTcpConfigMaxSegmentSize INTEGER
}
dlswTConnTcpConfigKeepAliveInt OBJECT-TYPE
SYNTAX INTEGER (0..1800)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The time in seconds between TCP keepAlive messages when
no traffic is flowing. Zero signifies no keepAlive protocol.
Chen, et. al. Standards Track [Page 40]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
Changes take effect only for new TCP connections."
DEFVAL { 0 }
::= { dlswTConnTcpConfigEntry 1 }
dlswTConnTcpConfigTcpConnections OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is our preferred number of TCP connections within a
TCP transport connection. The actual number used is negotiated
at capabilities exchange time. Changes take effect only
for new transport connections."
DEFVAL { 2 }
::= { dlswTConnTcpConfigEntry 2 }
dlswTConnTcpConfigMaxSegmentSize OBJECT-TYPE
SYNTAX INTEGER (0..65535)
UNITS "packets"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the number of bytes that this node is
willing to receive over the read TCP connection(s).
Changes take effect for new transport connections."
DEFVAL { 4096 }
::= { dlswTConnTcpConfigEntry 3 }
-- ...................................................................
-- TCP Transport Connection Specific -- Operation
-- ...................................................................
dlswTConnTcpOperTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswTConnTcpOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of TCP transport connections. It is optional
but desirable for the agent to keep an entry for some
period of time after the transport connection is
disconnected. This allows the manager to capture
additional useful information about the connection, in
particular, statistical information and the cause of the
disconnection."
::= { dlswTConnTcp 2 }
dlswTConnTcpOperEntry OBJECT-TYPE
SYNTAX DlswTConnTcpOperEntry
Chen, et. al. Standards Track [Page 41]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { dlswTConnOperTDomain, dlswTConnOperRemoteTAddr }
::= { dlswTConnTcpOperTable 1 }
DlswTConnTcpOperEntry ::= SEQUENCE {
dlswTConnTcpOperKeepAliveInt INTEGER,
dlswTConnTcpOperPrefTcpConnections INTEGER,
dlswTConnTcpOperTcpConnections INTEGER
}
dlswTConnTcpOperKeepAliveInt OBJECT-TYPE
SYNTAX INTEGER (0..1800)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time in seconds between TCP keepAlive messages when
no traffic is flowing. Zero signifies no keepAlive protocol is
operating."
::= { dlswTConnTcpOperEntry 1 }
dlswTConnTcpOperPrefTcpConnections OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of TCP connections preferred by this DLSw
partner, as received in its capabilities exchange message."
::= { dlswTConnTcpOperEntry 2 }
dlswTConnTcpOperTcpConnections OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the actual current number of TCP connections within
this transport connection."
::= { dlswTConnTcpOperEntry 3 }
-- *******************************************************************
-- DLSW INTERFACE GROUP
-- *******************************************************************
dlswIfTable OBJECT-TYPE
Chen, et. al. Standards Track [Page 42]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
SYNTAX SEQUENCE OF DlswIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The list of interfaces on which DLSw is active."
::= { dlswInterface 1 }
dlswIfEntry OBJECT-TYPE
SYNTAX DlswIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { ifIndex }
::= { dlswIfTable 1 }
DlswIfEntry ::= SEQUENCE {
dlswIfRowStatus RowStatus,
dlswIfVirtualSegment INTEGER,
dlswIfSapList OCTET STRING
}
dlswIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used by the manager to create
or delete the row entry in the dlswIfTable
following the RowStatus textual convention."
::= { dlswIfEntry 1 }
dlswIfVirtualSegment OBJECT-TYPE
SYNTAX INTEGER (0..4095 | 65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The segment number that uniquely identifies the virtual
segment to which this DLSw interface is connected.
Current source routing protocols limit this value to
the range 0 - 4095. (The value 0 is used by some
management applications for special test cases.)
A value of 65535 signifies that no virtual segment
is assigned to this interface. For instance,
in a non-source routing environment, segment number
assignment is not required."
DEFVAL { 65535 }
::= { dlswIfEntry 2 }
Chen, et. al. Standards Track [Page 43]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswIfSapList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SAP list indicates which SAPs are allowed to be
data link switched through this interface. This list
has the same format described for dlswTConnConfigSapList.
When changes to this object take effect is implementation-
specific. Turning off a particular SAP can destroy
active circuits that are using that SAP. An agent
implementation may reject such changes until there are no
active circuits if it so chooses. In this case, it is up
to the manager to close the circuits first, using
dlswCircuitState.
The DEFVAL below indicates support for SAPs 0, 4, 8, and C."
DEFVAL { 'AA000000000000000000000000000000'H }
::= { dlswIfEntry 3 }
-- *******************************************************************
-- DIRECTORY
-- Directory services caches the locations of MAC addresses
-- and NetBIOS names. For resources which are attached via
-- local interfaces, the ifIndex may be cached, and for
-- resources which are reachable via a DLSw partner, the
-- transport address of the DLSw partner is cached.
-- *******************************************************************
-- -------------------------------------------------------------------
-- Directory Related Statistical Objects
-- -------------------------------------------------------------------
dlswDirStat OBJECT IDENTIFIER ::= { dlswDirectory 1 }
dlswDirMacEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current total number of entries in the dlswDirMacTable."
::= { dlswDirStat 1 }
dlswDirMacCacheHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
Chen, et. al. Standards Track [Page 44]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
DESCRIPTION
"The number of times a cache search for a particular MAC address
resulted in success."
::= { dlswDirStat 2 }
dlswDirMacCacheMisses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a cache search for a particular MAC address
resulted in failure."
::= { dlswDirStat 3 }
dlswDirMacCacheNextIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The next value of dlswDirMacIndex to be assigned by
the agent. A retrieval of this object atomically reserves
the returned value for use by the manager to create a row
in dlswDirMacTable. This makes it possible for the agent
to control the index space of the MAC address cache, yet
allows the manager to administratively create new rows."
::= { dlswDirStat 4 }
dlswDirNBEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current total number of entries in the dlswDirNBTable."
::= { dlswDirStat 5 }
dlswDirNBCacheHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a cache search for a particular NetBIOS
name resulted in success."
::= { dlswDirStat 6 }
dlswDirNBCacheMisses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
Chen, et. al. Standards Track [Page 45]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
DESCRIPTION
"The number of times a cache search for a particular NetBIOS
name resulted in failure."
::= { dlswDirStat 7 }
dlswDirNBCacheNextIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The next value of dlswDirNBIndex to be assigned by the
agent. A retrieval of this object atomically reserves
the returned value for use by the manager to create
a row in dlswDirNBTable. This makes it possible for the
agent to control the index space for the NetBIOS name
cache, yet allows the manager to administratively
create new rows."
::= { dlswDirStat 8 }
-- -------------------------------------------------------------------
-- Directory Cache
-- -------------------------------------------------------------------
dlswDirCache OBJECT IDENTIFIER ::= { dlswDirectory 2 }
-- ...................................................................
-- Directory for MAC Addresses.
-- All Possible combinations of values of these objects.
--
-- EntryType LocationType Location Status
-- -------------- ------------ ------------------ --------------
-- userConfigured local ifEntry or 0.0 reachable, or
-- notReachable, or
-- unknown
-- userConfigured remote TConnConfigEntry reachable, or
-- notReachable, or
-- unknown
-- partnerCapExMsg remote TConnOperEntry unknown
-- dynamic local ifEntry or 0.0 reachable
-- dynamic remote TConnOperEntry reachable
--
-- ...................................................................
dlswDirMacTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswDirMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains locations of MAC addresses.
They could be either verified or not verified,
Chen, et. al. Standards Track [Page 46]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
local or remote, and configured locally or learned
from either Capabilities Exchange messages or
directory searches."
::= { dlswDirCache 1 }
dlswDirMacEntry OBJECT-TYPE
SYNTAX DlswDirMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indexed by dlswDirMacIndex."
INDEX { dlswDirMacIndex }
::= { dlswDirMacTable 1 }
DlswDirMacEntry ::= SEQUENCE {
dlswDirMacIndex INTEGER,
dlswDirMacMac MacAddressNC,
dlswDirMacMask MacAddressNC,
dlswDirMacEntryType INTEGER,
dlswDirMacLocationType INTEGER,
dlswDirMacLocation RowPointer,
dlswDirMacStatus INTEGER,
dlswDirMacLFSize LFSize,
dlswDirMacRowStatus RowStatus
}
dlswDirMacIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a conceptual row of this table."
::= { dlswDirMacEntry 1 }
dlswDirMacMac OBJECT-TYPE
SYNTAX MacAddressNC
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC address, together with the dlswDirMacMask,
specifies a set of MAC addresses that are defined or
discovered through an interface or partner DLSw nodes."
::= { dlswDirMacEntry 2 }
dlswDirMacMask OBJECT-TYPE
SYNTAX MacAddressNC
MAX-ACCESS read-create
STATUS current
Chen, et. al. Standards Track [Page 47]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
DESCRIPTION
"The MAC address mask, together with the dlswDirMacMac,
specifies a set of MAC addresses that are defined or
discovered through an interface or partner DLSw nodes."
DEFVAL { 'FFFFFFFFFFFF'H }
::= { dlswDirMacEntry 3 }
dlswDirMacEntryType OBJECT-TYPE
SYNTAX INTEGER {
other (1),
userConfiguredPublic (2),
userConfiguredPrivate (3),
partnerCapExMsg (4),
dynamic (5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The cause of the creation of this conceptual row.
It could be one of the three methods: (1) user
configured, including via management protocol
set operations, configuration file, command line
or equivalent methods; (2) learned from the
partner DLSw Capabilities Exchange messages;
and (3) dynamic, e.g., learned from ICanReach
messages, or LAN explorer frames. Since only
individual MAC addresses can be dynamically learned,
dynamic entries will all have a mask of all FFs.
The public versus private distinction for user-
configured resources applies only to local resources
(UC remote resources are private), and indicates
whether that resource should be advertised in
capabilities exchange messages sent by this node."
DEFVAL { userConfiguredPublic }
::= { dlswDirMacEntry 4 }
dlswDirMacLocationType OBJECT-TYPE
SYNTAX INTEGER {
other (1),
local (2),
remote (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The location of the resource (or a collection of
resources using a mask) of this conceptual row
Chen, et. al. Standards Track [Page 48]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
is either (1) local - the resource is reachable
via an interface, or (2) remote - the resource
is reachable via a partner DLSw node (or a set
of partner DLSw nodes)."
DEFVAL { local }
::= { dlswDirMacEntry 5 }
dlswDirMacLocation OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Points to either the ifEntry, dlswTConnConfigEntry,
dlswTConnOperEntry, 0.0, or something that is implementation
specific. It identifies the location of the MAC address
(or the collection of MAC addresses.)"
DEFVAL { null }
::= { dlswDirMacEntry 6 }
dlswDirMacStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
reachable (2),
notReachable (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies whether DLSw currently believes
the MAC address to be accessible at the specified location.
The value `notReachable' allows a configured resource
definition to be taken out of service when a search to
that resource fails (avoiding a repeat of the search)."
DEFVAL { unknown }
::= { dlswDirMacEntry 7 }
dlswDirMacLFSize OBJECT-TYPE
SYNTAX LFSize
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The largest size of the MAC INFO field (LLC header and data)
that a circuit to the MAC address can carry through this path."
DEFVAL { lfs65535 }
::= { dlswDirMacEntry 8 }
dlswDirMacRowStatus OBJECT-TYPE
SYNTAX RowStatus
Chen, et. al. Standards Track [Page 49]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used by the manager to create
or delete the row entry in the dlswDirMacTable
following the RowStatus textual convention."
::= { dlswDirMacEntry 9 }
-- ...................................................................
-- Directory for NetBIOS Names
-- All Possible combinations of values of these objects.
--
-- EntryType LocationType Location Status
-- -------------- ------------ ------------------ --------------
-- userConfigured local ifEntry or 0.0 reachable, or
-- notReachable, or
-- unknown
-- userConfigured remote TConnConfigEntry reachable, or
-- notReachable, or
-- unknown
-- partnerCapExMsg remote TConnOperEntry unknown
-- dynamic local ifEntry or 0.0 reachable
-- dynamic remote TConnOperEntry reachable
--
-- ...................................................................
dlswDirNBTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswDirNBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains locations of NetBIOS names.
They could be either verified or not verified,
local or remote, and configured locally or learned
from either Capabilities Exchange messages or
directory searches."
::= { dlswDirCache 2 }
dlswDirNBEntry OBJECT-TYPE
SYNTAX DlswDirNBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indexed by dlswDirNBIndex."
INDEX { dlswDirNBIndex }
::= { dlswDirNBTable 1 }
DlswDirNBEntry ::= SEQUENCE {
dlswDirNBIndex INTEGER,
Chen, et. al. Standards Track [Page 50]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswDirNBName NBName,
dlswDirNBNameType INTEGER,
dlswDirNBEntryType INTEGER,
dlswDirNBLocationType INTEGER,
dlswDirNBLocation RowPointer,
dlswDirNBStatus INTEGER,
dlswDirNBLFSize LFSize,
dlswDirNBRowStatus RowStatus
}
dlswDirNBIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a conceptual row of this table."
::= { dlswDirNBEntry 1 }
dlswDirNBName OBJECT-TYPE
SYNTAX NBName
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The NetBIOS name (including `any char' and `wildcard'
characters) specifies a set of NetBIOS names that are
defined or discovered through an interface or partner
DLSw nodes."
::= { dlswDirNBEntry 2 }
dlswDirNBNameType OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
individual (2),
group (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Whether dlswDirNBName represents an (or a set of) individual
or group NetBIOS name(s)."
DEFVAL { unknown }
::= { dlswDirNBEntry 3 }
dlswDirNBEntryType OBJECT-TYPE
SYNTAX INTEGER {
other (1),
userConfiguredPublic (2),
userConfiguredPrivate (3),
Chen, et. al. Standards Track [Page 51]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
partnerCapExMsg (4),
dynamic (5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The cause of the creation of this conceptual row.
It could be one of the three methods: (1) user
configured, including via management protocol
set operations, configuration file, command line,
or equivalent methods; (2) learned from the
partner DLSw Capabilities Exchange messages;
and (3) dynamic, e.g., learned from ICanReach
messages, or test frames. Since only actual
NetBIOS names can be dynamically learned, dynamic
entries will not contain any char or wildcard
characters.
The public versus private distinction for user-
configured resources applies only to local resources
(UC remote resources are private), and indicates
whether that resource should be advertised in
capabilities exchange messages sent by this node."
DEFVAL { userConfiguredPublic }
::= { dlswDirNBEntry 4 }
dlswDirNBLocationType OBJECT-TYPE
SYNTAX INTEGER {
other (1),
local (2),
remote (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The location of the resource (or a collection of resources
using any char/wildcard characters) of this conceptual row
is either (1) local - the resource is reachable via an
interface, or (2) remote - the resource is reachable via a
a partner DLSw node (or a set of partner DLSw nodes)."
DEFVAL { local }
::= { dlswDirNBEntry 5 }
dlswDirNBLocation OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-create
STATUS current
DESCRIPTION
Chen, et. al. Standards Track [Page 52]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"Points to either the ifEntry, dlswTConnConfigEntry,
dlswTConnOperEntry, 0.0, or something that is implementation
specific. It identifies the location of the NetBIOS name
or the set of NetBIOS names."
DEFVAL { null }
::= { dlswDirNBEntry 6 }
dlswDirNBStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
reachable (2),
notReachable (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies whether DLSw currently believes
the NetBIOS name to be accessible at the specified location.
The value `notReachable' allows a configured resource
definition to be taken out of service when a search to
that resource fails (avoiding a repeat of the search)."
DEFVAL { unknown }
::= { dlswDirNBEntry 7 }
dlswDirNBLFSize OBJECT-TYPE
SYNTAX LFSize
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The largest size of the MAC INFO field (LLC header and data)
that a circuit to the NB name can carry through this path."
DEFVAL { lfs65535 }
::= { dlswDirNBEntry 8 }
dlswDirNBRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used by manager to create
or delete the row entry in the dlswDirNBTable
following the RowStatus textual convention."
::= { dlswDirNBEntry 9 }
-- -------------------------------------------------------------------
-- Resource Locations
-- -------------------------------------------------------------------
Chen, et. al. Standards Track [Page 53]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswDirLocate OBJECT IDENTIFIER ::= { dlswDirectory 3 }
-- ...................................................................
-- Locate Entries in the dlswDirMacTable for a given MAC address
-- ...................................................................
dlswDirLocateMacTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswDirLocateMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to retrieve all entries in the
dlswDirMacTable that match a given MAC address,
in the order of the best matched first, the
second best matched second, and so on, till
no more entries match the given MAC address."
::= { dlswDirLocate 1 }
dlswDirLocateMacEntry OBJECT-TYPE
SYNTAX DlswDirLocateMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indexed by dlswDirLocateMacMac and dlswDirLocateMacMatch.
The first object is the MAC address of interest, and
the second object is the order in the list of all
entries that match the MAC address."
INDEX { dlswDirLocateMacMac, dlswDirLocateMacMatch }
::= { dlswDirLocateMacTable 1 }
DlswDirLocateMacEntry ::= SEQUENCE {
dlswDirLocateMacMac MacAddressNC,
dlswDirLocateMacMatch INTEGER,
dlswDirLocateMacLocation RowPointer
}
dlswDirLocateMacMac OBJECT-TYPE
SYNTAX MacAddressNC
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address to be located."
::= { dlswDirLocateMacEntry 1 }
dlswDirLocateMacMatch OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
Chen, et. al. Standards Track [Page 54]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"The order of the entries of dlswDirMacTable
that match dlswDirLocateMacMac. A value of
one represents the entry that best matches the
MAC address. A value of two represents the second
best matched entry, and so on."
::= { dlswDirLocateMacEntry 2 }
dlswDirLocateMacLocation OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Points to the dlswDirMacEntry."
::= { dlswDirLocateMacEntry 3 }
-- ...................................................................
-- Locate Entries in the dlswDirNBTable for a given NetBIOS name
-- ...................................................................
dlswDirLocateNBTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswDirLocateNBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to retrieve all entries in the
dlswDirNBTable that match a given NetBIOS name,
in the order of the best matched first, the
second best matched second, and so on, till
no more entries match the given NetBIOS name."
::= { dlswDirLocate 2 }
dlswDirLocateNBEntry OBJECT-TYPE
SYNTAX DlswDirLocateNBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indexed by dlswDirLocateNBName and dlswDirLocateNBMatch.
The first object is the NetBIOS name of interest, and
the second object is the order in the list of all
entries that match the NetBIOS name."
INDEX { dlswDirLocateNBName, dlswDirLocateNBMatch }
::= { dlswDirLocateNBTable 1 }
DlswDirLocateNBEntry ::= SEQUENCE {
dlswDirLocateNBName NBName,
dlswDirLocateNBMatch INTEGER,
dlswDirLocateNBLocation RowPointer
}
Chen, et. al. Standards Track [Page 55]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswDirLocateNBName OBJECT-TYPE
SYNTAX NBName
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The NetBIOS name to be located (no any char or wildcards)."
::= { dlswDirLocateNBEntry 1 }
dlswDirLocateNBMatch OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The order of the entries of dlswDirNBTable
that match dlswDirLocateNBName. A value of
one represents the entry that best matches the
NetBIOS name. A value of two represents the second
best matched entry, and so on."
::= { dlswDirLocateNBEntry 2 }
dlswDirLocateNBLocation OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Points to the dlswDirNBEntry."
::= { dlswDirLocateNBEntry 3 }
-- *******************************************************************
-- CIRCUIT
-- A circuit is the end-to-end association of two DLSw entities
-- through one or two DLSw nodes. It is the concatenation of
-- two "data links", optionally with an intervening transport
-- connection. The origin of the circuit is the end station that
-- initiates the circuit. The target of the circuit is the end
-- station that receives the initiation.
-- *******************************************************************
-- -------------------------------------------------------------------
-- Statistics Related to Circuits
-- -------------------------------------------------------------------
dlswCircuitStat OBJECT IDENTIFIER ::= { dlswCircuit 1 }
dlswCircuitStatActives OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
Chen, et. al. Standards Track [Page 56]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
DESCRIPTION
"The current number of circuits in dlswCircuitTable that are
not in the disconnected state."
::= { dlswCircuitStat 1 }
dlswCircuitStatCreates OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of entries ever added to dlswCircuitTable,
or reactivated upon exiting `disconnected' state."
::= { dlswCircuitStat 2 }
-- -------------------------------------------------------------------
-- Circuit Table
--
-- This table is the DLSw entity's view of circuits. There will be
-- a conceptual row in the table associated with each data link.
--
-- The chart below lists the various possible combinations of
-- origin and target MAC locations and the number of entries in
-- this Circuit Table:
--
-- number of | Origin End Station Location
-- entries in the |--------------------------------------
-- Circuit Table | internal local remote
-- -----------------------|--------------------------------------
-- Target | internal | NA 2 1
-- End | local | 2 2 1
-- Station | remote | 1 1 NA
-- Location | |
--
-- NA: Not applicable
--
-- Note:
-- (a) IfIndex and RouteInfo are applied only if location is local.
-- (b) TDomain and TAddr are applied only if location is remote.
--
-- Most of statistics related to circuits can be collected
-- from LLC-2 Link Station Table.
-- -------------------------------------------------------------------
dlswCircuitTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswCircuitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
Chen, et. al. Standards Track [Page 57]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"This table is the circuit representation in the DLSw
entity. Virtual data links are used to represent any internal
end stations. There is a conceptual row associated with
each data link. Thus, for circuits without an intervening
transport connection, there are two conceptual rows
for each circuit.
The table consists of the circuits being established,
established, and as an implementation option, circuits that
have been disconnected. For circuits carried over
transport connections, an entry is created after
the CUR_cs was sent or received. For circuits between
two locally attached devices, or internal virtual MAC
addresses, an entry is created when the equivalent of
CUR_cs sent/received status is reached.
End station 1 (S1) and End station 2 (S2) are used to
represent the two end stations of the circuit.
S1 is always an end station which is locally attached.
S2 may be locally attached or remote. If it is locally
attached, the circuit will be represented by two rows indexed
by (A, B) and (B, A) where A & B are the relevant MACs/SAPs.
The table may be used to store the causes of disconnection of
circuits. It is recommended that the oldest disconnected
circuit entry be removed from this table when the memory
space of disconnected circuits is needed."
::= { dlswCircuit 2 }
dlswCircuitEntry OBJECT-TYPE
SYNTAX DlswCircuitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { dlswCircuitS1Mac,
dlswCircuitS1Sap,
dlswCircuitS2Mac,
dlswCircuitS2Sap }
::= { dlswCircuitTable 1 }
DlswCircuitEntry ::= SEQUENCE {
dlswCircuitS1Mac MacAddressNC,
dlswCircuitS1Sap OCTET STRING,
dlswCircuitS1IfIndex INTEGER,
dlswCircuitS1DlcType DlcType,
dlswCircuitS1RouteInfo OCTET STRING,
dlswCircuitS1CircuitId OCTET STRING,
Chen, et. al. Standards Track [Page 58]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswCircuitS1Dlc RowPointer,
dlswCircuitS2Mac MacAddressNC,
dlswCircuitS2Sap OCTET STRING,
dlswCircuitS2Location EndStationLocation,
dlswCircuitS2TDomain OBJECT IDENTIFIER,
dlswCircuitS2TAddress TAddress,
dlswCircuitS2CircuitId OCTET STRING,
dlswCircuitOrigin INTEGER,
dlswCircuitEntryTime TimeTicks,
dlswCircuitStateTime TimeTicks,
dlswCircuitState INTEGER,
dlswCircuitPriority INTEGER,
dlswCircuitFCSendGrantedUnits INTEGER,
dlswCircuitFCSendCurrentWndw INTEGER,
dlswCircuitFCRecvGrantedUnits INTEGER,
dlswCircuitFCRecvCurrentWndw INTEGER,
dlswCircuitFCLargestRecvGranted Gauge32,
dlswCircuitFCLargestSendGranted Gauge32,
dlswCircuitFCHalveWndwSents Counter32,
dlswCircuitFCResetOpSents Counter32,
dlswCircuitFCHalveWndwRcvds Counter32,
dlswCircuitFCResetOpRcvds Counter32,
dlswCircuitDiscReasonLocal INTEGER,
dlswCircuitDiscReasonRemote INTEGER,
dlswCircuitDiscReasonRemoteData OCTET STRING
}
-- ...................................................................
-- Information related to the End Station 1 (S1).
-- ...................................................................
dlswCircuitS1Mac OBJECT-TYPE
SYNTAX MacAddressNC
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC Address of End Station 1 (S1) used for this circuit."
::= { dlswCircuitEntry 1 }
dlswCircuitS1Sap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
Chen, et. al. Standards Track [Page 59]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"The SAP at End Station 1 (S1) used for this circuit."
::= { dlswCircuitEntry 2 }
dlswCircuitS1IfIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifEntry index of the local interface through which S1
can be reached."
::= { dlswCircuitEntry 3 }
dlswCircuitS1DlcType OBJECT-TYPE
SYNTAX DlcType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DLC protocol in use between the DLSw node and S1."
::= { dlswCircuitEntry 4 }
dlswCircuitS1RouteInfo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If source-route bridging is in use between the DLSw
node and S1, this is the routing information field
describing the path between the two devices.
Otherwise the value will be an OCTET STRING of
zero length."
::= { dlswCircuitEntry 5 }
dlswCircuitS1CircuitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0 | 8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Circuit ID assigned by this DLSw node to this circuit.
The first four octets are the DLC port Id, and
the second four octets are the Data Link Correlator.
If the DLSw SSP was not used to establish this circuit,
the value will be a string of zero length."
::= { dlswCircuitEntry 6 }
dlswCircuitS1Dlc OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS current
Chen, et. al. Standards Track [Page 60]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
DESCRIPTION
"Points to a conceptual row of the underlying DLC MIB,
which could either be the standard MIBs (e.g., the SDLC),
or an enterprise-specific DLC MIB."
::= { dlswCircuitEntry 7 }
-- ...................................................................
-- Information related to the End Station 2 (S2).
-- ...................................................................
dlswCircuitS2Mac OBJECT-TYPE
SYNTAX MacAddressNC
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC Address of End Station 2 (S2) used for this circuit."
::= { dlswCircuitEntry 8 }
dlswCircuitS2Sap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The SAP at End Station 2 (S2) used for this circuit."
::= { dlswCircuitEntry 9 }
dlswCircuitS2Location OBJECT-TYPE
SYNTAX EndStationLocation
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The location of End Station 2 (S2).
If the location of End Station 2 is local, the
interface information will be available in the
conceptual row whose S1 and S2 are the S2 and
the S1 of this conceptual row, respectively."
::= { dlswCircuitEntry 10 }
dlswCircuitS2TDomain OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the location of End Station 2 is remote,
this value is the transport domain of the
transport protocol the circuit is running
over. Otherwise, the value is 0.0."
::= { dlswCircuitEntry 11 }
Chen, et. al. Standards Track [Page 61]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswCircuitS2TAddress OBJECT-TYPE
SYNTAX TAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the location of End Station 2 is remote,
this object contains the address of the partner
DLSw, else it will be an OCTET STRING of zero length."
::= { dlswCircuitEntry 12 }
dlswCircuitS2CircuitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0 | 8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Circuit ID assigned to this circuit by the partner
DLSw node. The first four octets are the DLC port Id, and
the second four octets are the Data Link Correlator.
If the DLSw SSP was not used to establish this circuit,
the value will be a string of zero length."
::= { dlswCircuitEntry 13 }
-- ...................................................................
dlswCircuitOrigin OBJECT-TYPE
SYNTAX INTEGER {
s1 (1),
s2 (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies which of the two end stations
initiated the establishment of this circuit."
::= { dlswCircuitEntry 14 }
-- ...................................................................
-- Operational information related to this circuit.
-- ...................................................................
dlswCircuitEntryTime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "hundredths of a second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time (in hundredths of a second) since this
circuit table conceptual row was created."
::= { dlswCircuitEntry 15 }
Chen, et. al. Standards Track [Page 62]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswCircuitStateTime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "hundredths of a second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time (in hundredths of a second) since this
circuit entered the current state."
::= { dlswCircuitEntry 16 }
dlswCircuitState OBJECT-TYPE
SYNTAX INTEGER {
disconnected (1),
circuitStart (2),
resolvePending (3),
circuitPending (4),
circuitEstablished (5),
connectPending (6),
contactPending (7),
connected (8),
disconnectPending (9),
haltPending (10),
haltPendingNoack (11),
circuitRestart (12),
restartPending (13)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current state of this circuit. The agent, implementation
specific, may choose to keep entries for some period of time
after circuit disconnect, so the manager can gather the time
and cause of disconnection.
While all of the specified values may be returned from a GET
operation, the only SETable value is `disconnectPending'.
When this value is set, DLSw should perform the appropriate
action given its previous state (e.g., send HALT_DL if the
state was `connected') to bring the circuit down to the
`disconnected' state. Both the partner DLSw and local end
station(s) should be notified as appropriate.
This MIB provides no facility to re-establish a disconnected
circuit, because in DLSw this should be an end station-driven
function."
::= { dlswCircuitEntry 17 }
dlswCircuitPriority OBJECT-TYPE
Chen, et. al. Standards Track [Page 63]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
SYNTAX INTEGER {
unsupported (1),
low (2),
medium (3),
high (4),
highest (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmission priority of this circuit as understood by
this DLSw node. This value is determined by the two DLSw
nodes at circuit startup time. If this DLSw node does not
support DLSw circuit priority, the value `unsupported' should
be returned."
::= { dlswCircuitEntry 18 }
-- ...................................................................
-- Pacing Objects:
-- These objects are applicable if DLSw is using the SSP circuit
-- pacing protocol to control the flow between the two data links
-- in this circuit.
-- ...................................................................
dlswCircuitFCSendGrantedUnits OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of paced SSP messages that this DLSw is currently
authorized to send on this circuit before it must stop and
wait for an additional flow control indication from the
partner DLSw.
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 19 }
dlswCircuitFCSendCurrentWndw OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current window size that this DLSw is using in its role
as a data sender. This is the value by which this DLSw would
increase the number of messages it is authorized to send, if
it were to receive a flow control indication with the bits
specifying `repeat window'.
Chen, et. al. Standards Track [Page 64]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 20 }
dlswCircuitFCRecvGrantedUnits OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of paced SSP messages that this DLSw has
authorized the partner DLSw to send on this circuit before
the partner DLSw must stop and wait for an additional flow
control indication from this DLSw.
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 21 }
dlswCircuitFCRecvCurrentWndw OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current window size that this DLSw is using in its role
as a data receiver. This is the number of additional paced
SSP messages that this DLSw would be authorizing its DLSw
partner to send, if this DLSw were to send a flow control
indication with the bits specifying `repeat window'.
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 22 }
dlswCircuitFCLargestRecvGranted OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The largest receive window size granted by this DLSw during
the current activation of this circuit. This is not the
largest number of messages granted at any time, but the
largest window size as represented by FCIND operator bits.
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 23 }
dlswCircuitFCLargestSendGranted OBJECT-TYPE
Chen, et. al. Standards Track [Page 65]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The largest send (with respect to this DLSw) window size
granted by the partner DLSw during the current activation of
this circuit.
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 24 }
dlswCircuitFCHalveWndwSents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Halve Window operations this DLSw has sent on
this circuit, in its role as a data receiver.
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 25 }
dlswCircuitFCResetOpSents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Reset Window operations this DLSw has sent on
this circuit, in its role as a data receiver.
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 26 }
dlswCircuitFCHalveWndwRcvds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Halve Window operations this DLSw has received on
this circuit, in its role as a data sender.
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 27 }
Chen, et. al. Standards Track [Page 66]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswCircuitFCResetOpRcvds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Reset Window operations this DLSw has received on
this circuit, in its role as a data sender.
The value zero should be returned if this circuit is not
running the DLSw pacing protocol."
::= { dlswCircuitEntry 28 }
-- ...................................................................
-- Information about the circuit disconnection
-- ...................................................................
dlswCircuitDiscReasonLocal OBJECT-TYPE
SYNTAX INTEGER {
endStationDiscRcvd (1),
endStationDlcError (2),
protocolError (3),
operatorCommand (4),
haltDlRcvd (5),
haltDlNoAckRcvd (6),
transportConnClosed (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason why this circuit was last disconnected, as seen
by this DLSw node.
This object is present only if the agent keeps circuit
table entries around for some period after circuit disconnect."
::= { dlswCircuitEntry 29 }
dlswCircuitDiscReasonRemote OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
endStationDiscRcvd (2),
endStationDlcError (3),
protocolError (4),
operatorCommand (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The generic reason code why this circuit was last
disconnected, as reported by the DLSw partner in a HALT_DL
Chen, et. al. Standards Track [Page 67]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
or HALT_DL_NOACK. If the partner does not send a reason
code in these messages, or the DLSw implementation does
not report receiving one, the value `unknown' is returned.
This object is present only if the agent keeps circuit table
entries around for some period after circuit disconnect."
::= { dlswCircuitEntry 30 }
dlswCircuitDiscReasonRemoteData OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0 | 4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Implementation-specific data reported by the DLSw partner in
a HALT_DL or HALT_DL_NOACK, to help specify how and why this
circuit was last disconnected. If the partner does not send
this data in these messages, or the DLSw implementation does
not report receiving it, a string of zero length is returned.
This object is present only if the agent keeps circuit table
entries around for some period after circuit disconnect."
::= { dlswCircuitEntry 31 }
-- ...................................................................
-- Statistics related to this circuit.
-- All statistics are in LLC-2 Link Station Statistical Table.
-- All SDLC statistics are in SDLC MIB
-- ...................................................................
-- *******************************************************************
-- DLSW SDLC EXTENSION
-- *******************************************************************
dlswSdlcLsEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in dlswSdlcLsTable."
::= { dlswSdlc 1 }
-- ...................................................................
dlswSdlcLsTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlswSdlcLsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
Chen, et. al. Standards Track [Page 68]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"The table defines the virtual MAC addresses for those
SDLC link stations that participate in data link switching."
::= { dlswSdlc 2 }
dlswSdlcLsEntry OBJECT-TYPE
SYNTAX DlswSdlcLsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is the ifIndex value for the
SDLC port which owns this link station and the poll
address of the particular SDLC link station."
INDEX { ifIndex, sdlcLSAddress }
::= { dlswSdlcLsTable 1 }
DlswSdlcLsEntry ::= SEQUENCE {
dlswSdlcLsLocalMac MacAddressNC,
dlswSdlcLsLocalSap OCTET STRING,
dlswSdlcLsLocalIdBlock DisplayString,
dlswSdlcLsLocalIdNum DisplayString,
dlswSdlcLsRemoteMac MacAddressNC,
dlswSdlcLsRemoteSap OCTET STRING,
dlswSdlcLsRowStatus RowStatus
}
dlswSdlcLsLocalMac OBJECT-TYPE
SYNTAX MacAddressNC
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The virtual MAC address used to represent the SDLC-attached
link station to the rest of the DLSw network."
::= { dlswSdlcLsEntry 1 }
dlswSdlcLsLocalSap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SAP used to represent this link station."
::= { dlswSdlcLsEntry 2 }
dlswSdlcLsLocalIdBlock OBJECT-TYPE
SYNTAX DisplayString (SIZE (0 | 3))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The block number is the first three digits of the node_id,
Chen, et. al. Standards Track [Page 69]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
if available. These 3 hexadecimal digits identify the
product."
DEFVAL { ''H }
::= { dlswSdlcLsEntry 3 }
dlswSdlcLsLocalIdNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (0 | 5))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ID number is the last 5 digits of the node_id, if
available. These 5 hexadecimal digits are
administratively defined and combined with the 3 digit
block number form the node_id. This node_id is used to
identify the local node and is included in SNA XIDs."
DEFVAL { ''H }
::= { dlswSdlcLsEntry 4 }
dlswSdlcLsRemoteMac OBJECT-TYPE
SYNTAX MacAddressNC
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC address to which DLSw should attempt to connect
this link station. If this information is not available,
a length of zero for this object should be returned."
DEFVAL { ''H }
::= { dlswSdlcLsEntry 5 }
dlswSdlcLsRemoteSap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0 | 1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SAP of the remote station to which this link
station should be connected. If this information
is not available, a length of zero for this object
should be returned."
DEFVAL { ''H }
::= { dlswSdlcLsEntry 6 }
dlswSdlcLsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used by the manager to create
or delete the row entry in the dlswSdlcLsTable
Chen, et. al. Standards Track [Page 70]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
following the RowStatus textual convention."
::= { dlswSdlcLsEntry 7 }
-- *******************************************************************
-- TRAP GENERATION CONTROL
-- *******************************************************************
dlswTrapControl OBJECT IDENTIFIER ::= { dlswNode 10}
dlswTrapCntlTConnPartnerReject OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2),
partial (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the DLSw is permitted to emit partner
reject related traps. With the value of `enabled'
the DLSw will emit all partner reject related traps.
With the value of `disabled' the DLSw will not emit
any partner reject related traps. With the value
of `partial' the DLSw will only emits partner reject
traps for CapEx reject. The changes take effect
immediately."
::= { dlswTrapControl 1 }
dlswTrapCntlTConnProtViolation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the DLSw is permitted to generate
protocol-violation traps on the events such as
window size violation. The changes take effect
immediately."
::= { dlswTrapControl 2 }
dlswTrapCntlTConn OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2),
partial (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
Chen, et. al. Standards Track [Page 71]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"Indicates whether the DLSw is permitted to emit transport
connection up and down traps. With the value of `enabled'
the DLSw will emit traps when connections enter `connected'
and `disconnected' states. With the value of `disabled'
the DLSw will not emit traps when connections enter of
`connected' and `disconnected' states. With the value
of `partial' the DLSw will only emits transport connection
down traps when the connection is closed with busy.
The changes take effect immediately."
::= { dlswTrapControl 3 }
dlswTrapCntlCircuit OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2),
partial (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the DLSw is permitted to generate
circuit up and down traps. With the value of `enabled'
the DLSw will emit traps when circuits enter `connected'
and `disconnected' states. With the value of `disabled'
the DLSw will not emit traps when circuits enter of
`connected' and `disconnected' states. With the value
of `partial' the DLSw will emit traps only for those
circuits that are initiated by this DLSw, e.g.,
originating the CUR_CS message. The changes take effect
immediately."
::= { dlswTrapControl 4 }
-- *******************************************************************
-- NOTIFICATIONS, i.e., TRAP DEFINITIONS
-- *******************************************************************
dlswTraps OBJECT IDENTIFIER ::= { dlswMIB 0 }
-- -------------------------------------------------------------------
-- This section defines the well-known notifications sent by
-- DLSW agents.
-- Care must be taken to insure that no particular notification
-- is sent to a single receiving entity more often than once
-- every five seconds.
--
-- Traps includes:
-- (1) Partner rejected (capEx rejection, not in partner list, etc.)
-- (2) DLSw protocol violation (e.g., window size violation, etc.)
-- (3) Transport connection up/down
Chen, et. al. Standards Track [Page 72]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
-- (4) Circuit up/down
-- -------------------------------------------------------------------
--
dlswTrapTConnPartnerReject NOTIFICATION-TYPE
OBJECTS { dlswTConnOperTDomain, dlswTConnOperRemoteTAddr
}
STATUS current
DESCRIPTION
"This trap is sent each time a transport connection
is rejected by a partner DLSw during Capabilities
Exchanges. The emission of this trap is controlled
by dlswTrapCntlTConnPartnerReject."
::= { dlswTraps 1 }
dlswTrapTConnProtViolation NOTIFICATION-TYPE
OBJECTS { dlswTConnOperTDomain, dlswTConnOperRemoteTAddr
}
STATUS current
DESCRIPTION
"This trap is sent each time a protocol violation is
detected for a transport connection. The emission of this
trap is controlled by dlswTrapCntlTConnProtViolation."
::= { dlswTraps 2 }
dlswTrapTConnUp NOTIFICATION-TYPE
OBJECTS { dlswTConnOperTDomain, dlswTConnOperRemoteTAddr
}
STATUS current
DESCRIPTION
"This trap is sent each time a transport connection
enters `connected' state. The emission of this trap
is controlled by dlswTrapCntlTConn."
::= { dlswTraps 3 }
dlswTrapTConnDown NOTIFICATION-TYPE
OBJECTS { dlswTConnOperTDomain, dlswTConnOperRemoteTAddr
}
STATUS current
DESCRIPTION
"This trap is sent each time a transport connection
enters `disconnected' state. The emission of this trap
is controlled by dlswTrapCntlTConn."
::= { dlswTraps 4 }
dlswTrapCircuitUp NOTIFICATION-TYPE
OBJECTS { dlswCircuitS1Mac, dlswCircuitS1Sap,
dlswCircuitS2Mac, dlswCircuitS2Sap
Chen, et. al. Standards Track [Page 73]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
}
STATUS current
DESCRIPTION
"This trap is sent each time a circuit enters `connected'
state. The emission of this trap is controlled by
dlswTrapCntlCircuit."
::= { dlswTraps 5 }
dlswTrapCircuitDown NOTIFICATION-TYPE
OBJECTS { dlswCircuitS1Mac, dlswCircuitS1Sap,
dlswCircuitS2Mac, dlswCircuitS2Sap
}
STATUS current
DESCRIPTION
"This trap is sent each time a circuit enters `disconnected'
state. The emission of this trap is controlled by
dlswTrapCntlCircuit."
::= { dlswTraps 6 }
-- *******************************************************************
-- CONFORMANCE INFORMATION
-- *******************************************************************
dlswConformance OBJECT IDENTIFIER ::= { dlsw 3 }
dlswCompliances OBJECT IDENTIFIER ::= { dlswConformance 1 }
dlswGroups OBJECT IDENTIFIER ::= { dlswConformance 2 }
-- -------------------------------------------------------------------
-- COMPLIANCE STATEMENTS
-- -------------------------------------------------------------------
-- ...................................................................
-- Core compliance for all DLSw entities
-- ...................................................................
dlswCoreCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The core compliance statement for all DLSw nodes."
MODULE
MANDATORY-GROUPS {
dlswNodeGroup,
dlswTConnStatGroup,
dlswTConnConfigGroup,
dlswTConnOperGroup,
dlswInterfaceGroup,
dlswCircuitGroup,
dlswCircuitStatGroup,
Chen, et. al. Standards Track [Page 74]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswNotificationGroup }
GROUP dlswNodeNBGroup
DESCRIPTION
"The DLSw NetBIOS Node group is mandatory only for
those DLSw entities that implement NetBIOS."
GROUP dlswTConnNBGroup
DESCRIPTION
"The DLSw NetBIOS Transport Connection group is
mandatory only for those DLSw entities that
implement NetBIOS."
OBJECT dlswNodeStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswNodeVirtualSegmentLFSize
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswNodeResourceNBExclusivity
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswNodeResourceMacExclusivity
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTrapCntlTConnPartnerReject
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTrapCntlTConnProtViolation
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTrapCntlTConn
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
Chen, et. al. Standards Track [Page 75]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
OBJECT dlswTrapCntlCircuit
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnConfigTDomain
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnConfigLocalTAddr
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnConfigRemoteTAddr
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnConfigEntryType
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnConfigGroupDefinition
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnConfigSetupType
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnConfigSapList
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnConfigAdvertiseMacNB
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnConfigInitCirRecvWndw
MIN-ACCESS read-only
DESCRIPTION
Chen, et. al. Standards Track [Page 76]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"Write access is not required."
OBJECT dlswTConnConfigRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnOperState
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswIfRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswIfVirtualSegment
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswIfSapList
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswCircuitState
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { dlswCompliances 1 }
-- ...................................................................
-- Compliance for all DLSw entities that provide TCP transport.
-- ...................................................................
dlswTConnTcpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance for DLSw nodes that use TCP as a
transport connection protocol."
MODULE
MANDATORY-GROUPS {
dlswTConnTcpConfigGroup,
dlswTConnTcpOperGroup }
OBJECT dlswTConnTcpConfigKeepAliveInt
Chen, et. al. Standards Track [Page 77]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnTcpConfigTcpConnections
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswTConnTcpConfigMaxSegmentSize
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { dlswCompliances 2 }
-- ...................................................................
-- Compliance for all DLSw Entities that implement a directory
-- ...................................................................
dlswDirCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance for DLSw nodes that provide a directory
function."
MODULE
MANDATORY-GROUPS {
dlswDirGroup }
GROUP dlswDirNBGroup
DESCRIPTION
"The DLSw NetBIOS group is mandatory only for
those DLSw entities that implement NetBIOS."
OBJECT dlswDirMacMac
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirMacMask
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirMacEntryType
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
Chen, et. al. Standards Track [Page 78]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
OBJECT dlswDirMacLocationType
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirMacLocation
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirMacStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirMacLFSize
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirMacRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirNBName
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirNBNameType
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirNBEntryType
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirNBLocationType
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirNBLocation
MIN-ACCESS read-only
DESCRIPTION
Chen, et. al. Standards Track [Page 79]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
"Write access is not required."
OBJECT dlswDirNBStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirNBLFSize
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswDirNBRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { dlswCompliances 3 }
-- ...................................................................
-- Compliance for all DLSw entities that provide an ordered
-- list of directory entries that match a resource
-- ...................................................................
dlswDirLocateCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance for DLSw nodes that provide an ordered
list of directory entries for a given resource."
MODULE
MANDATORY-GROUPS {
dlswDirLocateGroup }
GROUP dlswDirLocateNBGroup
DESCRIPTION
"The DLSw NetBIOS group is mandatory only for
those DLSw entities that implement NetBIOS."
::= { dlswCompliances 4 }
-- ...................................................................
-- Compliance for all DLSw entities that support SDLC end stations
-- ...................................................................
dlswSdlcCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance for DLSw nodes that support SDLC."
MODULE
MANDATORY-GROUPS {
Chen, et. al. Standards Track [Page 80]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswSdlcGroup }
OBJECT dlswSdlcLsLocalMac
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswSdlcLsLocalSap
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswSdlcLsLocalIdBlock
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswSdlcLsLocalIdNum
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswSdlcLsRemoteMac
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswSdlcLsRemoteSap
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT dlswSdlcLsRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { dlswCompliances 5 }
-- -------------------------------------------------------------------
-- CONFORMANCE GROUPS
-- -------------------------------------------------------------------
-- ...................................................................
-- Node Conformance Group
-- ...................................................................
dlswNodeGroup OBJECT-GROUP
OBJECTS {
Chen, et. al. Standards Track [Page 81]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswNodeVersion,
dlswNodeVendorID,
dlswNodeVersionString,
dlswNodeStdPacingSupport,
dlswNodeStatus,
dlswNodeUpTime,
dlswNodeVirtualSegmentLFSize,
dlswNodeResourceMacExclusivity,
dlswTrapCntlTConnPartnerReject,
dlswTrapCntlTConnProtViolation,
dlswTrapCntlTConn,
dlswTrapCntlCircuit
}
STATUS current
DESCRIPTION
"Conformance group for DLSw node general information."
::= { dlswGroups 1 }
-- ...................................................................
dlswNodeNBGroup OBJECT-GROUP
OBJECTS {
dlswNodeResourceNBExclusivity
}
STATUS current
DESCRIPTION
"Conformance group for DLSw node general information
specifically for nodes that support NetBIOS."
::= { dlswGroups 2 }
-- ...................................................................
dlswTConnStatGroup OBJECT-GROUP
OBJECTS {
dlswTConnStatActiveConnections,
dlswTConnStatCloseIdles,
dlswTConnStatCloseBusys
}
STATUS current
DESCRIPTION
"Conformance group for statistics for transport
connections."
::= { dlswGroups 3 }
-- ...................................................................
dlswTConnConfigGroup OBJECT-GROUP
OBJECTS {
dlswTConnConfigTDomain,
dlswTConnConfigLocalTAddr,
dlswTConnConfigRemoteTAddr,
Chen, et. al. Standards Track [Page 82]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswTConnConfigLastModifyTime,
dlswTConnConfigEntryType,
dlswTConnConfigGroupDefinition,
dlswTConnConfigSetupType,
dlswTConnConfigSapList,
dlswTConnConfigAdvertiseMacNB,
dlswTConnConfigInitCirRecvWndw,
dlswTConnConfigOpens,
dlswTConnConfigRowStatus
}
STATUS current
DESCRIPTION
"Conformance group for the configuration of
transport connections."
::= { dlswGroups 4 }
-- ...................................................................
dlswTConnOperGroup OBJECT-GROUP
OBJECTS {
dlswTConnOperLocalTAddr,
dlswTConnOperEntryTime,
dlswTConnOperConnectTime,
dlswTConnOperState,
dlswTConnOperConfigIndex,
dlswTConnOperFlowCntlMode,
dlswTConnOperPartnerVersion,
dlswTConnOperPartnerVendorID,
dlswTConnOperPartnerVersionStr,
dlswTConnOperPartnerInitPacingWndw,
dlswTConnOperPartnerSapList,
dlswTConnOperPartnerMacExcl,
dlswTConnOperPartnerMacInfo,
dlswTConnOperDiscTime,
dlswTConnOperDiscReason,
dlswTConnOperDiscActiveCir,
dlswTConnOperInDataPkts,
dlswTConnOperOutDataPkts,
dlswTConnOperInDataOctets,
dlswTConnOperOutDataOctets,
dlswTConnOperInCntlPkts,
dlswTConnOperOutCntlPkts,
dlswTConnOperCURexSents,
dlswTConnOperICRexRcvds,
dlswTConnOperCURexRcvds,
dlswTConnOperICRexSents,
dlswTConnOperCirCreates,
dlswTConnOperCircuits
}
Chen, et. al. Standards Track [Page 83]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
STATUS current
DESCRIPTION
"Conformance group for operation information for
transport connections."
::= { dlswGroups 5 }
-- ...................................................................
dlswTConnNBGroup OBJECT-GROUP
OBJECTS {
dlswTConnOperPartnerNBExcl,
dlswTConnOperPartnerNBInfo,
dlswTConnOperNQexSents,
dlswTConnOperNRexRcvds,
dlswTConnOperNQexRcvds,
dlswTConnOperNRexSents
}
STATUS current
DESCRIPTION
"Conformance group for operation information for
transport connections, specifically for nodes
that support NetBIOS."
::= { dlswGroups 6 }
-- ...................................................................
dlswTConnTcpConfigGroup OBJECT-GROUP
OBJECTS {
dlswTConnTcpConfigKeepAliveInt,
dlswTConnTcpConfigTcpConnections,
dlswTConnTcpConfigMaxSegmentSize
}
STATUS current
DESCRIPTION
"Conformance group for configuration information for
transport connections using TCP."
::= { dlswGroups 7 }
-- ...................................................................
dlswTConnTcpOperGroup OBJECT-GROUP
OBJECTS {
dlswTConnTcpOperKeepAliveInt,
dlswTConnTcpOperPrefTcpConnections,
dlswTConnTcpOperTcpConnections
}
STATUS current
DESCRIPTION
"Conformance group for operation information for
transport connections using TCP."
::= { dlswGroups 8 }
Chen, et. al. Standards Track [Page 84]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
-- ...................................................................
dlswInterfaceGroup OBJECT-GROUP
OBJECTS {
dlswIfRowStatus,
dlswIfVirtualSegment,
dlswIfSapList
}
STATUS current
DESCRIPTION
"Conformance group for DLSw interfaces."
::= { dlswGroups 9 }
-- ...................................................................
dlswDirGroup OBJECT-GROUP
OBJECTS {
dlswDirMacEntries,
dlswDirMacCacheHits,
dlswDirMacCacheMisses,
dlswDirMacCacheNextIndex,
dlswDirMacMac,
dlswDirMacMask,
dlswDirMacEntryType,
dlswDirMacLocationType,
dlswDirMacLocation,
dlswDirMacStatus,
dlswDirMacLFSize,
dlswDirMacRowStatus
}
STATUS current
DESCRIPTION
"Conformance group for DLSw directory using MAC
addresses."
::= { dlswGroups 10 }
-- ...................................................................
dlswDirNBGroup OBJECT-GROUP
OBJECTS {
dlswDirNBEntries,
dlswDirNBCacheHits,
dlswDirNBCacheMisses,
dlswDirNBCacheNextIndex,
dlswDirNBName,
dlswDirNBNameType,
dlswDirNBEntryType,
dlswDirNBLocationType,
dlswDirNBLocation,
dlswDirNBStatus,
dlswDirNBLFSize,
Chen, et. al. Standards Track [Page 85]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswDirNBRowStatus
}
STATUS current
DESCRIPTION
"Conformance group for DLSw directory using NetBIOS
names."
::= { dlswGroups 11 }
-- ...................................................................
dlswDirLocateGroup OBJECT-GROUP
OBJECTS {
dlswDirLocateMacLocation
}
STATUS current
DESCRIPTION
"Conformance group for a node that can return directory
entry order for a given MAC address."
::= { dlswGroups 12 }
-- ...................................................................
dlswDirLocateNBGroup OBJECT-GROUP
OBJECTS {
dlswDirLocateNBLocation
}
STATUS current
DESCRIPTION
"Conformance group for a node that can return directory
entry order for a given NetBIOS name."
::= { dlswGroups 13 }
-- ...................................................................
dlswCircuitStatGroup OBJECT-GROUP
OBJECTS {
dlswCircuitStatActives,
dlswCircuitStatCreates
}
STATUS current
DESCRIPTION
"Conformance group for statistics about circuits."
::= { dlswGroups 14 }
-- ...................................................................
dlswCircuitGroup OBJECT-GROUP
OBJECTS {
dlswCircuitS1IfIndex,
dlswCircuitS1DlcType,
dlswCircuitS1RouteInfo,
dlswCircuitS1CircuitId,
Chen, et. al. Standards Track [Page 86]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
dlswCircuitS1Dlc,
dlswCircuitS2Location,
dlswCircuitS2TDomain,
dlswCircuitS2TAddress,
dlswCircuitS2CircuitId,
dlswCircuitOrigin,
dlswCircuitEntryTime,
dlswCircuitStateTime,
dlswCircuitState,
dlswCircuitPriority,
dlswCircuitFCSendGrantedUnits,
dlswCircuitFCSendCurrentWndw,
dlswCircuitFCRecvGrantedUnits,
dlswCircuitFCRecvCurrentWndw,
dlswCircuitFCLargestRecvGranted,
dlswCircuitFCLargestSendGranted,
dlswCircuitFCHalveWndwSents,
dlswCircuitFCResetOpSents,
dlswCircuitFCHalveWndwRcvds,
dlswCircuitFCResetOpRcvds,
dlswCircuitDiscReasonLocal,
dlswCircuitDiscReasonRemote,
dlswCircuitDiscReasonRemoteData
}
STATUS current
DESCRIPTION
"Conformance group for DLSw circuits."
::= { dlswGroups 15 }
-- ...................................................................
dlswSdlcGroup OBJECT-GROUP
OBJECTS {
dlswSdlcLsEntries,
dlswSdlcLsLocalMac,
dlswSdlcLsLocalSap,
dlswSdlcLsLocalIdBlock,
dlswSdlcLsLocalIdNum,
dlswSdlcLsRemoteMac,
dlswSdlcLsRemoteSap,
dlswSdlcLsRowStatus
}
STATUS current
DESCRIPTION
"Conformance group for DLSw SDLC support."
::= { dlswGroups 16 }
-- ...................................................................
dlswNotificationGroup NOTIFICATION-GROUP
Chen, et. al. Standards Track [Page 87]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
NOTIFICATIONS {
dlswTrapTConnPartnerReject,
dlswTrapTConnProtViolation,
dlswTrapTConnUp,
dlswTrapTConnDown,
dlswTrapCircuitUp,
dlswTrapCircuitDown
}
STATUS current
DESCRIPTION
"Conformance group for DLSw notifications."
::= { dlswGroups 17 }
END
Chen, et. al. Standards Track [Page 88]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
4.0 Acknowledgements
This memo has been produced by the AIW DLSw MIB RIGlet, which is also
recognized as the IETF DLSw MIB Working Group.
5.0 References
[1] Bartky, A., "Data Link Switching: Switch-to-Switch Protocol; AIW
DLSw RIG: DLSw Closed Pages, DLSw Standard Version 1", RFC 1795,
Sync Research Inc., April 1995.
[2] SNMPv2 Working Group, Case, J., McCloghrie, K., Rose, M., and S.
Waldbusser, "Structure of Management Information for version 2 of
the Simple Network Management Protocol (SNMPv2)", RFC 1902, January
1996.
[3] Rose, M., and K. McCloghrie, "Structure and Identification of
Management Information for TCP/IP-based Internets", STD 16, RFC
1155, Performance Systems International, Hughes LAN Systems, May
1990.
[4] McCloghrie, K., and M. Rose, "Management Information Base for
Network Management of TCP/IP-based internets - MIB-II", STD 17, RFC
1213, Hughes LAN Systems, Performance Systems International, March
1991.
[5] Case, J., Fedor, M., Schoffstall, M., and J. Davin, "Simple Network
Management Protocol", STD 15, RFC 1157, SNMP Research, Performance
Systems International, Performance Systems International, MIT
Laboratory for Computer Science, May 1990.
[6] SNMPv2 Working Group, Case, J., McCloghrie, K., Rose, M., and S.
Waldbusser, "Protocol Operations for version 2 of the Simple Network
Management Protocol (SNMPv2)", RFC 1905, January 1996.
[7] IEEE Project, "ANSI/IEEE P802.1D", 1993
[8] McCloghrie, K., and F. Kastenholz, "Evolution of the Interfaces
Group of MIB-II", RFC 1573, Hughes LAN Systems, FTP Software,
January 1994.
[9] Hilgeman, J., S. Nix, A. Bartky, and W. Clark, "Definitions of
Managed Objects for SNA Data Link Control (SDLC) using SMIv2", RFC
1747, Apertus Technologies, Inc., Metaplex, Inc., Sync Research,
Inc., cisco Systems, Inc., January 1995
Chen, et. al. Standards Track [Page 89]
^L
RFC 2024 DLSw MIB using SMIv2 October 1996
6.0 Security Considerations
Security issues are not discussed in this memo.
7.0 Authors' Addresses
David D. Chen
IBM Networking Systems
P. O. Box 12195
Research Triangle Park, NC 27709
US
Phone: +1 919 254 6182
EMail: dchen@vnet.ibm.com
Peter W. Gayek
IBM Networking Systems
P. O. Box 12195
Research Triangle Park, NC 27709
US
Phone: +1 919 254 1808
EMail: gayek@vnet.ibm.com
Shannon Nix
Metaplex, Inc.
7025 Kit Creek Road
P. O. Box 14987
Research Triangle Park, NC 27709
US
Phone: +1 919 472 2388
EMail: snix@metaplex.com
Chen, et. al. Standards Track [Page 90]
^L
|