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
|
-- *****************************************************************************
-- Juniper-PPP-PROFILE-MIB
--
-- Juniper Networks Enterprise MIB
-- PPP Profile MIB
--
-- Copyright (c) 2001, 2002 Unisphere Networks, Inc.
-- Copyright (c) 2002-2007 Juniper Networks, Inc.
-- Copyright (c) 2009 Juniper Networks, Inc.
-- All Rights Reserved.
-- *****************************************************************************
Juniper-PPP-PROFILE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
juniMibs
FROM Juniper-MIBs
JuniEnable, JuniSetMap, JuniName, JuniNibbleConfig
FROM Juniper-TC
JuniPppAuthentication
FROM Juniper-PPP-MIB;
juniPppProfileMIB MODULE-IDENTITY
LAST-UPDATED "200909180724Z" -- 18-Sep-09 03:24 AM EDT
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 Point-to-Point Protocol (PPP) Profile MIB for the Juniper Netowrks
enterprise. This MIB provides configuration parameters that extend the
tables found in the Juniper-PROFILE-MIB to support profiles for PPP
interfaces."
-- Revision History
REVISION "200909180724Z" -- 18-Sep-09 03:24 AM EDT - JUNOSe 11.1
DESCRIPTION
"Added new multiclass multilink objects. Added new traffic class
mapping for multiclasses."
REVISION "200908101423Z" -- 10-Aug-09 07:53 PM EST - JUNOSe 11.0
DESCRIPTION
"Added IPCP dns prompt and lockout option element in juniPppProfileTable."
REVISION "200707121215Z" -- 12-Jul-07 08:15 AM EDT - JUNOSe 7.3
DESCRIPTION
"Added new ignore magic number mismatch element in juniPppProfileEntry MIB.
Added new authentication elements to use JuniNibbleConfig."
REVISION "200510191626Z" -- 19-Oct-05 12:26 PM EDT - JUNOSe 7.2
DESCRIPTION
"Added new object for multilink."
REVISION "200311032110Z" -- 03-Nov-03 04:10 PM EST - JUNOSe 5.3
DESCRIPTION
"Added support for MLPPP fragmentation and reassembly."
REVISION "200309291858Z" -- 29-Sep-03 02:58 PM EDT - JUNOSe 5.2
DESCRIPTION
"Increased the maximum range of the PPP Profile LCP keep-alive time."
REVISION "200303112159Z" -- 11-Mar-03 04:59 PM EST - JUNOSe 5.1
DESCRIPTION
"Added juniPppProfileInitiateIp and juniPppProfileInitiateIpv6."
REVISION "200209162144Z" -- 16-Sep-02 05:44 PM EDT - JUNOSe 5.0
DESCRIPTION
"Replaced Unisphere names with Juniper names."
REVISION "200209032238Z" -- 03-Sep-02 06:38 PM EDT - JUNOSe 4.1
DESCRIPTION
"Added juniPppProfileAaaProfile."
REVISION "200201251400Z" -- 25-Jan-02 09:00 AM EST - JUNOSe 4.0
DESCRIPTION
"Added juniPppProfileAuthenticatorVirtualRouter."
REVISION "200201161758Z" -- 16-Jan-02 12:58 PM EST - JUNOSe 3.4
DESCRIPTION
"Added support for negotiation of the IPCP option netmask."
REVISION "200201081943Z" -- 08-Jan-02 02:43 PM EST - JUNOSe 3.3
DESCRIPTION
"Added support for dynamic multilink PPP (MLPPP) interfaces."
REVISION "200110021241Z" -- 02-Oct-01 08:41 AM EDT - JUNOSe 3.0
DESCRIPTION
"Initial version of this MIB module."
::= { juniMibs 45 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniPppProfileObjects OBJECT IDENTIFIER ::= { juniPppProfileMIB 1 }
juniPppProfile OBJECT IDENTIFIER ::= { juniPppProfileObjects 1 }
--
-- This MIB defines configuration profile structure for PPP interfaces.
-- The creation/deletion of profiles and mapping of profile names to profile
-- indices is coordinated in the Juniper-PROFILE-MIB.
--
--
-- The PPP Profile Table
--
juniPppProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniPppProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains profiles for configuring PPP interfaces.
Entries in this table are created/deleted as a side-effect of
corresponding operations to the juniProfileNameTable in the
Juniper-PROFILE-MIB."
::= { juniPppProfile 1 }
juniPppProfileEntry OBJECT-TYPE
SYNTAX JuniPppProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A profile describing configuration of a PPP interface."
INDEX { juniPppProfileId }
::= { juniPppProfileTable 1 }
JuniPppProfileEntry ::= SEQUENCE {
juniPppProfileId Unsigned32,
juniPppProfileSetMap JuniSetMap,
juniPppProfileLcpMagicNumber INTEGER,
juniPppProfileLcpKeepalive Integer32,
juniPppProfileLcpAuthentication JuniPppAuthentication,
juniPppProfileIpPeerDnsPriority JuniEnable,
juniPppProfileIpPeerWinsPriority JuniEnable,
juniPppProfileLcpInitialMRU Integer32,
juniPppProfilePacketLog JuniEnable,
juniPppProfileStateLog JuniEnable,
juniPppProfileChapMinChallengeLength Integer32,
juniPppProfileChapMaxChallengeLength Integer32,
juniPppProfilePassiveMode JuniEnable,
juniPppProfileMlppp JuniEnable,
juniPppProfileIpcpNetmask JuniEnable,
juniPppProfileAuthenticatorVirtualRouter JuniName,
juniPppProfileAaaProfile JuniName,
juniPppProfileInitiateIp JuniEnable,
juniPppProfileInitiateIpv6 JuniEnable,
juniPppProfileFragmentation JuniEnable,
juniPppProfileReassembly JuniEnable,
juniPppProfileMaxReceiveReconstructedUnit Integer32,
juniPppProfileFragmentSize Integer32,
juniPppProfileHashLinkSelection JuniEnable,
juniPppProfileLcpAuthentication2 JuniNibbleConfig,
juniPppProfileIgnoreMagicNumberMismatch JuniEnable,
juniPppProfileIpcpPromptDnsOption JuniEnable,
juniPppProfileIpcpLockout JuniEnable,
juniPppProfileMultilinkMulticlass JuniEnable,
juniPppProfileMultilinkMaxMultiClasses INTEGER }
juniPppProfileId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The integer identifier associated with this profile. A value for this
identifier is determined by locating or creating a profile name in the
Juniper-PROFILE-MIB.juniProfileNameTable."
::= { juniPppProfileEntry 1 }
juniPppProfileSetMap OBJECT-TYPE
SYNTAX JuniSetMap
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A bitmap representing which objects in this entry have been explicitly
configured. See the definition of the JuniSetMap TEXTUAL-CONVENTION for
details of use.
The INDEX object(s) and this object are excluded from representation
(i.e. their bits are never set).
When a SET request does not explicitly configure JuniSetMap, bits in
JuniSetMap are set as a side-effect of configuring other profile
attributes in the same entry.
If, however, a SET request explicitly configures JuniSetMap, the
explicitly configured value overrides 1) any previous bit settings, and
2) any simultaneous 'side-effect' settings that would otherwise occur.
Once set, bits can only be cleared by explicitly configuring
JuniSetMap."
::= { juniPppProfileEntry 2 }
juniPppProfileLcpMagicNumber OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true(2) then the local node will attempt to perform Magic Number
negotiation with the remote node. If false(1) then this negotiation is
not performed. In any event, the local node will comply with any magic
number negotiations attempted by the remote node, per the PPP
specification."
DEFVAL { false }
::= { juniPppProfileEntry 3 }
juniPppProfileLcpKeepalive OBJECT-TYPE
SYNTAX Integer32 (0|30..64800)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Keepalive interval in seconds. A value of zero disables keepalive.
Keepalive is performed using LCP Echo."
DEFVAL { 30 }
::= { juniPppProfileEntry 4 }
juniPppProfileLcpAuthentication OBJECT-TYPE
SYNTAX JuniPppAuthentication
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Specifies the type(s) of authentication, if any, to be negotiated with
the peer:
none No authentication is negotiated.
pap PAP negotiation only.
chap CHAP negotiation only.
papChap PAP negotiation is attempted first; if fails, attempt CHAP.
chapPap CHAP negotiation is attempted first; if fails, attempt PAP.
Setting this object to none will set the
juniPppProfileAuthenticatorVirtualRouter object to an empty string.
This object returns a none value on the get operation. New object
juniPppProfileLcpAuthentication2 will reflect the configured values.
Setting this object along with the juniPppProfileLcpAuthentication2
object will return an inconsistentValue error."
DEFVAL { none }
::= { juniPppProfileEntry 5 }
juniPppProfileIpPeerDnsPriority OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, allows peer's DNS address to prevail in the event of a
negotiation conflict; when disabled, the local PPP interface's DNS
address prevails."
DEFVAL { disable }
::= { juniPppProfileEntry 6 }
juniPppProfileIpPeerWinsPriority OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, allows peer's WINS address to prevail in the event of a
negotiation conflict; when disabled, the local PPP interface's WINS
address prevails."
DEFVAL { disable }
::= { juniPppProfileEntry 7 }
juniPppProfileLcpInitialMRU OBJECT-TYPE
SYNTAX Integer32 (1|64..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The initial Maximum Receive Unit (MRU) that the local PPP entity will
advertise to the remote entity.
If the value of this variable is 1 then the local PPP entity will
advertise an MRU value determined by its underlying media interface."
DEFVAL { 1 }
::= { juniPppProfileEntry 8 }
juniPppProfilePacketLog OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, allows packet logging on dynamic PPP interfaces."
DEFVAL { disable }
::= { juniPppProfileEntry 9 }
juniPppProfileStateLog OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, allows state machine logging on dynamic PPP interfaces."
DEFVAL { disable }
::= { juniPppProfileEntry 10 }
juniPppProfileChapMinChallengeLength OBJECT-TYPE
SYNTAX Integer32 (8..63)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimum value of the CHAP authenticator challenge length value. This
value is never allowed to be set to a value greater than
juniPppProfileChapMaxChallengeLength."
DEFVAL { 16 }
::= { juniPppProfileEntry 11 }
juniPppProfileChapMaxChallengeLength OBJECT-TYPE
SYNTAX Integer32 (8..63)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum value of the CHAP authenticator challenge length value. This
value is never allowed to be set to a value less than
juniPppLinkConfigChapMinChallengeLength."
DEFVAL { 32 }
::= { juniPppProfileEntry 12 }
juniPppProfilePassiveMode OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, LCP state machine is forced into passive mode on lower
layer UP message. It adds compatibility with slow and buggy clients."
DEFVAL { disable }
::= { juniPppProfileEntry 13 }
juniPppProfileMlppp OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables the creation of dynamic multi-link PPP interfaces."
DEFVAL { disable }
::= { juniPppProfileEntry 14 }
juniPppProfileIpcpNetmask OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables the negotiation of the IPCP option netmask (0x90) during IPCP
negotiation."
DEFVAL { disable }
::= { juniPppProfileEntry 15 }
juniPppProfileAuthenticatorVirtualRouter OBJECT-TYPE
SYNTAX JuniName
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the virtual router (Juniper-ROUTER-MIB.juniRouterName) to
be used for authentication on the PPP interface. Setting this object
statically binds the authenticating virtual router with the PPP
interface. If this object is not explicitly set or it is set to null
string, then this object is ignored and the virtual router used for
authentication is determined by other means. On a Set operation, if the
value of this object is not null and does not correspond to an existing
virtual router, then an inconsistentValue error is returned.
Setting this object to non null string returns inconsistentValue value
error if juniPppProfileConfigAuthentication object is none or not
configured."
::= { juniPppProfileEntry 16 }
juniPppProfileAaaProfile OBJECT-TYPE
SYNTAX JuniName
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the AAA profile to be used for authentication on the PPP
interface. Setting this object statically binds the aaa profile with
the PPP interface. If this object is not explicitly set or it is set to
null string, then this object is ignored. On a Set operation, if the
value of this object is not null and does not correspond to an existing
AAA profile, then an inconsistentValue error is returned."
::= { juniPppProfileEntry 17 }
juniPppProfileInitiateIp OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If enabled, PPP interface will initiate negotiation of IPCP;
if disabled, PPP interface will rely on remote PPP client to
initiate negotiation of IPCP."
DEFVAL { disable }
::= { juniPppProfileEntry 18 }
juniPppProfileInitiateIpv6 OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If enabled, PPP interface will initiate negotiation of IPv6CP;
if disabled, PPP interface will rely on remote PPP client to
initiate negotiation of IPv6CP."
DEFVAL { disable }
::= { juniPppProfileEntry 19 }
juniPppProfileFragmentation OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables MLPPP fragmentation."
DEFVAL { disable }
::= { juniPppProfileEntry 20 }
juniPppProfileReassembly OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables MLPPP reassembly."
DEFVAL { disable }
::= { juniPppProfileEntry 21 }
juniPppProfileMaxReceiveReconstructedUnit OBJECT-TYPE
SYNTAX Integer32 (1|64..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Maximum Received Reconstructed Unit (MRRU) that the local PPP
entity will advertise to the remote entity. If the value of this
variable is 1, then the MRRU is set to the local MRU value."
DEFVAL { 1 }
::= { juniPppProfileEntry 22 }
juniPppProfileFragmentSize OBJECT-TYPE
SYNTAX Integer32 (1|128..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The size of fragments transmitted by the local PPP entity. If the
value of this variable is 1, then the fragment size is set to the link's
MTU value."
DEFVAL { 1 }
::= { juniPppProfileEntry 23 }
juniPppProfileHashLinkSelection OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables MLPPP hash-based link selection for non-best-effort data."
DEFVAL { disable }
::= { juniPppProfileEntry 24 }
juniPppProfileLcpAuthentication2 OBJECT-TYPE
SYNTAX JuniNibbleConfig
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A configuration variable comprised of nibbles i.e. 4 bits, such that
a client can supply a list of 0 to 8 selections. The least
significant nibble is the first value of the list, and the most
significant nibble is the last value. The value in each field
ranges from 0 to 15, however the first nibble with value 0 indicates
the end of the list. Repetition of values is not allowed.
Segregation of values is not allowed.
Valid Values are:
none - 0
pap - 1
chap - 2
eap - 3
Example valid encoding:
0x00000321
0x00000012
Not a valid encoding:
0x00000121
0x01002001
If authentication negotiation is not supported for this PPP interface,
then any attempt to explicitly set this object will result in a
notWritable error and it will be implicitly set to the DEFVAL on row
creation.
Setting this object to null will set
juniPppProfileAuthenticatorVirtualRouter object to an empty string.
Setting this object along with the juniPppProfileLcpAuthentication
object will return an inconsistentValue error."
DEFVAL { 0 }
::= { juniPppProfileEntry 25 }
juniPppProfileIgnoreMagicNumberMismatch OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The ignore magic number mismatch option of the PPP interface
determines the action to be taken, when the peer has not negotiated
any value yet sent null or invalid magic number in the LCP echo
packets. The two actions that can be configured are:
1) Ignore the mismatch and retain connection
2) Disallow the mismatch and terminate connection"
DEFVAL { disable }
::= { juniPppProfileEntry 26 }
juniPppProfileIpcpPromptDnsOption OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Control prompting of IPCP options to remote peer."
DEFVAL { disable }
::= { juniPppProfileEntry 27 }
juniPppProfileIpcpLockout OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lockout option for IPCP determines whether IPCP can be negotiated
when the interface is already running IPV6CP. On enabling this option,
the negotiation will be blocked after the IPV6CP service is up and
waited for 10 seconds for peer IPCP initiation. The address is restored
to the pool after the 10 second timeout. Disabling this option will re
enable simultaneous NCP negotiations that are configured."
DEFVAL { disable }
::= { juniPppProfileEntry 28 }
juniPppProfileMultilinkMulticlass OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enables Multiclass Multilink PPP (MCML). Changing this object has an
effect when the link is next restarted."
DEFVAL {disable}
::= { juniPppProfileEntry 29 }
juniPppProfileMultilinkMaxMultiClasses OBJECT-TYPE
SYNTAX INTEGER (0..8)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Maximum number of MCML classes to be negotiated. Changing this object
has an effect when the link is next restarted."
DEFVAL {0}
::= { juniPppProfileEntry 30 }
--
-- The Profile Multiclass Traffic class Configuration Table
--
JuniPppProfileMulticlassTcName ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Name of the Traffic class. The bundle name is a characteristic of a MLPPP
Multiclass."
SYNTAX OCTET STRING (SIZE(0..64))
juniPppProfileMulticlassTraffiClassTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniPppProfileMulticlassTrafficClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries for MLPPP Multiclass to traffic class
mapping of the profile present in the system."
::= { juniPppProfile 2 }
juniPppProfileMulticlassTrafficClassEntry OBJECT-TYPE
SYNTAX JuniPppProfileMulticlassTrafficClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry describes the MLPPP multiclass to traffic class mapping of
profiles.Other characteristics like fragmentation and reassembly
for a particular traffic class can be configured."
INDEX { juniPppProfileId,
juniPppProfileMulticlassIndex }
::= { juniPppProfileMulticlassTraffiClassTable 1 }
JuniPppProfileMulticlassTrafficClassEntry ::= SEQUENCE {
juniPppProfileMulticlassId Unsigned32,
juniPppProfileMulticlassIndex INTEGER,
juniPppProfileMulticlassTcName JuniPppProfileMulticlassTcName,
juniPppProfileMulticlassFragmentation JuniEnable,
juniPppProfileMulticlassReassembly JuniEnable }
juniPppProfileMulticlassId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the profile. When creating entries in this
table, suitable values for this object are determined by reading
juniPppProfileId."
::= { juniPppProfileMulticlassTrafficClassEntry 1 }
juniPppProfileMulticlassIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The multiclass index of a particular traffic class type. This can be
configured only when MCMP is enabled in the profile."
DEFVAL { 15 }
::= { juniPppProfileMulticlassTrafficClassEntry 2 }
juniPppProfileMulticlassTcName OBJECT-TYPE
SYNTAX JuniPppProfileMulticlassTcName
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The traffic class index mapped to the MCMP multiclass index. This can be
configured only when MCMP is enabled in the profile."
::= { juniPppProfileMulticlassTrafficClassEntry 3 }
juniPppProfileMulticlassFragmentation OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable fragmentation for a particular multiclass. This can be
configured only when MCMP is enaled in the profile."
DEFVAL { disable }
::= { juniPppProfileMulticlassTrafficClassEntry 4 }
juniPppProfileMulticlassReassembly OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable rassembly for a particular multiclass. This can be
configured only when MCMP is enaled in the profile."
DEFVAL { disable }
::= { juniPppProfileMulticlassTrafficClassEntry 5 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notifications
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- No notifications are defined in this MIB.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniPppProfileConformance OBJECT IDENTIFIER ::= { juniPppProfileMIB 4 }
juniPppProfileCompliances OBJECT IDENTIFIER ::= { juniPppProfileConformance 1 }
juniPppProfileGroups OBJECT IDENTIFIER ::= { juniPppProfileConformance 2 }
--
-- compliance statements
--
juniPppProfileCompliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
PPP Profile MIB. This statement became obsolete when support was added
for multi-link PPP interfaces."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup }
::= { juniPppProfileCompliances 1 } -- JUNOSe 3.0
juniPppProfileCompliance2 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
PPP Profile MIB. This statement became obsolete when support was added
for negotiation of IPCP option netmask."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup2 }
::= { juniPppProfileCompliances 2 } -- JUNOSe 3.3
juniPppProfileCompliance3 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
PPP Profile MIB. This statement became obsolete when the
juniPppProfileAuthenticatorVirtualRouter object was added."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup3 }
::= { juniPppProfileCompliances 3 } -- JUNOSe 3.4
juniPppProfileCompliance4 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
PPP Profile MIB. This statement became obsolete when the
juniPppProfileAaaProfile object was added."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup4 }
::= { juniPppProfileCompliances 4 } -- JUNOSe 4.0
juniPppProfileCompliance5 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
PPP Profile MIB. This statement became obsolete when the
juniPppProfileInitiateIp and juniPppProfileInitiateIpv6 objects were
added."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup5 }
::= { juniPppProfileCompliances 5 } -- JUNOSe 4.1
juniPppProfileCompliance6 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
PPP Profile MIB. This statement became obsolete when fragmentation and
reassembly support was added."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup6 }
::= { juniPppProfileCompliances 6 } -- JUNOSe 5.1
juniPppProfileCompliance7 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for entities which implement the Juniper PPP
Profile MIB. This statement became obsolete when object
juniPppProfileHashLinkSelection was added."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup7 }
::= { juniPppProfileCompliances 7 } -- JUNOSe 5.3
juniPppProfileCompliance8 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for entities which implement the Juniper PPP
Profile MIB. This statement became obsolete when object
juniPppProfileLcpAuthentication2 was added."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup8 }
::= { juniPppProfileCompliances 8 } -- JUNOSe 7.2
juniPppProfileCompliance9 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for entities which implement the Juniper PPP
Profile MIB. This statement became obsolete when object
juniPppProfileIpcpDnsOption and juniPppProfileIpcpLockout was added."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup10 }
::= { juniPppProfileCompliances 9 } -- JUNOSe 7.3
juniPppProfileCompliance10 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the Juniper PPP
Profile MIB."
MODULE -- this module
MANDATORY-GROUPS {
juniPppProfileGroup11 }
::= { juniPppProfileCompliances 10 } -- JUNOSe 11.0
--
-- units of conformance
--
juniPppProfileGroup OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of profile
functionality for PPP interfaces in a Juniper product. This group
became obsolete when support was added for MLPPP."
::= { juniPppProfileGroups 1 } -- JUNOSe 3.0
juniPppProfileGroup2 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of profile
functionality for PPP interfaces in a Juniper product. This group
became obsolete when support was added for negotiation of IPCP option
netmask."
::= { juniPppProfileGroups 2 } -- JUNOSe 3.3
juniPppProfileGroup3 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of profile
functionality for PPP interfaces in a Juniper product. This group
became obsolete when the juniPppProfileAuthenticatorVirtualRouter object
was added."
::= { juniPppProfileGroups 3 } -- JUNOSe 3.4
juniPppProfileGroup4 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask,
juniPppProfileAuthenticatorVirtualRouter }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of profile
functionality for PPP interfaces in a Juniper product. This group
became obsolete when the juniPppProfileAaaProfile object was added."
::= { juniPppProfileGroups 4 } -- JUNOSe 4.0
juniPppProfileGroup5 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask,
juniPppProfileAuthenticatorVirtualRouter,
juniPppProfileAaaProfile }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of profile
functionality for PPP interfaces in a Juniper product. This group
became obsolete when the juniPppProfileInitiateIp and
juniPppProfileInitiateIpv6 objects were added."
::= { juniPppProfileGroups 5 } -- JUNOSe 4.1
juniPppProfileGroup6 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask,
juniPppProfileAuthenticatorVirtualRouter,
juniPppProfileAaaProfile,
juniPppProfileInitiateIp,
juniPppProfileInitiateIpv6 }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of profile
functionality for PPP interfaces in a Juniper product. This group
became obsolete when support was added for fragmentation and
reassembly."
::= { juniPppProfileGroups 6 } -- JUNOSe 5.1
juniPppProfileGroup7 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask,
juniPppProfileAuthenticatorVirtualRouter,
juniPppProfileAaaProfile,
juniPppProfileInitiateIp,
juniPppProfileInitiateIpv6,
juniPppProfileFragmentation,
juniPppProfileReassembly,
juniPppProfileMaxReceiveReconstructedUnit,
juniPppProfileFragmentSize }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of profile
functionality for PPP interfaces in a Juniper product. This group
became obsolete when support was added for mlppp hash-based link
selection."
::= { juniPppProfileGroups 7 } -- JUNOSe 5.3
juniPppProfileGroup8 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask,
juniPppProfileAuthenticatorVirtualRouter,
juniPppProfileAaaProfile,
juniPppProfileInitiateIp,
juniPppProfileInitiateIpv6,
juniPppProfileFragmentation,
juniPppProfileReassembly,
juniPppProfileMaxReceiveReconstructedUnit,
juniPppProfileFragmentSize,
juniPppProfileHashLinkSelection }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of profile
functionality for PPP interfaces in a Juniper product. This group
became obsolete when juniPppProfileLcpAuthentication2 was added."
::= { juniPppProfileGroups 8 } -- JUNOSe 7.2
juniPppProfileGroup9 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask,
juniPppProfileAuthenticatorVirtualRouter,
juniPppProfileAaaProfile,
juniPppProfileInitiateIp,
juniPppProfileInitiateIpv6,
juniPppProfileFragmentation,
juniPppProfileReassembly,
juniPppProfileMaxReceiveReconstructedUnit,
juniPppProfileFragmentSize,
juniPppProfileHashLinkSelection,
juniPppProfileLcpAuthentication2 }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of profile functionality
for PPP interfaces in a Juniper product. This group became obsolete when
juniPppProfileIgnoreMagicNumberMismatch was added"
::= { juniPppProfileGroups 9 } -- JUNOSe 7.3
juniPppProfileGroup10 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask,
juniPppProfileAuthenticatorVirtualRouter,
juniPppProfileAaaProfile,
juniPppProfileInitiateIp,
juniPppProfileInitiateIpv6,
juniPppProfileFragmentation,
juniPppProfileReassembly,
juniPppProfileMaxReceiveReconstructedUnit,
juniPppProfileFragmentSize,
juniPppProfileHashLinkSelection,
juniPppProfileLcpAuthentication2,
juniPppProfileIgnoreMagicNumberMismatch }
STATUS obsolete
DESCRIPTION
"A collection of objects providing management of profile functionality for
PPP interfaces in a Juniper product. This group became obsolete when
juniPppProfileIpcpDnsOption and juniPppProfileIpcpLockout was added"
::= { juniPppProfileGroups 10 } -- JUNOSe 7.3
juniPppProfileGroup11 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask,
juniPppProfileAuthenticatorVirtualRouter,
juniPppProfileAaaProfile,
juniPppProfileInitiateIp,
juniPppProfileInitiateIpv6,
juniPppProfileFragmentation,
juniPppProfileReassembly,
juniPppProfileMaxReceiveReconstructedUnit,
juniPppProfileFragmentSize,
juniPppProfileHashLinkSelection,
juniPppProfileLcpAuthentication2,
juniPppProfileIgnoreMagicNumberMismatch,
juniPppProfileIpcpPromptDnsOption,
juniPppProfileIpcpLockout}
STATUS current
DESCRIPTION
"Obsolete collection of objects providing management of profile functionality
for PPP interfaces in a Juniper product. This was obsoleted when the
support for multiclass MLPPP was added."
::= { juniPppProfileGroups 11 } -- JUNOSe 11.0
juniPppProfileGroup12 OBJECT-GROUP
OBJECTS {
juniPppProfileSetMap,
juniPppProfileLcpMagicNumber,
juniPppProfileLcpKeepalive,
juniPppProfileLcpAuthentication,
juniPppProfileIpPeerDnsPriority,
juniPppProfileIpPeerWinsPriority,
juniPppProfileLcpInitialMRU,
juniPppProfilePacketLog,
juniPppProfileStateLog,
juniPppProfileChapMinChallengeLength,
juniPppProfileChapMaxChallengeLength,
juniPppProfilePassiveMode,
juniPppProfileMlppp,
juniPppProfileIpcpNetmask,
juniPppProfileAuthenticatorVirtualRouter,
juniPppProfileAaaProfile,
juniPppProfileInitiateIp,
juniPppProfileInitiateIpv6,
juniPppProfileFragmentation,
juniPppProfileReassembly,
juniPppProfileMaxReceiveReconstructedUnit,
juniPppProfileFragmentSize,
juniPppProfileHashLinkSelection,
juniPppProfileLcpAuthentication2,
juniPppProfileIgnoreMagicNumberMismatch,
juniPppProfileMultilinkMulticlass,
juniPppProfileMultilinkMaxMultiClasses }
STATUS current
DESCRIPTION
"A collection of objects providing management of profile functionality
for PPP interfaces in a Juniper product."
::= { juniPppProfileGroups 12 } -- JUNOSe 11.1
juniPppProfileMulticlassTrafficClassGroup1 OBJECT-GROUP
OBJECTS {
juniPppProfileMulticlassTcName,
juniPppProfileMulticlassFragmentation,
juniPppProfileMulticlassReassembly }
STATUS current
DESCRIPTION
" A collection of object providing management of multiclass MLPPP
multiclass to traffic class mapping functionality in the PPP profile
in a Juniper product."
::= { juniPppProfileGroups 13 } -- JUNOSe 11.1
END
|