summaryrefslogtreecommitdiff
path: root/MIBS/junose/Juniper-L2TP-Dialout-MIB
blob: 96242d47de21f24ef91b45c9b963202fe0efdf50 (plain)
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

-- *****************************************************************************
-- Juniper-L2TP-Dialout-MIB
--
-- Juniper Networks Enterprise MIB
--   Layer 2 Tunneling Protocol (L2TP) Dialout MIB
--
-- Copyright 2002 Juniper Networks, Inc.  All Rights Reserved.
-- *****************************************************************************

Juniper-L2TP-Dialout-MIB  DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Counter32, Unsigned32,
    Gauge32
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION, DisplayString, RowStatus
        FROM SNMPv2-TC
    MODULE-COMPLIANCE, OBJECT-GROUP
        FROM SNMPv2-CONF
    juniMibs
        FROM Juniper-MIBs;

juniL2tpDialoutMIB  MODULE-IDENTITY
    LAST-UPDATED "200211142054Z"  -- 14-Nov-02 03:54 PM EST
    ORGANIZATION "Juniper Networks, Inc."
    CONTACT-INFO
        "       Juniper Networks, Inc.
        Postal: 10 Technology Park Drive
                Westford, MA  01886-3146
                USA
        Tel:    +1 978 589 5800
        Email:  mib@Juniper.net"
    DESCRIPTION
        "The Layer 2 Tunneling Protocol (L2TP) Dialout MIB for the Juniper
        Networks enterprise."
    -- Revision History
    REVISION    "200211142054Z"  -- 14-Nov-02 03:54 PM EST  - JUNOSe 5.0
    DESCRIPTION
        "Initial version of this MIB module."
    ::= { juniMibs 62 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Textual conventions
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
JuniL2tpDialoutDomainName  ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "63a"
    STATUS      current
    DESCRIPTION
        "The name of an Internet domain.  Represents textual information taken
        from the NVT ASCII graphics character set (codes 32 through 126)."
    REFERENCE
        "RFC 854: NVT ASCII character set."
    SYNTAX      OCTET STRING (SIZE(1..63))


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed object groups
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutMIBNotifications OBJECT IDENTIFIER ::= { juniL2tpDialoutMIB 0 }
juniL2tpDialoutMIBObjects       OBJECT IDENTIFIER ::= { juniL2tpDialoutMIB 1 }
juniL2tpDialoutMIBConformance   OBJECT IDENTIFIER ::= { juniL2tpDialoutMIB 2 }

-- Functional groups
juniL2tpDialoutGeneral          OBJECT IDENTIFIER
    ::= { juniL2tpDialoutMIBObjects 1 }
juniL2tpDialoutTarget           OBJECT IDENTIFIER
    ::= { juniL2tpDialoutMIBObjects 2 }
juniL2tpDialoutTriggerBuffer    OBJECT IDENTIFIER
    ::= { juniL2tpDialoutMIBObjects 3 }
juniL2tpDialoutSession          OBJECT IDENTIFIER
    ::= { juniL2tpDialoutMIBObjects 4 }
juniL2tpDialoutVRouter          OBJECT IDENTIFIER
    ::= { juniL2tpDialoutMIBObjects 5 }
juniL2tpDialoutSystem           OBJECT IDENTIFIER
    ::= { juniL2tpDialoutMIBObjects 6 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out chassis configuration
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutConnectingTimerValue OBJECT-TYPE
    SYNTAX      Integer32 (30..3600)
    UNITS       "seconds"
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The system-wide maximum connecting time in seconds."
    ::= { juniL2tpDialoutGeneral 1 }

juniL2tpDialoutDormantTimerValue OBJECT-TYPE
    SYNTAX      Integer32 (0..3600)
    UNITS       "seconds"
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The system-wide maximum dormant time in seconds."
    ::= { juniL2tpDialoutGeneral 2 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out target configuration
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutTargetConfigTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniL2tpDialoutTargetConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entries in this table represent dialout target routes.  An IP
        packet received which maps to a dialout route will initiate a dial-out
        operation."
    ::= { juniL2tpDialoutTarget 1 }

juniL2tpDialoutTargetConfigEntry OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutTargetConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A dialout target route by virtual router and target ID."
    INDEX     { juniL2tpDialoutTargetRouterIndex,
                juniL2tpDialoutTargetIpAddress,
                juniL2tpDialoutTargetIpAddressMask }
    ::= { juniL2tpDialoutTargetConfigTable 1 }

JuniL2tpDialoutTargetConfigEntry ::= SEQUENCE {
    juniL2tpDialoutTargetRouterIndex     Unsigned32,
    juniL2tpDialoutTargetIpAddress       IpAddress,
    juniL2tpDialoutTargetIpAddressMask   IpAddress,
    juniL2tpDialoutTargetDomainName      JuniL2tpDialoutDomainName,
    juniL2tpDialoutTargetProfileName     DisplayString,
    juniL2tpDialoutTargetRowStatus       RowStatus }

juniL2tpDialoutTargetRouterIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The router index of the virtual router where this target is located.
        The value of this object can be used to retrieve additional information
        in the router MIB."
    REFERENCE
        "Juniper-ROUTER-MIB"
    ::= { juniL2tpDialoutTargetConfigEntry 1 }

juniL2tpDialoutTargetIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The target IP address.  Applying the target IP address mask to
        the target IP address results in the target route."
    ::= { juniL2tpDialoutTargetConfigEntry 2 }

juniL2tpDialoutTargetIpAddressMask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The mask associated with the target IP address.  Applying this mask to
        the target IP address results in the target route."
    ::= { juniL2tpDialoutTargetConfigEntry 3 }

juniL2tpDialoutTargetDomainName OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutDomainName
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The domain name associated with this target route."
    ::= { juniL2tpDialoutTargetConfigEntry 4 }

juniL2tpDialoutTargetProfileName OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The profile name associated with this target route."
    ::= { juniL2tpDialoutTargetConfigEntry 5 }

juniL2tpDialoutTargetRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Controls creation/deletion of entries in this table.  Only the values
        'createAndGo' and 'destroy' may be SET.  All read-create objects
        in this table can be configured at creation time only."
    ::= { juniL2tpDialoutTargetConfigEntry 6 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out target status
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutTargetStatusTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniL2tpDialoutTargetStatusEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entries in this table represent dialout target routes."
    ::= { juniL2tpDialoutTarget 2 }

juniL2tpDialoutTargetStatusEntry OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutTargetStatusEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A dialout target route by virtual router and target ID."
    INDEX     { juniL2tpDialoutTargetStatusRouterIndex,
                juniL2tpDialoutTargetStatusIpAddress,
                juniL2tpDialoutTargetStatusIpAddressMask }
    ::= { juniL2tpDialoutTargetStatusTable 1 }

JuniL2tpDialoutTargetStatusEntry ::= SEQUENCE {
    juniL2tpDialoutTargetStatusRouterIndex   Unsigned32,
    juniL2tpDialoutTargetStatusIpAddress     IpAddress,
    juniL2tpDialoutTargetStatusIpAddressMask IpAddress,
    juniL2tpDialoutTargetStatus              INTEGER }

juniL2tpDialoutTargetStatusRouterIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The router index of the virtual router.  The value of this object can
        be used to retrieve additional information in the router MIB."
    REFERENCE
        "Juniper-ROUTER-MIB"
    ::= { juniL2tpDialoutTargetStatusEntry 1 }

juniL2tpDialoutTargetStatusIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The target IP address."
    ::= { juniL2tpDialoutTargetStatusEntry 2 }

juniL2tpDialoutTargetStatusIpAddressMask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The mask associated with the target IP address."
    ::= { juniL2tpDialoutTargetStatusEntry 3 }

juniL2tpDialoutTargetStatus OBJECT-TYPE
    SYNTAX      INTEGER {
                    down(0),
                    inhibited(1),
                    inService(2) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The target's operational state."
    ::= { juniL2tpDialoutTargetStatusEntry 4 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for target statistics.  These statistics have been aggregated
-- across all virtual routers.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutTargetSystemStatistics  OBJECT IDENTIFIER
     ::= { juniL2tpDialoutTarget 3 }

juniL2tpDialoutTargetsActive OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of active targets."
    ::= { juniL2tpDialoutTargetSystemStatistics 1 }

juniL2tpDialoutTargetsCreated OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets created."
    ::= { juniL2tpDialoutTargetSystemStatistics 2 }

juniL2tpDialoutTargetsRemoved OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets removed."
    ::= { juniL2tpDialoutTargetSystemStatistics 3 }

juniL2tpDialoutTargetsDown OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets in the down state."
    ::= { juniL2tpDialoutTargetSystemStatistics 4 }

juniL2tpDialoutTargetsInhibited OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets in the inhibited state."
    ::= { juniL2tpDialoutTargetSystemStatistics 5 }

juniL2tpDialoutTargetsInService OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets in the in-service state."
    ::= { juniL2tpDialoutTargetSystemStatistics 6 }

juniL2tpDialoutTargetTriggersDiscarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of triggers discarded."
    ::= { juniL2tpDialoutTargetSystemStatistics 7 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out per target statistics.  The session statistics
-- are aggregated across a single target.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutTargetStatisticsTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniL2tpDialoutTargetStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entries in this table represent dial-out target routes."
    ::= { juniL2tpDialoutTarget 4 }

juniL2tpDialoutTargetStatisticsEntry OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutTargetStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A dialout target route by virtual router and target ID."
    INDEX     { juniL2tpDialoutTargetStatisticsRouterIndex,
                juniL2tpDialoutTargetStatisticsIpAddress,
                juniL2tpDialoutTargetStatisticsIpAddressMask }
    ::= { juniL2tpDialoutTargetStatisticsTable 1 }

JuniL2tpDialoutTargetStatisticsEntry ::= SEQUENCE {
    juniL2tpDialoutTargetStatisticsRouterIndex               Unsigned32,
    juniL2tpDialoutTargetStatisticsIpAddress                 IpAddress,
    juniL2tpDialoutTargetStatisticsIpAddressMask             IpAddress,
    juniL2tpDialoutTargetStatisticsTargetsActive             Gauge32,
    juniL2tpDialoutTargetStatisticsTargetsCreated            Counter32,
    juniL2tpDialoutTargetStatisticsTargetsRemoved            Counter32,
    juniL2tpDialoutTargetStatisticsTargetsDown               Gauge32,
    juniL2tpDialoutTargetStatisticsTargetsInhibited          Gauge32,
    juniL2tpDialoutTargetStatisticsTargetsInService          Gauge32,
    juniL2tpDialoutTargetStatisticsSessionsActive            Gauge32,
    juniL2tpDialoutTargetStatisticsSessionsCreated           Counter32,
    juniL2tpDialoutTargetStatisticsSessionsRemoved           Counter32,
    juniL2tpDialoutTargetStatisticsSessionsReset             Counter32,
    juniL2tpDialoutTargetStatisticsTriggersReceived          Counter32,
    juniL2tpDialoutTargetStatisticsTriggersEnqueued          Gauge32,
    juniL2tpDialoutTargetStatisticsTriggersDiscarded         Counter32,
    juniL2tpDialoutTargetStatisticsTriggersForwarded         Counter32,
    juniL2tpDialoutTargetStatisticsTriggersMaxEnqueued       Gauge32,
    juniL2tpDialoutTargetStatisticsAuthenticationRequests    Counter32,
    juniL2tpDialoutTargetStatisticsAuthenticationNoResources Counter32,
    juniL2tpDialoutTargetStatisticsAuthenticationGrants      Counter32,
    juniL2tpDialoutTargetStatisticsAuthenticationDenies      Counter32,
    juniL2tpDialoutTargetStatisticsDialoutsRequested         Counter32,
    juniL2tpDialoutTargetStatisticsDialoutsRejected          Counter32,
    juniL2tpDialoutTargetStatisticsDialoutsEstablished       Counter32,
    juniL2tpDialoutTargetStatisticsDialoutsTimedout          Counter32,
    juniL2tpDialoutTargetStatisticsDialoutsTornDown          Counter32 }

juniL2tpDialoutTargetStatisticsRouterIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The router index of the virtual router.  The value of this object can
        be used to retrieve additional information in the router MIB."
    REFERENCE
        "Juniper-ROUTER-MIB"
    ::= { juniL2tpDialoutTargetStatisticsEntry 1 }

juniL2tpDialoutTargetStatisticsIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The target IP address."
    ::= { juniL2tpDialoutTargetStatisticsEntry 2 }

juniL2tpDialoutTargetStatisticsIpAddressMask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The mask associated with the target IP address."
    ::= { juniL2tpDialoutTargetStatisticsEntry 3 }

juniL2tpDialoutTargetStatisticsTargetsActive OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of active targets."
    ::= { juniL2tpDialoutTargetStatisticsEntry 4 }

juniL2tpDialoutTargetStatisticsTargetsCreated OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets created."
    ::= { juniL2tpDialoutTargetStatisticsEntry 5 }

juniL2tpDialoutTargetStatisticsTargetsRemoved OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets removed."
    ::= { juniL2tpDialoutTargetStatisticsEntry 6 }

juniL2tpDialoutTargetStatisticsTargetsDown OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets in the down state."
    ::= { juniL2tpDialoutTargetStatisticsEntry 7 }

juniL2tpDialoutTargetStatisticsTargetsInhibited OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets in the inhibited state."
    ::= { juniL2tpDialoutTargetStatisticsEntry 8 }

juniL2tpDialoutTargetStatisticsTargetsInService OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets in the in-service state."
    ::= { juniL2tpDialoutTargetStatisticsEntry 9 }

juniL2tpDialoutTargetStatisticsSessionsActive OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of active sessions."
    ::= { juniL2tpDialoutTargetStatisticsEntry 10 }

juniL2tpDialoutTargetStatisticsSessionsCreated OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions created."
    ::= { juniL2tpDialoutTargetStatisticsEntry 11 }

juniL2tpDialoutTargetStatisticsSessionsRemoved OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions removed."
    ::= { juniL2tpDialoutTargetStatisticsEntry 12 }

juniL2tpDialoutTargetStatisticsSessionsReset OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions reset."
    ::= { juniL2tpDialoutTargetStatisticsEntry 13 }

juniL2tpDialoutTargetStatisticsTriggersReceived OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers received."
    ::= { juniL2tpDialoutTargetStatisticsEntry 14 }

juniL2tpDialoutTargetStatisticsTriggersEnqueued OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers enqueued."
    ::= { juniL2tpDialoutTargetStatisticsEntry 15 }

juniL2tpDialoutTargetStatisticsTriggersDiscarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of triggers discarded."
    ::= { juniL2tpDialoutTargetStatisticsEntry 16 }

juniL2tpDialoutTargetStatisticsTriggersForwarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers forwarded."
    ::= { juniL2tpDialoutTargetStatisticsEntry 17 }

juniL2tpDialoutTargetStatisticsTriggersMaxEnqueued OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum number of session triggers enqueued."
    ::= { juniL2tpDialoutTargetStatisticsEntry 18 }

juniL2tpDialoutTargetStatisticsAuthenticationRequests OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication requests."
    ::= { juniL2tpDialoutTargetStatisticsEntry 19 }

juniL2tpDialoutTargetStatisticsAuthenticationNoResources OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of times resources were not available to send an
        authentication request."
    ::= { juniL2tpDialoutTargetStatisticsEntry 20 }

juniL2tpDialoutTargetStatisticsAuthenticationGrants OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication grants."
    ::= { juniL2tpDialoutTargetStatisticsEntry 21 }

juniL2tpDialoutTargetStatisticsAuthenticationDenies OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication denies."
    ::= { juniL2tpDialoutTargetStatisticsEntry 22 }

juniL2tpDialoutTargetStatisticsDialoutsRequested OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions requested."
    ::= { juniL2tpDialoutTargetStatisticsEntry 23 }

juniL2tpDialoutTargetStatisticsDialoutsRejected OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions rejected."
    ::= { juniL2tpDialoutTargetStatisticsEntry 24 }

juniL2tpDialoutTargetStatisticsDialoutsEstablished OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions established."
    ::= { juniL2tpDialoutTargetStatisticsEntry 25 }

juniL2tpDialoutTargetStatisticsDialoutsTimedout OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions timed-out."
    ::= { juniL2tpDialoutTargetStatisticsEntry 26 }

juniL2tpDialoutTargetStatisticsDialoutsTornDown OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions torn down."
    ::= { juniL2tpDialoutTargetStatisticsEntry 27 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out trigger buffer configuration
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutTriggerBufferTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniL2tpDialoutTriggerBufferEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entries in this table represent the maximum number of trigger
        frames buffered within the specified virtual router."
    ::= { juniL2tpDialoutTriggerBuffer 1 }

juniL2tpDialoutTriggerBufferEntry OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutTriggerBufferEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The maximum buffered trigger frames by virtual router ID."
    INDEX     { juniL2tpDialoutTriggerBufferRouterIndex }
    ::= { juniL2tpDialoutTriggerBufferTable 1 }

JuniL2tpDialoutTriggerBufferEntry ::= SEQUENCE {
    juniL2tpDialoutTriggerBufferRouterIndex  Unsigned32,
    juniL2tpDialoutTriggerBufferCount        Gauge32 }

juniL2tpDialoutTriggerBufferRouterIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The router index of the virtual router.  The value of this object can
        be used to retrieve additional information in the router MIB."
    ::= { juniL2tpDialoutTriggerBufferEntry 1 }

juniL2tpDialoutTriggerBufferCount OBJECT-TYPE
    SYNTAX      Gauge32  (0..50)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The maximum number of trigger frames buffered on this router."
    ::= { juniL2tpDialoutTriggerBufferEntry 2 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out session control
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutSessionConfigTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniL2tpDialoutSessionConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entries in this table represent dialout sessions within the
        specified virtual router."
    ::= { juniL2tpDialoutSession 1 }

juniL2tpDialoutSessionConfigEntry OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutSessionConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A dialout session by virtual router and session ID."
    INDEX     { juniL2tpDialoutSessionConfigHandle,
                juniL2tpDialoutSessionConfigTargetIpAddress,
                juniL2tpDialoutSessionConfigTargetIpAddressMask,
                juniL2tpDialoutSessionConfigRouterIndex }
    ::= { juniL2tpDialoutSessionConfigTable 1 }

JuniL2tpDialoutSessionConfigEntry ::= SEQUENCE {
    juniL2tpDialoutSessionConfigHandle                IpAddress,
    juniL2tpDialoutSessionConfigTargetIpAddress       IpAddress,
    juniL2tpDialoutSessionConfigTargetIpAddressMask   IpAddress,
    juniL2tpDialoutSessionConfigRouterIndex           Unsigned32,
    juniL2tpDialoutSessionConfigControl               INTEGER,
    juniL2tpDialoutSessionConfigRowStatus             RowStatus }

juniL2tpDialoutSessionConfigHandle OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The trigger IP address."
    ::= { juniL2tpDialoutSessionConfigEntry 1 }

juniL2tpDialoutSessionConfigTargetIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The target IP address."
    ::= { juniL2tpDialoutSessionConfigEntry 2 }

juniL2tpDialoutSessionConfigTargetIpAddressMask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The mask associated with the target IP address."
    ::= { juniL2tpDialoutSessionConfigEntry 3 }

juniL2tpDialoutSessionConfigRouterIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The router index of the virtual router.  The value of this object can
        be used to retrieve additional information in the router MIB."
    ::= { juniL2tpDialoutSessionConfigEntry 4 }

juniL2tpDialoutSessionConfigControl  OBJECT-TYPE
    SYNTAX      INTEGER {
                    operational(0),
                    reset(1) }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Reset the session.  Reading this object will always show the session as
        operational."
    ::= { juniL2tpDialoutSessionConfigEntry 5 }

juniL2tpDialoutSessionConfigRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Controls deletion of entries in this table.  Only the value 'destroy'
        may be SET."
    ::= { juniL2tpDialoutSessionConfigEntry 6 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out session status
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutSessionStatusTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniL2tpDialoutSessionStatusEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entries in this table represent dialout sessions."
    ::= { juniL2tpDialoutSession 2 }

juniL2tpDialoutSessionStatusEntry OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutSessionStatusEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A dialout session by virtual router and target ID."
    INDEX     { juniL2tpDialoutSessionStatusHandle,
                juniL2tpDialoutSessionStatusTargetIpAddress,
                juniL2tpDialoutSessionStatusTargetIpAddressMask,
                juniL2tpDialoutSessionStatusRouterIndex }
    ::= { juniL2tpDialoutSessionStatusTable 1 }

JuniL2tpDialoutSessionStatusEntry ::= SEQUENCE {
    juniL2tpDialoutSessionStatusHandle                IpAddress,
    juniL2tpDialoutSessionStatusTargetIpAddress       IpAddress,
    juniL2tpDialoutSessionStatusTargetIpAddressMask   IpAddress,
    juniL2tpDialoutSessionStatusRouterIndex           Unsigned32,
    juniL2tpDialoutSessionStatus                      INTEGER }

juniL2tpDialoutSessionStatusHandle OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The trigger IP address."
    ::= { juniL2tpDialoutSessionStatusEntry 1 }

juniL2tpDialoutSessionStatusTargetIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The target IP address."
    ::= { juniL2tpDialoutSessionStatusEntry 2 }

juniL2tpDialoutSessionStatusTargetIpAddressMask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The mask associated with the target IP address."
    ::= { juniL2tpDialoutSessionStatusEntry 3 }

juniL2tpDialoutSessionStatusRouterIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The router index of the virtual router.  The value of this object can
        be used to retrieve additional information in the router MIB."
    REFERENCE
        "Juniper-ROUTER-MIB"
    ::= { juniL2tpDialoutSessionStatusEntry 4 }

juniL2tpDialoutSessionStatus OBJECT-TYPE
    SYNTAX      INTEGER {
                    dormant(1),
                    pending(2),
                    authenticating(3),
                    connecting(4),
                    inService(5),
                    inhibited(6),
                    postInhibited(7),
                    failed(8) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The session's operational state."
    ::= { juniL2tpDialoutSessionStatusEntry 5 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for session statistics.  These statistics have been
-- aggregated across all virtual routers.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutSessionSystemStatistics  OBJECT IDENTIFIER
    ::= { juniL2tpDialoutSession 3 }

juniL2tpDialoutSessionsActive OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of active sessions."
    ::= { juniL2tpDialoutSessionSystemStatistics 1 }

juniL2tpDialoutSessionsCreated OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions created."
    ::= { juniL2tpDialoutSessionSystemStatistics 2 }

juniL2tpDialoutSessionsRemoved OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions removed."
    ::= { juniL2tpDialoutSessionSystemStatistics 3 }

juniL2tpDialoutSessionsReset OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions reset."
    ::= { juniL2tpDialoutSessionSystemStatistics 4 }

juniL2tpDialoutSessionTriggersReceived OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers received."
    ::= { juniL2tpDialoutSessionSystemStatistics 5 }

juniL2tpDialoutSessionTriggersEnqueued OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers enqueued."
    ::= { juniL2tpDialoutSessionSystemStatistics 6 }

juniL2tpDialoutSessionTriggersDiscarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers discarded."
    ::= { juniL2tpDialoutSessionSystemStatistics 7 }

juniL2tpDialoutSessionTriggersForwarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers forwarded."
    ::= { juniL2tpDialoutSessionSystemStatistics 8 }

juniL2tpDialoutSessionTriggersMaxEnqueued OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum number of session triggers enqueued."
    ::= { juniL2tpDialoutSessionSystemStatistics 9 }

juniL2tpDialoutSessionAuthenticationRequests OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication requests."
    ::= { juniL2tpDialoutSessionSystemStatistics 10 }

juniL2tpDialoutSessionAuthenticationNoResources OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of times resources were not available to send an
        authentication request."
    ::= { juniL2tpDialoutSessionSystemStatistics 11 }

juniL2tpDialoutSessionAuthenticationGrants OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication grants."
    ::= { juniL2tpDialoutSessionSystemStatistics 12 }

juniL2tpDialoutSessionAuthenticationDenies OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication denies."
    ::= { juniL2tpDialoutSessionSystemStatistics 13 }

juniL2tpDialoutSessionDialoutsRequested OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions requested."
    ::= { juniL2tpDialoutSessionSystemStatistics 14 }

juniL2tpDialoutSessionDialoutsRejected OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions rejected."
    ::= { juniL2tpDialoutSessionSystemStatistics 15 }

juniL2tpDialoutSessionDialoutsEstablished OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions established."
    ::= { juniL2tpDialoutSessionSystemStatistics 16 }

juniL2tpDialoutSessionDialoutsTimedout OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions timed-out."
    ::= { juniL2tpDialoutSessionSystemStatistics 17 }

juniL2tpDialoutSessionDialoutsTornDown OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions torn down."
    ::= { juniL2tpDialoutSessionSystemStatistics 18 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out per session statistics.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutSessionStatisticsTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniL2tpDialoutSessionStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entries in this table represent dial-out sessions."
    ::= { juniL2tpDialoutSession 4 }

juniL2tpDialoutSessionStatisticsEntry OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutSessionStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A dialout target route by virtual router and session ID."
    INDEX     { juniL2tpDialoutSessionStatisticsHandle,
                juniL2tpDialoutSessionStatisticsTargetIpAddress,
                juniL2tpDialoutSessionStatisticsTargetIpAddressMask,
                juniL2tpDialoutSessionStatisticsRouterIndex }
    ::= { juniL2tpDialoutSessionStatisticsTable 1 }

JuniL2tpDialoutSessionStatisticsEntry ::= SEQUENCE {
    juniL2tpDialoutSessionStatisticsHandle                       IpAddress,
    juniL2tpDialoutSessionStatisticsTargetIpAddress              IpAddress,
    juniL2tpDialoutSessionStatisticsTargetIpAddressMask          IpAddress,
    juniL2tpDialoutSessionStatisticsRouterIndex                  Unsigned32,
    juniL2tpDialoutSessionStatisticsSessionsActive               Gauge32,
    juniL2tpDialoutSessionStatisticsSessionsCreated              Counter32,
    juniL2tpDialoutSessionStatisticsSessionsRemoved              Counter32,
    juniL2tpDialoutSessionStatisticsSessionsReset                Counter32,
    juniL2tpDialoutSessionStatisticsTriggersReceived             Counter32,
    juniL2tpDialoutSessionStatisticsTriggersEnqueued             Gauge32,
    juniL2tpDialoutSessionStatisticsTriggersDiscarded            Counter32,
    juniL2tpDialoutSessionStatisticsTriggersForwarded            Counter32,
    juniL2tpDialoutSessionStatisticsTriggersMaxEnqueued          Gauge32,
    juniL2tpDialoutSessionStatisticsAuthenticationRequests       Counter32,
    juniL2tpDialoutSessionStatisticsAuthenticationNoResources    Counter32,
    juniL2tpDialoutSessionStatisticsAuthenticationGrants         Counter32,
    juniL2tpDialoutSessionStatisticsAuthenticationDenies         Counter32,
    juniL2tpDialoutSessionStatisticsDialoutsRequested            Counter32,
    juniL2tpDialoutSessionStatisticsDialoutsRejected             Counter32,
    juniL2tpDialoutSessionStatisticsDialoutsEstablished          Counter32,
    juniL2tpDialoutSessionStatisticsDialoutsTimedout             Counter32,
    juniL2tpDialoutSessionStatisticsDialoutsTornDown             Counter32 }

juniL2tpDialoutSessionStatisticsHandle OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The trigger IP address."
    ::= { juniL2tpDialoutSessionStatisticsEntry 1 }

juniL2tpDialoutSessionStatisticsTargetIpAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The target IP address."
    ::= { juniL2tpDialoutSessionStatisticsEntry 2 }

juniL2tpDialoutSessionStatisticsTargetIpAddressMask OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The mask associated with the target IP address."
    ::= { juniL2tpDialoutSessionStatisticsEntry 3 }

juniL2tpDialoutSessionStatisticsRouterIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The router index of the virtual router.  The value of this object can
        be used to retrieve additional information in the router MIB."
    REFERENCE
        "Juniper-ROUTER-MIB"
    ::= { juniL2tpDialoutSessionStatisticsEntry 4 }

juniL2tpDialoutSessionStatisticsSessionsActive OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of active sessions."
    ::= { juniL2tpDialoutSessionStatisticsEntry 5 }

juniL2tpDialoutSessionStatisticsSessionsCreated OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions created."
    ::= { juniL2tpDialoutSessionStatisticsEntry 6 }

juniL2tpDialoutSessionStatisticsSessionsRemoved OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions removed."
    ::= { juniL2tpDialoutSessionStatisticsEntry 7 }

juniL2tpDialoutSessionStatisticsSessionsReset OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions reset."
    ::= { juniL2tpDialoutSessionStatisticsEntry 8 }

juniL2tpDialoutSessionStatisticsTriggersReceived OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers received."
    ::= { juniL2tpDialoutSessionStatisticsEntry 9 }

juniL2tpDialoutSessionStatisticsTriggersEnqueued OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers enqueued."
    ::= { juniL2tpDialoutSessionStatisticsEntry 10 }

juniL2tpDialoutSessionStatisticsTriggersDiscarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers discarded."
    ::= { juniL2tpDialoutSessionStatisticsEntry 11 }

juniL2tpDialoutSessionStatisticsTriggersForwarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers forwarded."
    ::= { juniL2tpDialoutSessionStatisticsEntry 12 }

juniL2tpDialoutSessionStatisticsTriggersMaxEnqueued OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum number of session triggers enqueued."
    ::= { juniL2tpDialoutSessionStatisticsEntry 13 }

juniL2tpDialoutSessionStatisticsAuthenticationRequests OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication requests."
    ::= { juniL2tpDialoutSessionStatisticsEntry 14 }

juniL2tpDialoutSessionStatisticsAuthenticationNoResources OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of times resources were not available to send an
        authentication request."
    ::= { juniL2tpDialoutSessionStatisticsEntry 15 }

juniL2tpDialoutSessionStatisticsAuthenticationGrants OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication grants."
    ::= { juniL2tpDialoutSessionStatisticsEntry 16 }

juniL2tpDialoutSessionStatisticsAuthenticationDenies OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication denies."
    ::= { juniL2tpDialoutSessionStatisticsEntry 17 }

juniL2tpDialoutSessionStatisticsDialoutsRequested OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions requested."
    ::= { juniL2tpDialoutSessionStatisticsEntry 18 }

juniL2tpDialoutSessionStatisticsDialoutsRejected OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions rejected."
    ::= { juniL2tpDialoutSessionStatisticsEntry 19 }

juniL2tpDialoutSessionStatisticsDialoutsEstablished OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions established."
    ::= { juniL2tpDialoutSessionStatisticsEntry 20 }

juniL2tpDialoutSessionStatisticsDialoutsTimedout OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions timed-out."
    ::= { juniL2tpDialoutSessionStatisticsEntry 21 }

juniL2tpDialoutSessionStatisticsDialoutsTornDown OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions torn down."
    ::= { juniL2tpDialoutSessionStatisticsEntry 22 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out vrouter status
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutVRouterStatusTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniL2tpDialoutVRouterStatusEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entries in this table represent virtual routers."
    ::= { juniL2tpDialoutVRouter 1 }

juniL2tpDialoutVRouterStatusEntry OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutVRouterStatusEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A virtual router indexed by router ID."
    INDEX     { juniL2tpDialoutVRouterStatusRouterIndex }
    ::= { juniL2tpDialoutVRouterStatusTable 1 }

JuniL2tpDialoutVRouterStatusEntry ::= SEQUENCE {
    juniL2tpDialoutVRouterStatusRouterIndex  Unsigned32,
    juniL2tpDialoutVRouterStatus             INTEGER }

juniL2tpDialoutVRouterStatusRouterIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The router index of the virtual router.  The value of this object can
        be used to retrieve additional information in the router MIB."
    REFERENCE
        "Juniper-ROUTER-MIB"
    ::= { juniL2tpDialoutVRouterStatusEntry 1 }

juniL2tpDialoutVRouterStatus OBJECT-TYPE
    SYNTAX      INTEGER {
                    initPending(0),
                    initFailed(1),
                    down(2),
                    inService(3) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The virtual router's operational state."
    ::= { juniL2tpDialoutVRouterStatusEntry 2 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for virtual router statistics.  These statistics have been
-- aggregated across all virtual routers.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutVRouterSystemStatistics OBJECT IDENTIFIER
    ::= { juniL2tpDialoutVRouter 2 }

juniL2tpDialoutVRoutersActive OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of active virtual routers."
    ::= { juniL2tpDialoutVRouterSystemStatistics 1 }

juniL2tpDialoutVRoutersCreated OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of virtual routers created."
    ::= { juniL2tpDialoutVRouterSystemStatistics 2 }

juniL2tpDialoutVRoutersRemoved OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of virtual routers removed."
    ::= { juniL2tpDialoutVRouterSystemStatistics 3 }

juniL2tpDialoutVRoutersInitPending OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of virtual routers in the init-pending state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 4 }

juniL2tpDialoutVRoutersInitFailed OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of virtual routers in the init-failed state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 5 }

juniL2tpDialoutVRoutersDown OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of virtual routers in the down state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 6 }

juniL2tpDialoutVRoutersInService OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of virtual routers in the in-service."
    ::= { juniL2tpDialoutVRouterSystemStatistics 7 }

juniL2tpDialoutVRoutersTriggersMissed OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of triggers missed."
    ::= { juniL2tpDialoutVRouterSystemStatistics 8 }

juniL2tpDialoutVRoutersTriggerRouteUnknown OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of triggers received without a matching target route."
    ::= { juniL2tpDialoutVRouterSystemStatistics 9 }

juniL2tpDialoutVRoutersSessionsDormant OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the dormant state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 10 }

juniL2tpDialoutVRoutersSessionsPending OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the pending state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 11 }

juniL2tpDialoutVRoutersSessionsAuthenticating OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the authenticating state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 12 }

juniL2tpDialoutVRoutersSessionsConnecting OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the connecting state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 13 }

juniL2tpDialoutVRoutersSessionsInService OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the in-service state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 14 }

juniL2tpDialoutVRoutersSessionsInhibited OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the inhibited state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 15 }

juniL2tpDialoutVRoutersSessionsPostInhibited OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the post-inhibited state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 16 }

juniL2tpDialoutVRoutersSessionsFailed OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the failed state."
    ::= { juniL2tpDialoutVRouterSystemStatistics 17 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for per virtual router statistics.  The target and session
-- statistics are aggregated across a single virtual router.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutVRouterStatisticsTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniL2tpDialoutVRouterStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entries in this table represent virtual routers."
    ::= { juniL2tpDialoutVRouter 3 }

juniL2tpDialoutVRouterStatisticsEntry OBJECT-TYPE
    SYNTAX      JuniL2tpDialoutVRouterStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A virtual router indexed by router ID."
    INDEX     { juniL2tpDialoutVRouterStatisticsRouterIndex }
    ::= { juniL2tpDialoutVRouterStatisticsTable 1 }

JuniL2tpDialoutVRouterStatisticsEntry ::= SEQUENCE {
    juniL2tpDialoutVRouterStatisticsRouterIndex                  Unsigned32,
    juniL2tpDialoutVRouterStatisticsTriggersMissed               Counter32,
    juniL2tpDialoutVRouterStatisticsTriggerRouteUnknown          Counter32,
    juniL2tpDialoutVRouterStatisticsSessionStateDormant          Gauge32,
    juniL2tpDialoutVRouterStatisticsSessionStatePending          Gauge32,
    juniL2tpDialoutVRouterStatisticsSessionStateAuthenticating   Gauge32,
    juniL2tpDialoutVRouterStatisticsSessionStateConnecting       Gauge32,
    juniL2tpDialoutVRouterStatisticsSessionStateInService        Gauge32,
    juniL2tpDialoutVRouterStatisticsSessionStateInhibited        Gauge32,
    juniL2tpDialoutVRouterStatisticsSessionStatePostInhibited    Gauge32,
    juniL2tpDialoutVRouterStatisticsSessionStateFailed           Gauge32,
    juniL2tpDialoutVRouterStatisticsTargetsActive                Gauge32,
    juniL2tpDialoutVRouterStatisticsTargetsCreated               Counter32,
    juniL2tpDialoutVRouterStatisticsTargetsRemoved               Counter32,
    juniL2tpDialoutVRouterStatisticsTargetsDown                  Gauge32,
    juniL2tpDialoutVRouterStatisticsTargetsInhibited             Gauge32,
    juniL2tpDialoutVRouterStatisticsTargetsInService             Gauge32,
    juniL2tpDialoutVRouterStatisticsSessionsActive               Gauge32,
    juniL2tpDialoutVRouterStatisticsSessionsCreated              Counter32,
    juniL2tpDialoutVRouterStatisticsSessionsRemoved              Counter32,
    juniL2tpDialoutVRouterStatisticsSessionsReset                Counter32,
    juniL2tpDialoutVRouterStatisticsTriggersReceived             Counter32,
    juniL2tpDialoutVRouterStatisticsTriggersEnqueued             Gauge32,
    juniL2tpDialoutVRouterStatisticsTriggersDiscarded            Counter32,
    juniL2tpDialoutVRouterStatisticsTriggersForwarded            Counter32,
    juniL2tpDialoutVRouterStatisticsTriggersMaxEnqueued          Gauge32,
    juniL2tpDialoutVRouterStatisticsAuthenticationRequests       Counter32,
    juniL2tpDialoutVRouterStatisticsAuthenticationNoResources    Counter32,
    juniL2tpDialoutVRouterStatisticsAuthenticationGrants         Counter32,
    juniL2tpDialoutVRouterStatisticsAuthenticationDenies         Counter32,
    juniL2tpDialoutVRouterStatisticsDialoutsRequested            Counter32,
    juniL2tpDialoutVRouterStatisticsDialoutsRejected             Counter32,
    juniL2tpDialoutVRouterStatisticsDialoutsEstablished          Counter32,
    juniL2tpDialoutVRouterStatisticsDialoutsTimedout             Counter32,
    juniL2tpDialoutVRouterStatisticsDialoutsTornDown             Counter32 }

juniL2tpDialoutVRouterStatisticsRouterIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The router index of the virtual router.  The value of this object can
        be used to retrieve additional information in the router MIB."
    REFERENCE
        "Juniper-ROUTER-MIB"
    ::= { juniL2tpDialoutVRouterStatisticsEntry 1 }

juniL2tpDialoutVRouterStatisticsTriggersMissed OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of triggers missed."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 2 }

juniL2tpDialoutVRouterStatisticsTriggerRouteUnknown OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of triggers received without a matching target route."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 3 }

juniL2tpDialoutVRouterStatisticsSessionStateDormant OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the dormant state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 4 }

juniL2tpDialoutVRouterStatisticsSessionStatePending OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the pending state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 5 }

juniL2tpDialoutVRouterStatisticsSessionStateAuthenticating OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the authenticating state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 6 }

juniL2tpDialoutVRouterStatisticsSessionStateConnecting OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the connecting state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 7 }

juniL2tpDialoutVRouterStatisticsSessionStateInService OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the in-service state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 8 }

juniL2tpDialoutVRouterStatisticsSessionStateInhibited OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the inhibited state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 9 }

juniL2tpDialoutVRouterStatisticsSessionStatePostInhibited OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the post-inhibited state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 10 }

juniL2tpDialoutVRouterStatisticsSessionStateFailed OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions in the failed state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 11 }

juniL2tpDialoutVRouterStatisticsTargetsActive OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of active targets."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 12 }

juniL2tpDialoutVRouterStatisticsTargetsCreated OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets created."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 13 }

juniL2tpDialoutVRouterStatisticsTargetsRemoved OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets removed."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 14 }

juniL2tpDialoutVRouterStatisticsTargetsDown OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets in the down state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 15 }

juniL2tpDialoutVRouterStatisticsTargetsInhibited OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets in the inhibited state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 16 }

juniL2tpDialoutVRouterStatisticsTargetsInService OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of targets in the in-service state."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 17 }

juniL2tpDialoutVRouterStatisticsSessionsActive OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of active sessions."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 18 }

juniL2tpDialoutVRouterStatisticsSessionsCreated OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions created."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 19 }

juniL2tpDialoutVRouterStatisticsSessionsRemoved OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions removed."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 20 }

juniL2tpDialoutVRouterStatisticsSessionsReset OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions reset."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 21 }

juniL2tpDialoutVRouterStatisticsTriggersReceived OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers received."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 22 }

juniL2tpDialoutVRouterStatisticsTriggersEnqueued OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers enqueued."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 23 }

juniL2tpDialoutVRouterStatisticsTriggersDiscarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of triggers discarded."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 24 }

juniL2tpDialoutVRouterStatisticsTriggersForwarded OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session triggers forwarded."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 25 }

juniL2tpDialoutVRouterStatisticsTriggersMaxEnqueued OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum number of session triggers enqueued."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 26 }

juniL2tpDialoutVRouterStatisticsAuthenticationRequests OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication requests."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 27 }

juniL2tpDialoutVRouterStatisticsAuthenticationNoResources OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of times resources were not available to send an
        authentication request."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 28 }

juniL2tpDialoutVRouterStatisticsAuthenticationGrants OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication grants."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 29 }

juniL2tpDialoutVRouterStatisticsAuthenticationDenies OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of session authentication denies."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 30 }

juniL2tpDialoutVRouterStatisticsDialoutsRequested OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions requested."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 31 }

juniL2tpDialoutVRouterStatisticsDialoutsRejected OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions rejected."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 32 }

juniL2tpDialoutVRouterStatisticsDialoutsEstablished OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions established."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 33 }

juniL2tpDialoutVRouterStatisticsDialoutsTimedout OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions timed-out."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 34 }

juniL2tpDialoutVRouterStatisticsDialoutsTornDown OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dial-out sessions torn down."
    ::= { juniL2tpDialoutVRouterStatisticsEntry 35 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed object for dial-out chassis status
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutSystemStatus OBJECT-TYPE
    SYNTAX      INTEGER {
                    initIncomplete(0),
                    inService(1),
                    restricted(2) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The chassis' operational state"
    ::= { juniL2tpDialoutSystem 1 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for dial-out chassis statistics.  Where applicable, the
-- statistics have been aggregated across all virtual routers.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutSystemStatistics  OBJECT IDENTIFIER
    ::= { juniL2tpDialoutSystem 2 }

juniL2tpDialoutSystemCurrentSessions OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The current number of dial-out sessions in the system."
    ::= { juniL2tpDialoutSystemStatistics 1 }

juniL2tpDialoutSystemMaximumSessions OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum number of dial-out sessions in the system."
    ::= { juniL2tpDialoutSystemStatistics 2 }

juniL2tpDialoutSystemSessionsConnecting OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The current number of dial-out sessions in the process of connecting."
    ::= { juniL2tpDialoutSystemStatistics 3 }

juniL2tpDialoutSystemMaximumSessionsConnecting OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum number of dial-out sessions that can be in the process of
        connecting at any one time."
    ::= { juniL2tpDialoutSystemStatistics 4 }

juniL2tpDialoutSystemSessionsPending OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The current number of pending dial-out sessions."
    ::= { juniL2tpDialoutSystemStatistics 5 }

juniL2tpDialoutSystemMaximumSessionsPending OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum number of pending dial-out sessions."
    ::= { juniL2tpDialoutSystemStatistics 6 }

juniL2tpDialoutSystemTargetsInhibited OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The current number of inhibited targets."
    ::= { juniL2tpDialoutSystemStatistics 7 }

juniL2tpDialoutSystemMaximumTargetsInhibited OBJECT-TYPE
    SYNTAX      Gauge32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The maximum number of inhibited targets."
    ::= { juniL2tpDialoutSystemStatistics 8 }

juniL2tpDialoutSystemAuthGrantNoSession OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions destroyed before getting an authentication
        grant."
    ::= { juniL2tpDialoutSystemStatistics 9 }

juniL2tpDialoutSystemAuthDenyNoSession OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of sessions destroyed before getting an authentication
        deny."
    ::= { juniL2tpDialoutSystemStatistics 10 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniL2tpDialoutMIBCompliances
    OBJECT IDENTIFIER ::= { juniL2tpDialoutMIBConformance 1 }
juniL2tpDialoutMIBGroups
    OBJECT IDENTIFIER ::= { juniL2tpDialoutMIBConformance 2 }

--
-- compliance statements
--
juniL2tpDialoutCompliance MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The compliance statement for systems supporting L2TP dialout."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniL2tpDialoutTimersGroup,
            juniL2tpDialoutTargetConfigGroup,
            juniL2tpDialoutTriggerBuffersGroup,
            juniL2tpDialoutSessionControlGroup,
            juniL2tpDialoutStatusGroup,
            juniL2tpDialoutSystemStatisticsGroup,
            juniL2tpDialoutSystemWideVRouterStatisticsGroup,
            juniL2tpDialoutSystemWideTargetStatisticsGroup,
            juniL2tpDialoutSystemWideSessionStatisticsGroup,
            juniL2tpDialoutVRouterStatisticsGroup,
            juniL2tpDialoutTargetStatisticsGroup,
            juniL2tpDialoutSessionStatisticsGroup }
    ::= { juniL2tpDialoutMIBCompliances 1 }                        -- JUNOSe 5.0


--
-- units of conformance
--
juniL2tpDialoutTimersGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutConnectingTimerValue,
        juniL2tpDialoutDormantTimerValue }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out timer
        functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 1 }

juniL2tpDialoutTargetConfigGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutTargetDomainName,
        juniL2tpDialoutTargetProfileName,
        juniL2tpDialoutTargetRowStatus }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out target
        functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 2 }

juniL2tpDialoutTriggerBuffersGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutTriggerBufferCount }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out trigger
        buffer functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 3 }

juniL2tpDialoutSessionControlGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutSessionConfigControl,
        juniL2tpDialoutSessionConfigRowStatus }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out session
        functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 4 }

juniL2tpDialoutStatusGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutSystemStatus,
        juniL2tpDialoutVRouterStatus,
        juniL2tpDialoutTargetStatus,
        juniL2tpDialoutSessionStatus }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out status
        functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 5 }

juniL2tpDialoutSystemStatisticsGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutSystemCurrentSessions,
        juniL2tpDialoutSystemMaximumSessions,
        juniL2tpDialoutSystemSessionsConnecting,
        juniL2tpDialoutSystemMaximumSessionsConnecting,
        juniL2tpDialoutSystemSessionsPending,
        juniL2tpDialoutSystemMaximumSessionsPending,
        juniL2tpDialoutSystemTargetsInhibited,
        juniL2tpDialoutSystemMaximumTargetsInhibited,
        juniL2tpDialoutSystemAuthGrantNoSession,
        juniL2tpDialoutSystemAuthDenyNoSession }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out system
        statistics functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 6 }

juniL2tpDialoutSystemWideVRouterStatisticsGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutVRoutersActive,
        juniL2tpDialoutVRoutersCreated,
        juniL2tpDialoutVRoutersRemoved,
        juniL2tpDialoutVRoutersInitPending,
        juniL2tpDialoutVRoutersInitFailed,
        juniL2tpDialoutVRoutersDown,
        juniL2tpDialoutVRoutersInService,
        juniL2tpDialoutVRoutersTriggersMissed,
        juniL2tpDialoutVRoutersTriggerRouteUnknown,
        juniL2tpDialoutVRoutersSessionsDormant,
        juniL2tpDialoutVRoutersSessionsPending,
        juniL2tpDialoutVRoutersSessionsAuthenticating,
        juniL2tpDialoutVRoutersSessionsConnecting,
        juniL2tpDialoutVRoutersSessionsInService,
        juniL2tpDialoutVRoutersSessionsInhibited,
        juniL2tpDialoutVRoutersSessionsPostInhibited,
        juniL2tpDialoutVRoutersSessionsFailed }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out system
        wide virtual router statistics functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 7 }

juniL2tpDialoutSystemWideTargetStatisticsGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutTargetsActive,
        juniL2tpDialoutTargetsCreated,
        juniL2tpDialoutTargetsRemoved,
        juniL2tpDialoutTargetsDown,
        juniL2tpDialoutTargetsInhibited,
        juniL2tpDialoutTargetsInService,
        juniL2tpDialoutTargetTriggersDiscarded }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out system
        wide target statistics functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 8 }

juniL2tpDialoutSystemWideSessionStatisticsGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutSessionsActive,
        juniL2tpDialoutSessionsCreated,
        juniL2tpDialoutSessionsRemoved,
        juniL2tpDialoutSessionsReset,
        juniL2tpDialoutSessionTriggersReceived,
        juniL2tpDialoutSessionTriggersEnqueued,
        juniL2tpDialoutSessionTriggersDiscarded,
        juniL2tpDialoutSessionTriggersForwarded,
        juniL2tpDialoutSessionTriggersMaxEnqueued,
        juniL2tpDialoutSessionAuthenticationRequests,
        juniL2tpDialoutSessionAuthenticationNoResources,
        juniL2tpDialoutSessionAuthenticationGrants,
        juniL2tpDialoutSessionAuthenticationDenies,
        juniL2tpDialoutSessionDialoutsRequested,
        juniL2tpDialoutSessionDialoutsRejected,
        juniL2tpDialoutSessionDialoutsEstablished,
        juniL2tpDialoutSessionDialoutsTimedout,
        juniL2tpDialoutSessionDialoutsTornDown }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out system
        wide session statistics functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 9 }

juniL2tpDialoutVRouterStatisticsGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutVRouterStatisticsTriggersMissed,
        juniL2tpDialoutVRouterStatisticsTriggerRouteUnknown,
        juniL2tpDialoutVRouterStatisticsSessionStateDormant,
        juniL2tpDialoutVRouterStatisticsSessionStatePending,
        juniL2tpDialoutVRouterStatisticsSessionStateAuthenticating,
        juniL2tpDialoutVRouterStatisticsSessionStateConnecting,
        juniL2tpDialoutVRouterStatisticsSessionStateInService,
        juniL2tpDialoutVRouterStatisticsSessionStateInhibited,
        juniL2tpDialoutVRouterStatisticsSessionStatePostInhibited,
        juniL2tpDialoutVRouterStatisticsSessionStateFailed,
        juniL2tpDialoutVRouterStatisticsTargetsActive,
        juniL2tpDialoutVRouterStatisticsTargetsCreated,
        juniL2tpDialoutVRouterStatisticsTargetsRemoved,
        juniL2tpDialoutVRouterStatisticsTargetsDown,
        juniL2tpDialoutVRouterStatisticsTargetsInhibited,
        juniL2tpDialoutVRouterStatisticsTargetsInService,
        juniL2tpDialoutVRouterStatisticsSessionsActive,
        juniL2tpDialoutVRouterStatisticsSessionsCreated,
        juniL2tpDialoutVRouterStatisticsSessionsRemoved,
        juniL2tpDialoutVRouterStatisticsSessionsReset,
        juniL2tpDialoutVRouterStatisticsTriggersReceived,
        juniL2tpDialoutVRouterStatisticsTriggersEnqueued,
        juniL2tpDialoutVRouterStatisticsTriggersDiscarded,
        juniL2tpDialoutVRouterStatisticsTriggersForwarded,
        juniL2tpDialoutVRouterStatisticsTriggersMaxEnqueued,
        juniL2tpDialoutVRouterStatisticsAuthenticationRequests,
        juniL2tpDialoutVRouterStatisticsAuthenticationNoResources,
        juniL2tpDialoutVRouterStatisticsAuthenticationGrants,
        juniL2tpDialoutVRouterStatisticsAuthenticationDenies,
        juniL2tpDialoutVRouterStatisticsDialoutsRequested,
        juniL2tpDialoutVRouterStatisticsDialoutsRejected,
        juniL2tpDialoutVRouterStatisticsDialoutsEstablished,
        juniL2tpDialoutVRouterStatisticsDialoutsTimedout,
        juniL2tpDialoutVRouterStatisticsDialoutsTornDown }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out virtual
        router statistics functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 10 }

juniL2tpDialoutTargetStatisticsGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutTargetStatisticsTargetsActive,
        juniL2tpDialoutTargetStatisticsTargetsCreated,
        juniL2tpDialoutTargetStatisticsTargetsRemoved,
        juniL2tpDialoutTargetStatisticsTargetsDown,
        juniL2tpDialoutTargetStatisticsTargetsInhibited,
        juniL2tpDialoutTargetStatisticsTargetsInService,
        juniL2tpDialoutTargetStatisticsSessionsActive,
        juniL2tpDialoutTargetStatisticsSessionsCreated,
        juniL2tpDialoutTargetStatisticsSessionsRemoved,
        juniL2tpDialoutTargetStatisticsSessionsReset,
        juniL2tpDialoutTargetStatisticsTriggersReceived,
        juniL2tpDialoutTargetStatisticsTriggersEnqueued,
        juniL2tpDialoutTargetStatisticsTriggersDiscarded,
        juniL2tpDialoutTargetStatisticsTriggersForwarded,
        juniL2tpDialoutTargetStatisticsTriggersMaxEnqueued,
        juniL2tpDialoutTargetStatisticsAuthenticationRequests,
        juniL2tpDialoutTargetStatisticsAuthenticationNoResources,
        juniL2tpDialoutTargetStatisticsAuthenticationGrants,
        juniL2tpDialoutTargetStatisticsAuthenticationDenies,
        juniL2tpDialoutTargetStatisticsDialoutsRequested,
        juniL2tpDialoutTargetStatisticsDialoutsRejected,
        juniL2tpDialoutTargetStatisticsDialoutsEstablished,
        juniL2tpDialoutTargetStatisticsDialoutsTimedout,
        juniL2tpDialoutTargetStatisticsDialoutsTornDown }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out target
        statistics functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 11 }

juniL2tpDialoutSessionStatisticsGroup  OBJECT-GROUP
    OBJECTS {
        juniL2tpDialoutSessionStatisticsSessionsActive,
        juniL2tpDialoutSessionStatisticsSessionsCreated,
        juniL2tpDialoutSessionStatisticsSessionsRemoved,
        juniL2tpDialoutSessionStatisticsSessionsReset,
        juniL2tpDialoutSessionStatisticsTriggersReceived,
        juniL2tpDialoutSessionStatisticsTriggersEnqueued,
        juniL2tpDialoutSessionStatisticsTriggersDiscarded,
        juniL2tpDialoutSessionStatisticsTriggersForwarded,
        juniL2tpDialoutSessionStatisticsTriggersMaxEnqueued,
        juniL2tpDialoutSessionStatisticsAuthenticationRequests,
        juniL2tpDialoutSessionStatisticsAuthenticationNoResources,
        juniL2tpDialoutSessionStatisticsAuthenticationGrants,
        juniL2tpDialoutSessionStatisticsAuthenticationDenies,
        juniL2tpDialoutSessionStatisticsDialoutsRequested,
        juniL2tpDialoutSessionStatisticsDialoutsRejected,
        juniL2tpDialoutSessionStatisticsDialoutsEstablished,
        juniL2tpDialoutSessionStatisticsDialoutsTimedout,
        juniL2tpDialoutSessionStatisticsDialoutsTornDown }
    STATUS      current
    DESCRIPTION
        "The collection of objects providing management of L2TP dial-out session
        statistics functionality in a Juniper product."
    ::= { juniL2tpDialoutMIBGroups 12 }

END