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
|
-- *****************************************************************
-- CISCO-VPDN-MGMT-MIB.my: VPDN Management MIB
--
-- July 1997, Johnny Chan
--
-- The following line marks this file as a single-source file which
-- will be kept in-sync among all single-source branches:
--
-- EDGE_SERVICES_SINGLESOURCE_FILE
--
-- Copyright (c) 1997-2006, 2009 by cisco Systems, Inc.
-- All rights reserved.
--
-- *****************************************************************
CISCO-VPDN-MGMT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
TimeTicks,
Gauge32,
Counter32,
Integer32,
IpAddress,
Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
TimeStamp,
DisplayString,
TruthValue
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InterfaceIndexOrZero
FROM IF-MIB
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB
ciscoExperiment
FROM CISCO-SMI;
ciscoVpdnMgmtMIB MODULE-IDENTITY
LAST-UPDATED "200906160000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-vpdn@cisco.com"
DESCRIPTION
"The MIB module for VPDN.
Overview of VPDN MIB
MIB description
This MIB is to support the Virtual Private Dialup Network (VPDN)
feature of Cisco IOS. VPDN handles the forwarding of PPP links
from an Internet Provider (ISP) to a Home Gateway.
The VPDN MIB provides the operational information on Cisco's
VPDN tunnelling implementation. The following entities are
managed:
1) Global VPDN information
2) VPDN tunnel information
3) VPDN tunnel's user information
4) Failure history per user
The following example configuration shows how the VPDN MIB
returns VPDN information, from either CISCO A - Network Access
Server (NAS) or CISCO B - Tunnel Server (TS). The User call is
projected by either domain name or Dialed Number Identification
Service (DNIS).
The terms NAS and TS are generic terms refering to the VPDN
systems.
The following table shows the corresponding technology-specific
terms.
Network Access Server Tunnel Server
------------------------------ -------------------------
L2F Network Access Server (NAS) Home Gateway (HGW)
L2TP L2TP Access Concentrator (LAC) L2TP Network Server (LNS)
PPTP PPTP Access Concentrator (PAC) PPTP Network Server (PNS)
(NAS) (TS)
User ===== Cisco A ===== IP Network ===== Cisco B ===== Server
| |
+========== VPDN ==========+
1) The VPDN global entry identifies the system wide VPDN
information.
2) The VPDN tunnel table identifies the active VPDN tunnels on
Cisco A and Cisco B. The table contains an entry for each
active tunnel on the system.
3) The VPDN tunnel user table identifies the active users for
each active tunnel on each system and provides relevant
information for each user.
4) The VPDN failure history table identifies the last failure
recorded per user and provides relevant information.
"
REVISION "200601200000Z"
DESCRIPTION
"Obsoleted the following deprecated L2F specific objects.
These set of objects have been replaced by the
corresponding multi-protocol objects since 1999-03-24.
Obsoleted Objects Existing replacements
================= =====================
cvpdnTunnelTotal cvpdnSystemTable
cvpdnSessionTotal cvpdnSystemTable
cvpdnDeniedUsersTotal cvpdnSystemTable
cvpdnTunnelTable cvpdnTunnelAttrTable
cvpdnTunnelSessionTable cvpdnSessionAttrTable
Deprecated the following objects and added corresponding
InetAddressType/InetAddress compliant counterparts:
Deprecated Objects Added Replacements
================== ==================
cvpdnTunnelAttrLocalIpAddress
cvpdnTunnelAttrLocalInetAddressType
cvpdnTunnelAttrLocalInetAddress
cvpdnTunnelAttrSourceIpAddress
cvpdnTunnelAttrSourceInetAddressType
cvpdnTunnelAttrSourceInetAddress
cvpdnTunnelAttrRemoteIpAddress
cvpdnTunnelAttrRemoteInetAddressType
cvpdnTunnelAttrRemoteInetAddress
cvpdnUnameToFailHistSourceIp
cvpdnUnameToFailHistSourceInetType
cvpdnUnameToFailHistSourceInetAddr
cvpdnUnameToFailHistDestIp
cvpdnUnameToFailHistDestInetType
cvpdnUnameToFailHistDestInetAddr
Added two new values, 'pwUp' and 'pwDown', for the
existing object cvpdnNotifSessionEvent to support
pseudowire status change event reporting.
"
REVISION "200406080000Z"
DESCRIPTION
"Deprecated the cvpdnBundleEndpointType object since it's
values did not align with the PPP protocol. This object was
replaced by cvpdnBundleEndpointClass.
"
REVISION "200404020000Z"
DESCRIPTION
"Added support for Multilink PPP VPDN information. Modified
the cvpdnSessionAttrTable to add objects that specify the
multilink PPP bundle to which a session belongs. Added
scalar objects to hold the total number of multilink PPP
bundles comprised of one, two, and more than two links.
Added the cvpdnBundleTable that describes the PPP multilink
bundle. Added the cvpdnChildBundleTable to expose the
containment relationship between the multilink PPP bundle
and the VPDN tunnel.
"
REVISION "200207080000Z"
DESCRIPTION
"Added support for VPDN Template information. The template
table reports the number of active sessions for each
template. This number is the sum of active sessions for
all VPDN groups associated with each template.
"
REVISION "200205170000Z"
DESCRIPTION
"Changed cvpdnSessionAttrVirtualCircuitID to an Unsigned32
object. Also, moved Unsigned32 import to SNMPv2-SMI.
"
REVISION "200204020000Z"
DESCRIPTION
"Added virtual circuit ID, packets dropped, and notification
objects for WAN/IP support.
"
REVISION "200001120000Z"
DESCRIPTION
"Added support for Point-to-Point Tunneling Protocol (PPTP).
Changed object descriptions to use generic terms.
"
REVISION "9903240000Z"
DESCRIPTION
"Added support for multiple tunnel protocols with these
tables
1) cvpdnSystemTable
2) cvpdnTunnelAttrTable
3) cvpdnTunnelSessionAttrTable
Deprecated objects and tables duplicated by the three new
tables
1) cvpdnTunnelTotal, cvpdnSessionTotal,
cvpdnDeniedUsersTotal
2) cvpdnTunnelTable
3) cvpdnTunnelSessionTable
"
REVISION "9707150000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoExperiment 24 }
TunnelType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The tunnel type. This is the tunnel protocol of a VPDN
tunnel."
SYNTAX INTEGER {
l2f(1),
l2tp(2),
pptp(3)
}
EndpointClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The endpoint discriminator class supplied by the remote peer in
a PPP Multilink bundle.
RFC 1990 defines the following classes:
none: Class 0 - Null Class. No endpoint discriminator
is being used. The endpoint discriminator should
contain a SnmpAdminString (SIZE (0)) value.
local: Class 1 - Locally Assigned Address. This class is
defined to permit a local assignment in the case
where use of one of the globally unique classes is
not possible. The endpoint discriminator should
contain a SnmpAdminString (SIZE(1..20)) value.
ipV4Address: Class 2 - Internet Protocol (IP) Address. An
address in this class contains an IP host address.
The endpoint discriminator should contain a
InetAddressIPv4 value.
macAddress: Class 3 - IEEE 802.1 Globally Assigned MAC
Address. An address in this class contains an
IEEE 802.1 MAC address in canonical (802.3)
format. The endpoint discriminator should contain
a MacAddress value.
magicNumber: Class 4 - PPP Magic-Number Block. This is not an
address but a block of 1 to 5 concatenated 32 bit
PPP Magic-Numbers. The endpoint discriminator
should contain an OCTET STRING (SIZE (4|8|12|16|
20)) value.
phone: Class 5 - Public Switched Network Directory
Number. An address in this class contains an
octet sequence as defined by I.331 (E.164)
representing an international telephone directory
number suitable for use to access the endpoint via
the public switched telephone network. The
endpoint discriminator should contain a
SnmpAdminString (SIZE(1..15)) value."
REFERENCE
"The PPP Multilink Protocol (MP), RFC 1990, Section 5.1.3."
SYNTAX INTEGER {
none(1),
local(2),
ipV4Address(3),
macAddress(4),
magicNumber(5),
phone(6)
}
ciscoVpdnMgmtMIBObjects OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIB 1 }
cvpdnSystemInfo OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIBObjects 1 }
cvpdnTunnelInfo OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIBObjects 2 }
cvpdnTunnelSessionInfo OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIBObjects 3 }
cvpdnUserToFailHistInfo OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIBObjects 4 }
cvpdnTemplateInfo OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIBObjects 5 }
cvpdnMultilinkInfo OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIBObjects 6 }
-- ******************************************************************
-- * System Wide VPDN Information
-- ******************************************************************
cvpdnTunnelTotal OBJECT-TYPE
SYNTAX Gauge32
UNITS "tunnels"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The total number of VPDN tunnels that are currently
active within this system."
::= { cvpdnSystemInfo 1 }
cvpdnSessionTotal OBJECT-TYPE
SYNTAX Gauge32
UNITS "users"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The total number of active users in all the active VPDN
tunnels within this system."
::= { cvpdnSystemInfo 2 }
cvpdnDeniedUsersTotal OBJECT-TYPE
SYNTAX Counter32
UNITS "attempts"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The total number of denied user attempts to all the
active VPDN tunnels within this system."
::= { cvpdnSystemInfo 3 }
-- VPDN System Table provides aggregated tunnel information for each
-- tunnel protocol.
-- The contents of this table supercedes the three objects
-- cvpdnTunnelTotal, cvpdnSessionTotal, and cvpdnDeniedUsersTotal
cvpdnSystemTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvpdnSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of information about the VPDN system for all tunnel
types."
::= { cvpdnSystemInfo 4 }
cvpdnSystemEntry OBJECT-TYPE
SYNTAX CvpdnSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing information about a
single type of VPDN tunnel."
INDEX { cvpdnSystemTunnelType }
::= { cvpdnSystemTable 1 }
CvpdnSystemEntry ::=
SEQUENCE {
cvpdnSystemTunnelType TunnelType,
cvpdnSystemTunnelTotal Gauge32,
cvpdnSystemSessionTotal Gauge32,
cvpdnSystemDeniedUsersTotal Counter32,
cvpdnSystemInitialConnReq Counter32,
cvpdnSystemSuccessConnReq Counter32,
cvpdnSystemFailedConnReq Counter32
}
cvpdnSystemTunnelType OBJECT-TYPE
SYNTAX TunnelType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tunnel type. This is the tunnel protocol."
::= { cvpdnSystemEntry 1 }
cvpdnSystemTunnelTotal OBJECT-TYPE
SYNTAX Gauge32
UNITS "tunnels"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of VPDN tunnels that are currently active
of this tunnel type."
::= { cvpdnSystemEntry 2 }
cvpdnSystemSessionTotal OBJECT-TYPE
SYNTAX Gauge32
UNITS "sessions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of active sessions in all the active VPDN
tunnels of this tunnel type."
::= { cvpdnSystemEntry 3 }
cvpdnSystemDeniedUsersTotal OBJECT-TYPE
SYNTAX Counter32
UNITS "attempts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of denied user attempts to all the VPDN
tunnels of this tunnel type since last system
re-initialization."
::= { cvpdnSystemEntry 4 }
cvpdnSystemInitialConnReq OBJECT-TYPE
SYNTAX Counter32
UNITS "attempts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number tunnel connection attempts on all the VPDN
tunnels of this tunnel type since last system
re-initialization."
::= { cvpdnSystemEntry 5 }
cvpdnSystemSuccessConnReq OBJECT-TYPE
SYNTAX Counter32
UNITS "attempts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number tunnel Successful connection attempts in VPDN
tunnels of this tunnel type since last system
re-initialization."
::= { cvpdnSystemEntry 6 }
cvpdnSystemFailedConnReq OBJECT-TYPE
SYNTAX Counter32
UNITS "attempts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number tunnel Failed connection attempts in VPDN
tunnels of this tunnel type since last system
re-initialization."
::= { cvpdnSystemEntry 7 }
-- Objects indicating whether the specified notifications are enabled
-- or not.
cvpdnSystemNotifSessionEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether Layer 2 VPN session notifications are
enabled."
DEFVAL { false }
::= { cvpdnSystemInfo 5 }
cvpdnSystemClearSessions OBJECT-TYPE
SYNTAX INTEGER {
none(1),
all(2),
l2f(3),
l2tp(4),
pptp(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clears all the sessions in a given tunnel type. When
reading this object, the value of 'none' will always be
returned.
When setting these values, the following operations will be
performed:
none: no operation.
all: clears all the sessions in all the tunnels.
l2f: clears all the L2F sessions.
l2tp: clears all the L2TP sessions.
pptp: clears all the PPTP sessions."
::= { cvpdnSystemInfo 6 }
-- ******************************************************************
-- * VPDN Tunnel General Information Table
-- ******************************************************************
cvpdnTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvpdnTunnelEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Table of information about the active VPDN tunnels."
::= { cvpdnTunnelInfo 1 }
cvpdnTunnelEntry OBJECT-TYPE
SYNTAX CvpdnTunnelEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"An entry in the table, containing information about a
single active VPDN tunnel."
INDEX { cvpdnTunnelTunnelId }
::= { cvpdnTunnelTable 1 }
CvpdnTunnelEntry ::=
SEQUENCE {
cvpdnTunnelTunnelId Unsigned32,
cvpdnTunnelRemoteTunnelId Unsigned32,
cvpdnTunnelLocalName DisplayString,
cvpdnTunnelRemoteName DisplayString,
cvpdnTunnelRemoteEndpointName DisplayString,
cvpdnTunnelLocalInitConnection TruthValue,
cvpdnTunnelOrigCause INTEGER,
cvpdnTunnelState INTEGER,
cvpdnTunnelActiveSessions Gauge32,
cvpdnTunnelDeniedUsers Counter32,
cvpdnTunnelSoftshut TruthValue,
cvpdnTunnelNetworkServiceType INTEGER,
cvpdnTunnelLocalIpAddress IpAddress,
cvpdnTunnelSourceIpAddress IpAddress,
cvpdnTunnelRemoteIpAddress IpAddress
}
cvpdnTunnelTunnelId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The Tunnel ID of an active VPDN tunnel. If it is the
instigator of the tunnel, the ID is the HGW/LNS tunnel
ID, otherwise it is the NAS/LAC tunnel ID."
::= { cvpdnTunnelEntry 1 }
cvpdnTunnelRemoteTunnelId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The remote Tunnel ID of an active VPDN tunnel. If it
is the instigator of the tunnel, the ID is the NAS/LAC
tunnel ID, otherwise it is the HGW/LNS tunnel ID."
::= { cvpdnTunnelEntry 2 }
cvpdnTunnelLocalName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The local name of an active VPDN tunnel. It will be
the NAS/LAC name of the tunnel if the router serves as
the NAS/LAC, or the HGW/LNS name of the tunnel if the
system serves as the home gateway. Typically, the
local name is the configured host name of the router."
::= { cvpdnTunnelEntry 3 }
cvpdnTunnelRemoteName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The remote name of an active VPDN tunnel. It will be
the home gateway name of the tunnel if the system is a
NAS/LAC, or the NAS/LAC name of the tunnel if the
system serves as the home gateway."
::= { cvpdnTunnelEntry 4 }
cvpdnTunnelRemoteEndpointName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The remote end point name of an active VPDN tunnel.
This name is either the domain name or the DNIS that
this tunnel is projected with."
::= { cvpdnTunnelEntry 5 }
cvpdnTunnelLocalInitConnection OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"This object indicates whether the tunnel was generated
locally or not."
::= { cvpdnTunnelEntry 6 }
cvpdnTunnelOrigCause OBJECT-TYPE
SYNTAX INTEGER {
domain(1),
dnis(2),
stack(3)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The cause which originated an active VPDN tunnel. The
tunnel can be projected via domain name, DNIS or a
stack group (SGBP)."
::= { cvpdnTunnelEntry 7 }
cvpdnTunnelState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
opening(2),
open(3),
closing(4)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The current state of an active VPDN tunnel. Each state
code is explained below:
unknown: The current state of the tunnel is
unknown.
opening: The tunnel has just been instigated and
is pending for a remote end reply to
complete the process.
open: The tunnel is active.
closing: The tunnel has just been shut down and
is pending for the remote end to reply
to complete the process."
::= { cvpdnTunnelEntry 8 }
cvpdnTunnelActiveSessions OBJECT-TYPE
SYNTAX Gauge32
UNITS "sessions"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The total number of active session currently in the
tunnel."
::= { cvpdnTunnelEntry 9 }
cvpdnTunnelDeniedUsers OBJECT-TYPE
SYNTAX Counter32
UNITS "calls"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"A count of the accumulated total of denied users for
the tunnel."
::= { cvpdnTunnelEntry 10 }
cvpdnTunnelSoftshut OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"A VPDN tunnel can be put into a soft shut state to
prevent any new user session to be added. This object
specifies whether this tunnel has been soft shut."
::= { cvpdnTunnelEntry 12 }
cvpdnTunnelNetworkServiceType OBJECT-TYPE
SYNTAX INTEGER {
ip(1)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The type of network service used in the active tunnel.
For now it is IP only."
::= { cvpdnTunnelEntry 13 }
cvpdnTunnelLocalIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The local IP address of the tunnel. This IP address is
that of the interface at the local end of the tunnel."
::= { cvpdnTunnelEntry 14 }
cvpdnTunnelSourceIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The source IP address of the tunnel. This IP address
is the user configurable IP address for Stack Group
Biding Protocol (SGBP) via the CLI command:
vpdn source-ip"
REFERENCE
"The Stack Group Biding Protocol (SGBP), United States
Patent 6073176"
::= { cvpdnTunnelEntry 15 }
cvpdnTunnelRemoteIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The remote IP address of the tunnel. This IP address
is that of the interface at the remote end of the
tunnel."
::= { cvpdnTunnelEntry 16 }
--
-- VPDN Tunnel Attribute Table provides tunnel level information
-- This table supercedes the VPDN Tunnel Table, cvpdnTunnelTable
cvpdnTunnelAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvpdnTunnelAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of information about the active VPDN tunnels. An
entry is added to the table when a new tunnel is initiated
and removed from the table when the tunnel is terminated."
::= { cvpdnTunnelInfo 2 }
cvpdnTunnelAttrEntry OBJECT-TYPE
SYNTAX CvpdnTunnelAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing information about a
single active VPDN tunnel."
INDEX { cvpdnSystemTunnelType,
cvpdnTunnelAttrTunnelId }
::= { cvpdnTunnelAttrTable 1 }
CvpdnTunnelAttrEntry ::=
SEQUENCE {
cvpdnTunnelAttrTunnelId Integer32,
cvpdnTunnelAttrRemoteTunnelId Integer32,
cvpdnTunnelAttrLocalName DisplayString,
cvpdnTunnelAttrRemoteName DisplayString,
cvpdnTunnelAttrRemoteEndpointName DisplayString,
cvpdnTunnelAttrLocalInitConnection TruthValue,
cvpdnTunnelAttrOrigCause INTEGER,
cvpdnTunnelAttrState INTEGER,
cvpdnTunnelAttrActiveSessions Gauge32,
cvpdnTunnelAttrDeniedUsers Counter32,
cvpdnTunnelAttrSoftshut TruthValue,
cvpdnTunnelAttrNetworkServiceType INTEGER,
cvpdnTunnelAttrLocalIpAddress IpAddress,
cvpdnTunnelAttrSourceIpAddress IpAddress,
cvpdnTunnelAttrRemoteIpAddress IpAddress,
cvpdnTunnelAttrLocalInetAddressType InetAddressType,
cvpdnTunnelAttrLocalInetAddress InetAddress,
cvpdnTunnelAttrSourceInetAddressType InetAddressType,
cvpdnTunnelAttrSourceInetAddress InetAddress,
cvpdnTunnelAttrRemoteInetAddressType InetAddressType,
cvpdnTunnelAttrRemoteInetAddress InetAddress
}
cvpdnTunnelAttrTunnelId OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Tunnel ID of an active VPDN tunnel. If this end is the
instigator of the tunnel, the ID is the TS tunnel ID,
otherwise it is the NAS tunnel ID.
Two distinct tunnels with the same tunnel ID may exist, but
with different tunnel types.
"
::= { cvpdnTunnelAttrEntry 1 }
cvpdnTunnelAttrRemoteTunnelId OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote Tunnel ID of an active VPDN tunnel. If this end
is the instigator of the tunnel, the ID is the NAS tunnel
ID, otherwise it is the TS tunnel ID."
::= { cvpdnTunnelAttrEntry 2 }
cvpdnTunnelAttrLocalName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local name of an active VPDN tunnel. It will be the
NAS name of the tunnel if the system serves as the NAS, or
the TS name of the tunnel if the system serves as the
tunnel server. Typically, the local name is the configured
host name of the system."
::= { cvpdnTunnelAttrEntry 3 }
cvpdnTunnelAttrRemoteName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote name of an active VPDN tunnel. It will be the
tunnel server name of the tunnel if the system is a NAS,
or the NAS name of the tunnel if the system serves as the
tunnel server."
::= { cvpdnTunnelAttrEntry 4 }
cvpdnTunnelAttrRemoteEndpointName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote end point name of an active VPDN tunnel. This
name is either the domain name or the DNIS that this tunnel
is projected with."
::= { cvpdnTunnelAttrEntry 5 }
cvpdnTunnelAttrLocalInitConnection OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the tunnel was originated
locally or not. If it's true, the tunnel was originated
locally."
::= { cvpdnTunnelAttrEntry 6 }
cvpdnTunnelAttrOrigCause OBJECT-TYPE
SYNTAX INTEGER {
domain(1),
dnis(2),
stack(3),
xconnect(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cause which originated an active VPDN tunnel. The
tunnel can be projected via domain name, DNIS, stack group,
or L2 Xconnect."
::= { cvpdnTunnelAttrEntry 7 }
cvpdnTunnelAttrState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
l2fOpening(2),
l2fOpenWait(3),
l2fOpen(4),
l2fClosing(5),
l2fCloseWait(6),
l2tpIdle(7),
l2tpWaitCtlReply(8),
l2tpEstablished(9),
l2tpShuttingDown(10),
l2tpNoSessionLeft(11),
pptpIdle(12),
pptpWaitConnect(13),
pptpWaitCtlRequest(14),
pptpWaitCtlReply(15),
pptpEstablished(16),
pptpWaitStopReply(17),
pptpTerminal(18)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of an active VPDN tunnel.
Tunnels of type l2f will have states with the 'l2f' prefix.
Tunnels of type l2tp will have states with the 'l2tp'
prefix.
Tunnels of type pptp will have states with the 'pptp'
prefix.
Each state code is explained below:
unknown: The current state of the tunnel is
unknown.
l2fOpening: The tunnel has just been initiated
and is pending for a remote end
reply to complete the process.
l2fOpenWait: This end received a tunnel open
request from the remote end and is
waiting for the tunnel to be
established.
l2fOpen: The tunnel is active.
l2fClosing: This end received a tunnel close
request.
l2fCloseWait: The tunnel has just been shut down
and is pending for the remote end
to reply to complete the process.
l2tpIdle: No tunnel is initiated yet.
l2tpWaitCtlReply: The tunnel has been initiated and
is pending for a remote end reply
to complete the process.
l2tpEstablished: The tunnel is active.
l2tpShuttingDown: The tunnel is in progress of
shutting down.
l2tpNoSessionLeft: There is no session left in the
tunnel.
pptpIdle: No tunnel is initiated yet.
pptpWaitConnect: The tunnel is waiting for a TCP
connection.
pptpWaitCtlRequest: The tunnel has been initiated and
is pending for a remote end
request.
pptpWaitCtlReply: The tunnel has been initiated and
is pending for a remote end reply.
pptpEstablished: The tunnel is active.
pptpWaitStopReply: The tunnel is being shut down and
is pending for a remote end reply.
pptpTerminal: The tunnel has been shut down."
::= { cvpdnTunnelAttrEntry 8 }
cvpdnTunnelAttrActiveSessions OBJECT-TYPE
SYNTAX Gauge32
UNITS "sessions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of active session currently in the
tunnel."
::= { cvpdnTunnelAttrEntry 9 }
cvpdnTunnelAttrDeniedUsers OBJECT-TYPE
SYNTAX Counter32
UNITS "calls"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the accumulated total of denied users for the
tunnel."
::= { cvpdnTunnelAttrEntry 10 }
cvpdnTunnelAttrSoftshut OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A VPDN tunnel can be put into a soft shut state to prevent
any new session to be added. This object specifies whether
this tunnel has been soft shut. If its true, it has been
soft shut."
::= { cvpdnTunnelAttrEntry 11 }
cvpdnTunnelAttrNetworkServiceType OBJECT-TYPE
SYNTAX INTEGER {
ip(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of network service used in the active tunnel."
::= { cvpdnTunnelAttrEntry 12 }
cvpdnTunnelAttrLocalIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The local IP address of the tunnel. This IP address is
that of the interface at the local end of the tunnel."
::= { cvpdnTunnelAttrEntry 13 }
cvpdnTunnelAttrSourceIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The source IP address of the tunnel. This IP address is
the user configurable IP address for Stack Group Biding
Protocol."
REFERENCE
"The Stack Group Biding Protocol (SGBP), United States
Patent 6073176"
::= { cvpdnTunnelAttrEntry 14 }
cvpdnTunnelAttrRemoteIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The remote IP address of the tunnel. This IP address is
that of the interface at the remote end of the tunnel."
::= { cvpdnTunnelAttrEntry 15 }
cvpdnTunnelAttrLocalInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of address contained in
cvpdnTunnelAttrLocalInetAddress"
::= { cvpdnTunnelAttrEntry 16 }
cvpdnTunnelAttrLocalInetAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local IP address of the tunnel. This IP address is
that of the interface at the local end of the tunnel.
The type of this address is determined by the value of
cvpdnTunnelAttrLocalInetAddressType."
::= { cvpdnTunnelAttrEntry 17 }
cvpdnTunnelAttrSourceInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of address contained in
cvpdnTunnelAttrSourceInetAddress"
::= { cvpdnTunnelAttrEntry 18 }
cvpdnTunnelAttrSourceInetAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source IP address of the tunnel. This IP address is
the user configurable IP address for Stack Group Biding
Protocol. The type of this address is determined by the
value of cvpdnTunnelAttrSourceInetAddressType."
REFERENCE
"The Stack Group Biding Protocol (SGBP), United States
Patent 6073176"
::= { cvpdnTunnelAttrEntry 19 }
cvpdnTunnelAttrRemoteInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of address contained in
cvpdnTunnelAttrRemoteInetAddress"
::= { cvpdnTunnelAttrEntry 20 }
cvpdnTunnelAttrRemoteInetAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote IP address of the tunnel. This IP address is
that of the interface at the remote end of the tunnel.
The type of this address is determined by the value of
cvpdnTunnelAttrRemoteInetAddressType."
::= { cvpdnTunnelAttrEntry 21 }
-- ******************************************************************
-- * VPDN Tunnel Session Information
-- ******************************************************************
cvpdnTunnelSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvpdnTunnelSessionEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Table of information about individual user sessions
within the active tunnels. Entry is added to the table
when new user session is initiated and be removed from
the table when the user session is terminated."
::= { cvpdnTunnelSessionInfo 1 }
cvpdnTunnelSessionEntry OBJECT-TYPE
SYNTAX CvpdnTunnelSessionEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"An entry in the table, containing information about a
single user session within the tunnel."
INDEX { cvpdnTunnelTunnelId,
cvpdnTunnelSessionId }
::= { cvpdnTunnelSessionTable 1 }
CvpdnTunnelSessionEntry ::=
SEQUENCE {
cvpdnTunnelSessionId Unsigned32,
cvpdnTunnelSessionUserName DisplayString,
cvpdnTunnelSessionState INTEGER,
cvpdnTunnelSessionCallDuration TimeTicks,
cvpdnTunnelSessionPacketsOut Counter32,
cvpdnTunnelSessionBytesOut Counter32,
cvpdnTunnelSessionPacketsIn Counter32,
cvpdnTunnelSessionBytesIn Counter32,
cvpdnTunnelSessionDeviceType INTEGER,
cvpdnTunnelSessionDeviceCallerId DisplayString,
cvpdnTunnelSessionDevicePhyId InterfaceIndexOrZero,
cvpdnTunnelSessionMultilink TruthValue,
cvpdnTunnelSessionModemSlotIndex Unsigned32,
cvpdnTunnelSessionModemPortIndex Unsigned32,
cvpdnTunnelSessionDS1SlotIndex Unsigned32,
cvpdnTunnelSessionDS1PortIndex Unsigned32,
cvpdnTunnelSessionDS1ChannelIndex Unsigned32,
cvpdnTunnelSessionModemCallStartTime TimeStamp,
cvpdnTunnelSessionModemCallStartIndex Unsigned32
}
cvpdnTunnelSessionId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The ID of an active VPDN tunnel user session."
::= { cvpdnTunnelSessionEntry 1 }
cvpdnTunnelSessionUserName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The name of the user of the user session."
::= { cvpdnTunnelSessionEntry 2 }
cvpdnTunnelSessionState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
opening(2),
open(3),
closing(4),
waitingForTunnel(5)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The current state of an active user session. Each state
code is explained below:
unknown: The current state of the tunnel's
session is unknown.
opening: The user session has just been
initiated through a tunnel and is
pending for the remote end reply
to complete the process.
open: The user session is active.
closing: The user session has just been
closed and is pending for the
remote end reply to complete the
process.
waitingForTunnel: The user session is in this state
when the tunnel which this session
is going through is still in
CLOSED state. It waits for the
tunnel to become OPEN before the
session is allow to be fully
established."
::= { cvpdnTunnelSessionEntry 3 }
cvpdnTunnelSessionCallDuration OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"This object specifies the call duration of the current
active user session in value of system uptime."
::= { cvpdnTunnelSessionEntry 4 }
cvpdnTunnelSessionPacketsOut OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The total number of output packets through this active
user session."
::= { cvpdnTunnelSessionEntry 5 }
cvpdnTunnelSessionBytesOut OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The total number of output bytes through this active
user session."
::= { cvpdnTunnelSessionEntry 6 }
cvpdnTunnelSessionPacketsIn OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The total number of input packets through this active
user session."
::= { cvpdnTunnelSessionEntry 7 }
cvpdnTunnelSessionBytesIn OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The total number of input bytes through this active
user session."
::= { cvpdnTunnelSessionEntry 8 }
cvpdnTunnelSessionDeviceType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
asyncInternalModem(2),
async(3),
bchan(4),
sync(5),
virtualAccess(6),
xdsl(7),
cable(8)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The type of physical devices that this user session
is attached to for the local end of the tunnel. The
meaning of each device type is explained below:
other: Any device that has not been
defined.
asyncInternalModem: Modem Pool device of an access
server.
async: A regular asynchronous serial
interface.
sync: A regular synchronous serial
interface.
bchan: An ISDN call.
xdsl: Future application with xDSL
devices.
cable: Future application with Cable
modem devices."
::= { cvpdnTunnelSessionEntry 9 }
cvpdnTunnelSessionDeviceCallerId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The incoming caller identification of the user. It is
the originating number that called into the device that
initiates the user session. This object can be empty
since not all dial device can provide caller ID
information."
::= { cvpdnTunnelSessionEntry 10 }
cvpdnTunnelSessionDevicePhyId OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The device ID of the physical interface for the user
session. The object is the the interface index which
points to the ifTable. For virtual interface that is
not in the ifTable, it will have zero value."
::= { cvpdnTunnelSessionEntry 11 }
cvpdnTunnelSessionMultilink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"This object indicates whether the session is part of a
multilink or not."
::= { cvpdnTunnelSessionEntry 12 }
cvpdnTunnelSessionModemSlotIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The Modem Pool database slot index if it is associated
with this user session. Only a session with device of
type asyncInternalModem will have a valid value for
this object."
::= { cvpdnTunnelSessionEntry 13 }
cvpdnTunnelSessionModemPortIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The Modem Pool database port index if it is associated
with this user session. Only a session with a device
of type asyncInternalModem will have a valid value for
this object."
::= { cvpdnTunnelSessionEntry 14 }
cvpdnTunnelSessionDS1SlotIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The DS1 database slot index if it is associated with
this user session. Only a session with a device of
type asyncInternalModem will have a valid value for
this object."
::= { cvpdnTunnelSessionEntry 15 }
cvpdnTunnelSessionDS1PortIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The DS1 database port index if it is associated with
this user session. Only a session with a device of
type asyncInternalModem will have a a valid value for
this object."
::= { cvpdnTunnelSessionEntry 16 }
cvpdnTunnelSessionDS1ChannelIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The DS1 database channel index if it is associated with
this user session. Only a session over a device of
type asyncInternalModem will have a valid value for
this object."
::= { cvpdnTunnelSessionEntry 17 }
cvpdnTunnelSessionModemCallStartTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The start time of the current modem call. Only a
session with a device of type asyncInternalModem will
have a valid value for this object."
::= { cvpdnTunnelSessionEntry 18 }
cvpdnTunnelSessionModemCallStartIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Arbitrary small integer to distinguish modem calls that
occurred at the same time tick. Only session over
device asyncInternalModem will have a valid value for
this object."
::= { cvpdnTunnelSessionEntry 19 }
--
-- VPDN Session Attribute Table provides session level information
-- This table supercedes the VPDN Tunnel Session Table,
-- cvpdnTunnelSessionTable
cvpdnSessionAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvpdnSessionAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of information about individual sessions within the
active tunnels. An entry is added to the table when a new
session is initiated and removed from the table when the
session is terminated."
::= { cvpdnTunnelSessionInfo 2 }
cvpdnSessionAttrEntry OBJECT-TYPE
SYNTAX CvpdnSessionAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing information about a
single session within the tunnel."
INDEX { cvpdnSystemTunnelType,
cvpdnTunnelAttrTunnelId,
cvpdnSessionAttrSessionId }
::= { cvpdnSessionAttrTable 1 }
CvpdnSessionAttrEntry ::=
SEQUENCE {
cvpdnSessionAttrSessionId Integer32,
cvpdnSessionAttrUserName DisplayString,
cvpdnSessionAttrState INTEGER,
cvpdnSessionAttrCallDuration TimeTicks,
cvpdnSessionAttrPacketsOut Counter32,
cvpdnSessionAttrBytesOut Counter32,
cvpdnSessionAttrPacketsIn Counter32,
cvpdnSessionAttrBytesIn Counter32,
cvpdnSessionAttrDeviceType INTEGER,
cvpdnSessionAttrDeviceCallerId DisplayString,
cvpdnSessionAttrDevicePhyId InterfaceIndexOrZero,
cvpdnSessionAttrMultilink TruthValue,
cvpdnSessionAttrModemSlotIndex Unsigned32,
cvpdnSessionAttrModemPortIndex Unsigned32,
cvpdnSessionAttrDS1SlotIndex Unsigned32,
cvpdnSessionAttrDS1PortIndex Unsigned32,
cvpdnSessionAttrDS1ChannelIndex Unsigned32,
cvpdnSessionAttrModemCallStartTime TimeStamp,
cvpdnSessionAttrModemCallStartIndex Unsigned32,
cvpdnSessionAttrVirtualCircuitID Unsigned32,
cvpdnSessionAttrSentPktsDropped Counter32,
cvpdnSessionAttrRecvPktsDropped Counter32,
cvpdnSessionAttrMultilinkBundle SnmpAdminString,
cvpdnSessionAttrMultilinkIfIndex InterfaceIndexOrZero
}
cvpdnSessionAttrSessionId OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of an active VPDN session."
::= { cvpdnSessionAttrEntry 1 }
cvpdnSessionAttrUserName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the user of the session."
::= { cvpdnSessionAttrEntry 2 }
cvpdnSessionAttrState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
l2fOpening(2),
l2fOpen(3),
l2fCloseWait(4),
l2fWaitingForTunnel(5),
l2tpIdle(6),
l2tpWaitingTunnel(7),
l2tpWaitReply(8),
l2tpWaitConnect(9),
l2tpEstablished(10),
l2tpShuttingDown(11),
pptpWaitVAccess(12),
pptpPacEstablished(13),
pptpWaitTunnel(14),
pptpWaitOCRP(15),
pptpPnsEstablished(16),
pptpWaitCallDisc(17),
pptpTerminal(18)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of a tunnel session.
L2F tunnel sessions will have states with the 'l2f' prefix.
L2TP tunnel sessions will have states with the 'l2tp'
prefix.
Each state code is explained below:
unknown: The current state of the tunnel's
session is unknown.
l2fOpening: The session has just been
initiated through a tunnel and is
pending for the remote end reply
to complete the process.
l2fOpen: The session is active.
l2fCloseWait: The session has just been closed
and is pending for the remote end
reply to complete the process.
l2fWaitingForTunnel: The session is in this state when
the tunnel which this session is
going through is still in CLOSED
state. It waits for the tunnel to
become OPEN before the session is
allowed to be fully established.
l2tpIdle: No session is initiated yet.
l2tpWaitingTunnel: The session is waiting for the
tunnel to be established.
l2tpWaitReply: The session has been initiated and
is pending for the remote end
reply to complete the process.
l2tpWaitConnect: This end has acknowledged a
connection request and is waiting
for the remote end to connect.
l2tpEstablished: The session is active.
l2tpShuttingDown: The session is in progress of
shutting down.
pptpWaitVAccess: The session is waiting for the
creation of a virtual access
interface.
pptpPacEstablished: The session is active.
pptpWaitTunnel: The session is waiting for the
tunnel to be established.
pptpWaitOCRP: The session has been initiated and
is pending for the remote end
reply to complete the process.
pptpPnsEstablished: The session is active.
pptpWaitCallDisc: Session shutdown is in progress."
::= { cvpdnSessionAttrEntry 3 }
cvpdnSessionAttrCallDuration OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the call duration of the current
active session."
::= { cvpdnSessionAttrEntry 4 }
cvpdnSessionAttrPacketsOut OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of output packets through this active
session."
::= { cvpdnSessionAttrEntry 5 }
cvpdnSessionAttrBytesOut OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of output bytes through this active
session."
::= { cvpdnSessionAttrEntry 6 }
cvpdnSessionAttrPacketsIn OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of input packets through this active
session."
::= { cvpdnSessionAttrEntry 7 }
cvpdnSessionAttrBytesIn OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of input bytes through this active
session."
::= { cvpdnSessionAttrEntry 8 }
cvpdnSessionAttrDeviceType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
asyncInternalModem(2),
async(3),
bchan(4),
sync(5),
virtualAccess(6),
xdsl(7),
cable(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of physical devices that this session is attached
to for the local end of the tunnel. The meaning of each
device type is explained below:
other: Any device that has not been
defined.
asyncInternalModem: Modem Pool device of an access
server.
async: A regular asynchronous serial
interface.
sync: A regular synchronous serial
interface.
bchan: An ISDN call.
xdsl: xDSL interface.
cable: cable modem interface."
::= { cvpdnSessionAttrEntry 9 }
cvpdnSessionAttrDeviceCallerId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The incoming caller identification of the user. It is the
originating number that called into the device that
initiates the session. This object can be empty since not
all dial devices can provide caller ID information."
::= { cvpdnSessionAttrEntry 10 }
cvpdnSessionAttrDevicePhyId OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device ID of the physical interface for the session.
The object is the the interface index which points to the
ifTable. For virtual interfaces that are not in the
ifTable, the value will be zero."
::= { cvpdnSessionAttrEntry 11 }
cvpdnSessionAttrMultilink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the session is part of a
multilink PPP bundle, even if there is only one link or
session in the bundle. If it is multilink PPP, the value
is true."
::= { cvpdnSessionAttrEntry 12 }
cvpdnSessionAttrModemSlotIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Modem Pool database slot index if it is associated with
this session. Only a session with device of type
'asyncInternalModem' will have a valid value for this
object; otherwise, it is not instantiated."
::= { cvpdnSessionAttrEntry 13 }
cvpdnSessionAttrModemPortIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Modem Pool database port index if it is associated with
this session. Only a session with a device of type
'asyncInternalModem' will have a valid value for this
object; otherwise, it is not instantiated."
::= { cvpdnSessionAttrEntry 14 }
cvpdnSessionAttrDS1SlotIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DS1 database slot index if it is associated with this
session. Only a session with a device of type
'asyncInternalModem' will have a valid value for this
object; otherwise it is not instantiated."
::= { cvpdnSessionAttrEntry 15 }
cvpdnSessionAttrDS1PortIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DS1 database port index if it is associated with this
session. Only a session with a device of type
'asyncInternalModem' will have a valid value for this
object; otherwise it is not instantiated."
::= { cvpdnSessionAttrEntry 16 }
cvpdnSessionAttrDS1ChannelIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DS1 database channel index if it is associated with
this session. Only a session over a device of type
'asyncInternalModem' will have a valid value for this
object; otherwise it is not instantiated."
::= { cvpdnSessionAttrEntry 17 }
cvpdnSessionAttrModemCallStartTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The start time of the current modem call. Only a session
with a device of type 'asyncInternalModem' will have a
valid value for this object; otherwise, it is not
instantiated."
::= { cvpdnSessionAttrEntry 18 }
cvpdnSessionAttrModemCallStartIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Arbitrary small integer to distinguish modem calls that
occurred at the same time tick. Only session over device
'asyncInternalModem' will have a valid value for this
object; otherwise, it is not instantiated."
::= { cvpdnSessionAttrEntry 19 }
cvpdnSessionAttrVirtualCircuitID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The virtual circuit ID of an active Layer 2 VPN session."
::= { cvpdnSessionAttrEntry 20 }
cvpdnSessionAttrSentPktsDropped OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of dropped packets that could not be sent
into this active session."
::= { cvpdnSessionAttrEntry 21 }
cvpdnSessionAttrRecvPktsDropped OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of dropped packets that were received from
this active session."
::= { cvpdnSessionAttrEntry 22 }
cvpdnSessionAttrMultilinkBundle OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the name of the multilink bundle to
which this session belongs. The value of this object is
only valid when the value of cvpdnSessionAttrMultilink is
'true'. If the value of cvpdnSessionAttrMultilink is
'false', then the value of this object will be the empty
string."
::= { cvpdnSessionAttrEntry 23 }
cvpdnSessionAttrMultilinkIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the ifIndex of the multilink bundle
to which this session belongs. The value of this object is
only valid when the value of cvpdnSessionAttrMultilink is
'true'. If the value of cvpdnSessionAttrMultilink is
'false', then the value of this object will be zero."
::= { cvpdnSessionAttrEntry 24 }
-- ******************************************************************
-- * VPDN User Name to user failure Information
-- ******************************************************************
--
-- The cvpdnUserToFailHistInfoTable is only populated for L2F tunnels
--
cvpdnUserToFailHistInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvpdnUserToFailHistInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of the record of failure objects which can be
referenced by an user name. Only a name that has a
valid item in the Cisco IOS VPDN failure history table
will yield a valid entry in this table. The table has
a maximum size of 50 entries. Only the newest 50
entries will be kept in the table."
::= { cvpdnUserToFailHistInfo 1 }
cvpdnUserToFailHistInfoEntry OBJECT-TYPE
SYNTAX CvpdnUserToFailHistInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing failure history
relevant to an user name."
INDEX { cvpdnUnameToFailHistUname,
cvpdnUnameToFailHistTunnelId }
::= { cvpdnUserToFailHistInfoTable 1 }
CvpdnUserToFailHistInfoEntry ::=
SEQUENCE {
cvpdnUnameToFailHistUname DisplayString,
cvpdnUnameToFailHistTunnelId Unsigned32,
cvpdnUnameToFailHistUserId Unsigned32,
cvpdnUnameToFailHistLocalInitConn TruthValue,
cvpdnUnameToFailHistLocalName DisplayString,
cvpdnUnameToFailHistRemoteName DisplayString,
cvpdnUnameToFailHistSourceIp IpAddress,
cvpdnUnameToFailHistDestIp IpAddress,
cvpdnUnameToFailHistCount Counter32,
cvpdnUnameToFailHistFailTime TimeStamp,
cvpdnUnameToFailHistFailType DisplayString,
cvpdnUnameToFailHistFailReason DisplayString,
cvpdnUnameToFailHistSourceInetType InetAddressType,
cvpdnUnameToFailHistSourceInetAddr InetAddress,
cvpdnUnameToFailHistDestInetType InetAddressType,
cvpdnUnameToFailHistDestInetAddr InetAddress
}
cvpdnUnameToFailHistUname OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The user name for this failure entry."
::= { cvpdnUserToFailHistInfoEntry 1 }
cvpdnUnameToFailHistTunnelId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Tunnel ID for this failure entry. If it is the
instigator of the tunnel, the ID is the TS tunnel ID,
otherwise it is the NAS tunnel ID."
::= { cvpdnUserToFailHistInfoEntry 2 }
cvpdnUnameToFailHistUserId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The user ID of this failure entry."
::= { cvpdnUserToFailHistInfoEntry 3 }
cvpdnUnameToFailHistLocalInitConn OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the tunnel in which the
failure occurred was generated locally or not."
::= { cvpdnUserToFailHistInfoEntry 4 }
cvpdnUnameToFailHistLocalName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local name of the VPDN tunnel in which the failure
occurred. It will be the NAS name of the tunnel if the
system serves as the NAS, or the TS name of the tunnel
if the system serves as the tunnel server. The local
name is the configured host name of the system. This
object can be empty if the failure occurred prior to
successful tunnel projection, thus no source name will
be available."
::= { cvpdnUserToFailHistInfoEntry 5 }
cvpdnUnameToFailHistRemoteName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote name of the VPDN tunnel in which the failure
occurred. It will be the tunnel server name of the
tunnel if the system is a NAS, or the NAS name of the
tunnel if the system serves as the tunnel server. This
object can be empty if the failure occurred prior to
successful tunnel projection, thus no source name will
be available."
::= { cvpdnUserToFailHistInfoEntry 6 }
cvpdnUnameToFailHistSourceIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The source IP address of the tunnel in which the
failure occurred. This IP address is that of the
interface at the instigator end of the tunnel."
::= { cvpdnUserToFailHistInfoEntry 7 }
cvpdnUnameToFailHistDestIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The destination IP address of the tunnel in which the
failure occurred. This IP address is that of the
interface at the receiver end of the tunnel."
::= { cvpdnUserToFailHistInfoEntry 8 }
cvpdnUnameToFailHistCount OBJECT-TYPE
SYNTAX Counter32
UNITS "failures"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is incremented when multiple failures has
been experienced by this user on this tunnel. Seeing a
delta of >1 is an indication that the current failure
record is the latest of a series of failures that has
been recorded."
::= { cvpdnUserToFailHistInfoEntry 9 }
cvpdnUnameToFailHistFailTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the time when the failure is
occurred."
::= { cvpdnUserToFailHistInfoEntry 10 }
cvpdnUnameToFailHistFailType OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of failure for the current failure record. It
comes in a form of a an ASCII string which describes
the type of failure."
::= { cvpdnUserToFailHistInfoEntry 11 }
cvpdnUnameToFailHistFailReason OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason of failure for the current failure record."
::= { cvpdnUserToFailHistInfoEntry 12 }
cvpdnUnameToFailHistSourceInetType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of address contained in
cvpdnUnameToFailHistSourceInetAddr."
::= { cvpdnUserToFailHistInfoEntry 13 }
cvpdnUnameToFailHistSourceInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source IP address of the tunnel in which the
failure occurred. This IP address is that of the
interface at the instigator end of the tunnel. The
instigator end is the peer which initiates the tunnel
estalishment. The type of this address is determined
by the value of cvpdnUnameToFailHistSourceInetType."
::= { cvpdnUserToFailHistInfoEntry 14 }
cvpdnUnameToFailHistDestInetType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of address contained in
cvpdnUnameToFailHistDestInetAddr."
::= { cvpdnUserToFailHistInfoEntry 15 }
cvpdnUnameToFailHistDestInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination IP address of the tunnel in which the
failure occurred. This IP address is that of the
interface at the receiver end of the tunnel. The type
of this address is determined by the value of
cvpdnUnameToFailHistDestInetType."
::= { cvpdnUserToFailHistInfoEntry 16 }
-- *********************************************************************
-- * Notifications
-- *********************************************************************
ciscoVpdnMgmtMIBNotifs OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIB 0 }
cvpdnNotifSessionID OBJECT-TYPE
SYNTAX Integer32 (0..65535)
--MAX-ACCESS accessible-for-notify
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the local session ID of the L2X
session for which this notification has been
generated."
::= { ciscoVpdnMgmtMIBNotifs 1 }
cvpdnNotifSessionEvent OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
pwUp(3),
pwDown(4)
}
--MAX-ACCESS accessible-for-notify
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the event that generated the L2X session
notification.
The events are represented as follows:
up: Session has come up.
down: Session has gone down.
pwUp: Pseudowire associated with this
session has come up.
pwDown: Pseudowire associated with this
session has gone down.
"
::= { ciscoVpdnMgmtMIBNotifs 2 }
cvpdnNotifSession NOTIFICATION-TYPE
OBJECTS {
cvpdnNotifSessionID,
cvpdnNotifSessionEvent,
cvpdnSessionAttrDevicePhyId,
cvpdnSessionAttrVirtualCircuitID
}
STATUS current
DESCRIPTION
"Conveys an event regarding the L2X session with the
indicated session ID and Xconnect VCID."
::= { ciscoVpdnMgmtMIBNotifs 3 }
-- ******************************************************************
-- * VPDN Template Information Table
-- ******************************************************************
cvpdnTemplateTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvpdnTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of information about the VPDN templates. The
VPDN template is a grouping mechanism that allows
configuration settings to be shared among multiple VPDN
groups. One such setting is a limit on the number of
active sessions across all VPDN groups associated with
the template. The template table allows customers to
monitor template-wide information such as tracking the
allocation of sessions across templates."
::= { cvpdnTemplateInfo 1 }
cvpdnTemplateEntry OBJECT-TYPE
SYNTAX CvpdnTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing information about a
single VPDN template."
INDEX { IMPLIED cvpdnTemplateName }
::= { cvpdnTemplateTable 1 }
CvpdnTemplateEntry ::=
SEQUENCE {
cvpdnTemplateName SnmpAdminString,
cvpdnTemplateActiveSessions Gauge32
}
cvpdnTemplateName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..255))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the VPDN template."
::= { cvpdnTemplateEntry 1 }
cvpdnTemplateActiveSessions OBJECT-TYPE
SYNTAX Gauge32
UNITS "sessions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of active session in all groups
associated with the template."
::= { cvpdnTemplateEntry 2 }
-- ******************************************************************
-- * VPDN Multilink Information Objects
-- ******************************************************************
cvpdnBundlesWithOneLink OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bundles comprised of a single link."
::= { cvpdnMultilinkInfo 1 }
cvpdnBundlesWithTwoLinks OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bundles comprised of two links."
::= { cvpdnMultilinkInfo 2 }
cvpdnBundlesWithMoreThanTwoLinks OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bundles comprised of more than two
links."
::= { cvpdnMultilinkInfo 3 }
cvpdnBundleTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvpdnBundleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table that describes the multilink PPP attributes of the
active VPDN sessions."
::= { cvpdnMultilinkInfo 4 }
cvpdnBundleEntry OBJECT-TYPE
SYNTAX CvpdnBundleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table represents an active multilink PPP
bundle that belongs to a VPDN tunnel."
INDEX { cvpdnBundleName }
::= { cvpdnBundleTable 1 }
CvpdnBundleEntry ::=
SEQUENCE {
cvpdnBundleName SnmpAdminString,
cvpdnBundleLinkCount Gauge32,
cvpdnBundleEndpointType INTEGER,
cvpdnBundleEndpoint OCTET STRING,
cvpdnBundlePeerIpAddrType InetAddressType,
cvpdnBundlePeerIpAddr InetAddress,
cvpdnBundleEndpointClass EndpointClass
}
cvpdnBundleName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the multilink PPP bundle associated with a VPDN
tunnel."
::= { cvpdnBundleEntry 1 }
cvpdnBundleLinkCount OBJECT-TYPE
SYNTAX Gauge32
UNITS "links"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of active links in a multilink PPP bundle
associated with a VPDN tunnel."
::= { cvpdnBundleEntry 2 }
cvpdnBundleEndpointType OBJECT-TYPE
SYNTAX INTEGER {
none(1),
hostname(2),
string(3),
macAddress(4),
ipV4Address(5),
ipV6Address(6),
phone(7),
magicNumber(8)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The multilink PPP bundle discriminator type associated with
a VPDN tunnel. The value of this object represents the type
of discriminator used in cvpdnBundleEndpoint.
none: No endpoint discriminator was supplied, the
default value is being used.
hostname: The router's hostname is being used as
discriminator.
string: User specified string is being used as
discriminator.
macAddress: A MAC address as defined by the MacAddress
textual convention is being used as
discriminator.
ipV4Address: An IP address as defined by the
InetAddressIPv4 textual convention is being
used as discriminator.
ipV6Address: An IP address as defined by the
InetAddressIPv6 textual convention is being
used as discriminator.
phone: The PSTN phone number is being used as
discriminator.
magicNumber: A magic number is being used as
discriminator."
::= { cvpdnBundleEntry 3 }
cvpdnBundleEndpoint OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the discriminator used in this bundle that is
associated with a VPDN tunnel."
::= { cvpdnBundleEntry 4 }
cvpdnBundlePeerIpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of address contained in
cvpdnBundlePeerIpAddr."
::= { cvpdnBundleEntry 5 }
cvpdnBundlePeerIpAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the multilink PPP peer in a VPDN tunnel."
::= { cvpdnBundleEntry 6 }
cvpdnBundleEndpointClass OBJECT-TYPE
SYNTAX EndpointClass
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The multilink PPP bundle discriminator class associated
with a VPDN tunnel. The value of this object represents the
type of discriminator used in cvpdnBundleEndpoint."
::= { cvpdnBundleEntry 7 }
cvpdnBundleLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the sysUpTime object when the contents of
cvpdnBundleTable last changed."
::= { cvpdnMultilinkInfo 5 }
cvpdnBundleChildTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvpdnBundleChildEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that exposes the containment relationship between a
multilink PPP bundle and a VPDN tunnel."
::= { cvpdnMultilinkInfo 6 }
cvpdnBundleChildEntry OBJECT-TYPE
SYNTAX CvpdnBundleChildEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table represents a session that belongs to
a VPDN tunnel and to a multilink PPP bundle."
INDEX { cvpdnBundleName,
cvpdnBundleChildTunnelType,
cvpdnBundleChildTunnelId,
cvpdnBundleChildSessionId }
::= { cvpdnBundleChildTable 1 }
CvpdnBundleChildEntry ::=
SEQUENCE {
cvpdnBundleChildTunnelType TunnelType,
cvpdnBundleChildTunnelId Unsigned32,
cvpdnBundleChildSessionId Unsigned32
}
cvpdnBundleChildTunnelType OBJECT-TYPE
SYNTAX TunnelType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tunnel type. This is the tunnel protocol of an active
VPDN session that is associated with a multilink PPP
bundle."
::= { cvpdnBundleChildEntry 1 }
cvpdnBundleChildTunnelId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Tunnel ID of an active VPDN session that is associated
with a multilink PPP bundle."
::= { cvpdnBundleChildEntry 2 }
cvpdnBundleChildSessionId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of an active VPDN session that is associated with a
multilink PPP bundle."
::= { cvpdnBundleChildEntry 3 }
-- *********************************************************************
-- * Conformance
-- *********************************************************************
ciscoVpdnMgmtMIBConformance OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIB 3 }
ciscoVpdnMgmtMIBCompliances OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIBConformance 1 }
ciscoVpdnMgmtMIBGroups OBJECT IDENTIFIER
::= { ciscoVpdnMgmtMIBConformance 2 }
-- *********************************************************************
-- * Compliance
-- *********************************************************************
ciscoVpdnMgmtMIBCompliance MODULE-COMPLIANCE
STATUS obsolete -- superceded by ciscoVpdnMgmtMIBComplianceRev1
DESCRIPTION
"The compliance statement for entities which implement
the Cisco VPDN Management MIB"
MODULE -- this module
MANDATORY-GROUPS {
cvpdnSystemInfoGroup,
cvpdnTunnelInfoGroup,
cvpdnTunnelSessionInfoGroup,
cvpdnUserToFailHistInfoGroup
}
::= { ciscoVpdnMgmtMIBCompliances 1 }
ciscoVpdnMgmtMIBComplianceRev1 MODULE-COMPLIANCE
STATUS obsolete -- superceded by
-- ciscoVpdnMgmtMIBComplianceRev2
DESCRIPTION
"The compliance statement for entities which implement
the Cisco VPDN Management MIB"
MODULE -- this module
MANDATORY-GROUPS {
cvpdnSystemInfoGroup,
cvpdnTunnelInfoGroup,
cvpdnTunnelSessionInfoGroup,
cvpdnUserToFailHistInfoGroup,
cvpdnSystemGroup,
cvpdnTunnelAttrGroup,
cvpdnSessionAttrGroup
}
::= { ciscoVpdnMgmtMIBCompliances 2 }
ciscoVpdnMgmtMIBComplianceRev2 MODULE-COMPLIANCE
STATUS deprecated -- superceded by
-- ciscoVpdnMgmtMIBComplianceRev3
DESCRIPTION
"The compliance statement for entities which implement
the Cisco VPDN Management MIB"
MODULE -- this module
MANDATORY-GROUPS {
cvpdnUserToFailHistInfoGroup,
cvpdnSystemGroup,
cvpdnTunnelAttrGroup,
cvpdnSessionAttrGroupRev1
}
::= { ciscoVpdnMgmtMIBCompliances 3 }
ciscoVpdnMgmtMIBComplianceRev3 MODULE-COMPLIANCE
STATUS deprecated -- superceded by
-- ciscoVpdnMgmtMIBComplianceRev4
DESCRIPTION
"The compliance statement for entities which implement
the Cisco VPDN Management MIB"
MODULE -- this module
MANDATORY-GROUPS {
cvpdnUserToFailHistInfoGroup,
cvpdnSystemGroup,
cvpdnTunnelAttrGroup,
cvpdnSessionAttrGroupRev1,
cvpdnTemplateGroup,
cvpdnNotifEnabledGroup,
cvpdnSessionNotifGroup,
cvpdnConfigGroup,
cvpdnMultilinkGroup
}
::= { ciscoVpdnMgmtMIBCompliances 4 }
ciscoVpdnMgmtMIBComplianceRev4 MODULE-COMPLIANCE
STATUS deprecated -- superceded by
-- ciscoVpdnMgmtMIBComplianceRev5
DESCRIPTION
"The compliance statement for entities which implement
the Cisco VPDN Management MIB"
MODULE -- this module
MANDATORY-GROUPS {
cvpdnUserToFailHistInfoGroup,
cvpdnSystemGroup,
cvpdnTunnelAttrGroup,
cvpdnSessionAttrGroupRev1,
cvpdnTemplateGroup,
cvpdnNotifEnabledGroup,
cvpdnSessionNotifGroup,
cvpdnConfigGroup,
cvpdnMultilinkGroupRev1
}
::= { ciscoVpdnMgmtMIBCompliances 5 }
ciscoVpdnMgmtMIBComplianceRev5 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Cisco VPDN Management MIB"
MODULE -- this module
MANDATORY-GROUPS {
cvpdnUserToFailHistInfoGroupRev1,
cvpdnSystemGroup,
cvpdnTunnelAttrGroupRev1,
cvpdnSessionAttrGroupRev1,
cvpdnTemplateGroup,
cvpdnNotifEnabledGroup,
cvpdnSessionNotifGroup,
cvpdnConfigGroup,
cvpdnMultilinkGroupRev1
}
::= { ciscoVpdnMgmtMIBCompliances 6 }
-- *********************************************************************
-- * Units of Conformance
-- *********************************************************************
cvpdnSystemInfoGroup OBJECT-GROUP
OBJECTS {
cvpdnTunnelTotal,
cvpdnSessionTotal,
cvpdnDeniedUsersTotal
}
STATUS obsolete
DESCRIPTION
"A collection of objects providing VPDN system status
information."
::= { ciscoVpdnMgmtMIBGroups 1 }
cvpdnTunnelInfoGroup OBJECT-GROUP
OBJECTS {
cvpdnTunnelRemoteTunnelId,
cvpdnTunnelLocalName,
cvpdnTunnelRemoteName,
cvpdnTunnelRemoteEndpointName,
cvpdnTunnelLocalInitConnection,
cvpdnTunnelOrigCause,
cvpdnTunnelState,
cvpdnTunnelActiveSessions,
cvpdnTunnelDeniedUsers,
cvpdnTunnelSoftshut,
cvpdnTunnelNetworkServiceType,
cvpdnTunnelLocalIpAddress,
cvpdnTunnelSourceIpAddress,
cvpdnTunnelRemoteIpAddress
}
STATUS obsolete
DESCRIPTION
"A collection of objects providing VPDN tunnel status
information."
::= { ciscoVpdnMgmtMIBGroups 2 }
cvpdnTunnelSessionInfoGroup OBJECT-GROUP
OBJECTS {
cvpdnTunnelSessionUserName,
cvpdnTunnelSessionState,
cvpdnTunnelSessionCallDuration,
cvpdnTunnelSessionPacketsOut,
cvpdnTunnelSessionBytesOut,
cvpdnTunnelSessionPacketsIn,
cvpdnTunnelSessionBytesIn,
cvpdnTunnelSessionDeviceType,
cvpdnTunnelSessionDeviceCallerId,
cvpdnTunnelSessionDevicePhyId,
cvpdnTunnelSessionMultilink,
cvpdnTunnelSessionModemSlotIndex,
cvpdnTunnelSessionModemPortIndex,
cvpdnTunnelSessionDS1SlotIndex,
cvpdnTunnelSessionDS1PortIndex,
cvpdnTunnelSessionDS1ChannelIndex,
cvpdnTunnelSessionModemCallStartTime,
cvpdnTunnelSessionModemCallStartIndex
}
STATUS obsolete
DESCRIPTION
"A collection of objects providing session information
of VPDN tunnel."
::= { ciscoVpdnMgmtMIBGroups 3 }
cvpdnUserToFailHistInfoGroup OBJECT-GROUP
OBJECTS {
cvpdnUnameToFailHistUserId,
cvpdnUnameToFailHistLocalInitConn,
cvpdnUnameToFailHistLocalName,
cvpdnUnameToFailHistRemoteName,
cvpdnUnameToFailHistSourceIp,
cvpdnUnameToFailHistDestIp,
cvpdnUnameToFailHistCount,
cvpdnUnameToFailHistFailTime,
cvpdnUnameToFailHistFailType,
cvpdnUnameToFailHistFailReason
}
STATUS deprecated -- superceded by cvpdnUserToFailHistInfoGroupRev1
DESCRIPTION
"A collection of objects providing user failure
information of VPDN system."
::= { ciscoVpdnMgmtMIBGroups 4 }
cvpdnSystemGroup OBJECT-GROUP
OBJECTS {
cvpdnSystemTunnelTotal,
cvpdnSystemSessionTotal,
cvpdnSystemDeniedUsersTotal,
cvpdnSystemInitialConnReq,
cvpdnSystemSuccessConnReq,
cvpdnSystemFailedConnReq
}
STATUS current
DESCRIPTION
"A collection of objects providing VPDN system status
information for multiple tunnel types."
::= { ciscoVpdnMgmtMIBGroups 5 }
cvpdnTunnelAttrGroup OBJECT-GROUP
OBJECTS {
cvpdnTunnelAttrRemoteTunnelId,
cvpdnTunnelAttrLocalName,
cvpdnTunnelAttrRemoteName,
cvpdnTunnelAttrRemoteEndpointName,
cvpdnTunnelAttrLocalInitConnection,
cvpdnTunnelAttrOrigCause,
cvpdnTunnelAttrState,
cvpdnTunnelAttrActiveSessions,
cvpdnTunnelAttrDeniedUsers,
cvpdnTunnelAttrSoftshut,
cvpdnTunnelAttrNetworkServiceType,
cvpdnTunnelAttrLocalIpAddress,
cvpdnTunnelAttrSourceIpAddress,
cvpdnTunnelAttrRemoteIpAddress
}
STATUS deprecated -- superceded by cvpdnTunnelAttrGroupRev1
DESCRIPTION
"A collection of objects providing VPDN tunnel attribute
information for multiple tunnel types."
::= { ciscoVpdnMgmtMIBGroups 6 }
cvpdnSessionAttrGroup OBJECT-GROUP
OBJECTS {
cvpdnSessionAttrUserName,
cvpdnSessionAttrState,
cvpdnSessionAttrCallDuration,
cvpdnSessionAttrPacketsOut,
cvpdnSessionAttrBytesOut,
cvpdnSessionAttrPacketsIn,
cvpdnSessionAttrBytesIn,
cvpdnSessionAttrDeviceType,
cvpdnSessionAttrDeviceCallerId,
cvpdnSessionAttrDevicePhyId,
cvpdnSessionAttrMultilink,
cvpdnSessionAttrModemSlotIndex,
cvpdnSessionAttrModemPortIndex,
cvpdnSessionAttrDS1SlotIndex,
cvpdnSessionAttrDS1PortIndex,
cvpdnSessionAttrDS1ChannelIndex,
cvpdnSessionAttrModemCallStartTime,
cvpdnSessionAttrModemCallStartIndex
}
STATUS deprecated -- superceded by cvpdnSessionAttrGroupRev1
DESCRIPTION
"A collection of objects providing session attributed
information for multiple tunnel types."
::= { ciscoVpdnMgmtMIBGroups 7 }
cvpdnSessionAttrGroupRev1 OBJECT-GROUP
OBJECTS {
cvpdnSessionAttrUserName,
cvpdnSessionAttrState,
cvpdnSessionAttrCallDuration,
cvpdnSessionAttrPacketsOut,
cvpdnSessionAttrBytesOut,
cvpdnSessionAttrPacketsIn,
cvpdnSessionAttrBytesIn,
cvpdnSessionAttrDeviceType,
cvpdnSessionAttrDeviceCallerId,
cvpdnSessionAttrDevicePhyId,
cvpdnSessionAttrMultilink,
cvpdnSessionAttrModemSlotIndex,
cvpdnSessionAttrModemPortIndex,
cvpdnSessionAttrDS1SlotIndex,
cvpdnSessionAttrDS1PortIndex,
cvpdnSessionAttrDS1ChannelIndex,
cvpdnSessionAttrModemCallStartTime,
cvpdnSessionAttrModemCallStartIndex,
cvpdnSessionAttrVirtualCircuitID,
cvpdnSessionAttrSentPktsDropped,
cvpdnSessionAttrRecvPktsDropped
}
STATUS current
DESCRIPTION
"A collection of objects providing session attributed
information for multiple tunnel types."
::= { ciscoVpdnMgmtMIBGroups 8 }
cvpdnNotifEnabledGroup OBJECT-GROUP
OBJECTS {
cvpdnSystemNotifSessionEnabled,
cvpdnNotifSessionID,
cvpdnNotifSessionEvent
}
STATUS current
DESCRIPTION
"A collection of objects indicating whether Layer 2 VPN
notifications are enabled."
::= { ciscoVpdnMgmtMIBGroups 9 }
cvpdnSessionNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS {
cvpdnNotifSession
}
STATUS current
DESCRIPTION
"A collection of objects providing basic Layer 2 VPN session
notifications."
::= { ciscoVpdnMgmtMIBGroups 10 }
cvpdnTemplateGroup OBJECT-GROUP
OBJECTS {
cvpdnTemplateActiveSessions
}
STATUS current
DESCRIPTION
"A collection of objects providing VPDN template
information."
::= { ciscoVpdnMgmtMIBGroups 11 }
cvpdnConfigGroup OBJECT-GROUP
OBJECTS {
cvpdnSystemClearSessions
}
STATUS current
DESCRIPTION
"A collection of objects providing VPDN system
configuration."
::= { ciscoVpdnMgmtMIBGroups 12 }
cvpdnMultilinkGroup OBJECT-GROUP
OBJECTS {
cvpdnSessionAttrMultilinkBundle,
cvpdnSessionAttrMultilinkIfIndex,
cvpdnBundlesWithOneLink,
cvpdnBundlesWithTwoLinks,
cvpdnBundlesWithMoreThanTwoLinks,
cvpdnBundleLinkCount,
cvpdnBundleEndpointType,
cvpdnBundleEndpoint,
cvpdnBundlePeerIpAddrType,
cvpdnBundlePeerIpAddr,
cvpdnBundleLastChanged,
cvpdnBundleChildSessionId
}
STATUS deprecated -- superceded by cvpdnMultilinkGroupRev1
DESCRIPTION
"A collection of objects providing information about PPP
multilink bundles associates with a VPDN tunnel."
::= { ciscoVpdnMgmtMIBGroups 13 }
cvpdnMultilinkGroupRev1 OBJECT-GROUP
OBJECTS {
cvpdnSessionAttrMultilinkBundle,
cvpdnSessionAttrMultilinkIfIndex,
cvpdnBundlesWithOneLink,
cvpdnBundlesWithTwoLinks,
cvpdnBundlesWithMoreThanTwoLinks,
cvpdnBundleLinkCount,
cvpdnBundleEndpoint,
cvpdnBundlePeerIpAddrType,
cvpdnBundlePeerIpAddr,
cvpdnBundleLastChanged,
cvpdnBundleChildSessionId,
cvpdnBundleEndpointClass
}
STATUS current
DESCRIPTION
"A collection of objects providing information about PPP
multilink bundles associates with a VPDN tunnel."
::= { ciscoVpdnMgmtMIBGroups 14 }
cvpdnUserToFailHistInfoGroupRev1 OBJECT-GROUP
OBJECTS {
cvpdnUnameToFailHistUserId,
cvpdnUnameToFailHistLocalInitConn,
cvpdnUnameToFailHistLocalName,
cvpdnUnameToFailHistRemoteName,
cvpdnUnameToFailHistCount,
cvpdnUnameToFailHistFailTime,
cvpdnUnameToFailHistFailType,
cvpdnUnameToFailHistFailReason,
cvpdnUnameToFailHistSourceInetType,
cvpdnUnameToFailHistSourceInetAddr,
cvpdnUnameToFailHistDestInetType,
cvpdnUnameToFailHistDestInetAddr
}
STATUS current
DESCRIPTION
"A collection of objects providing user failure
information of VPDN system."
::= { ciscoVpdnMgmtMIBGroups 15 }
cvpdnTunnelAttrGroupRev1 OBJECT-GROUP
OBJECTS {
cvpdnTunnelAttrRemoteTunnelId,
cvpdnTunnelAttrLocalName,
cvpdnTunnelAttrRemoteName,
cvpdnTunnelAttrRemoteEndpointName,
cvpdnTunnelAttrLocalInitConnection,
cvpdnTunnelAttrOrigCause,
cvpdnTunnelAttrState,
cvpdnTunnelAttrActiveSessions,
cvpdnTunnelAttrDeniedUsers,
cvpdnTunnelAttrSoftshut,
cvpdnTunnelAttrNetworkServiceType,
cvpdnTunnelAttrLocalInetAddressType,
cvpdnTunnelAttrLocalInetAddress,
cvpdnTunnelAttrSourceInetAddressType,
cvpdnTunnelAttrSourceInetAddress,
cvpdnTunnelAttrRemoteInetAddressType,
cvpdnTunnelAttrRemoteInetAddress
}
STATUS current
DESCRIPTION
"A collection of objects providing VPDN tunnel attribute
information for multiple tunnel types."
::= { ciscoVpdnMgmtMIBGroups 16 }
END
|