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
|
--
-- Juniper Enterprise Specifics MIB
--
-- Copyright (c) 2010-2011, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JNX-PPPOE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Unsigned32 ,Counter64
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString, RowStatus, TruthValue, MacAddress
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InterfaceIndex, InterfaceIndexOrZero
FROM IF-MIB
jnxPppoeMibRoot
FROM JUNIPER-SMI;
jnxPPPoEMIB MODULE-IDENTITY
LAST-UPDATED "201602160000Z" -- 16-Feb-2016
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: support@Juniper.net"
DESCRIPTION
"The Point-to-Point Protocol over Ethernet (PPPoE) MIB for the Junos
product family. This MIB contains managed objects for each of
two interface layers: PPPoE interfaces, and PPPoE subinterfaces. For
each of these layers, management objects are provided to query for an
available interface index, and to create/delete interfaces of that type."
-- Revision History
REVISION "201602160000Z" -- 16-Feb-2016
DESCRIPTION
"Added objects jnxPPPoESubIfSubscriberIdHiWord and
jnxPPPoESubIfSubscriberIdLoWord."
REVISION "201306130000Z" -- 13-Jun-13 05:32 AM EST - JUNOS 13.1
DESCRIPTION
"Deprecated InterfaceIndex type and added InterfaceIndexOrZero type
for jnxPPPoENextIfIndex and jnxPPPoESubIfNextIfIndex.
Modified minimum range for jnxPPPoEIfServiceNameTable."
REVISION "201007220942Z" -- 22-Jul-10 03:12 PM EST - JUNOS 11.0
DESCRIPTION
"Initial version."
::= { jnxPppoeMibRoot 1 }
JnxPPPoEServiceNameAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The set of Service-name action types.
drop no PADO packet will be sent.
terminate a PADO packet will be sent."
SYNTAX INTEGER {
drop(0),
terminate(1) }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
jnxPPPoEObjects OBJECT IDENTIFIER ::= { jnxPPPoEMIB 1 }
jnxPPPoEIfLayer OBJECT IDENTIFIER ::= { jnxPPPoEObjects 1 }
jnxPPPoESubIfLayer OBJECT IDENTIFIER ::= { jnxPPPoEObjects 2 }
jnxPPPoESummary OBJECT IDENTIFIER ::= { jnxPPPoEObjects 3 }
jnxPPPoEServices OBJECT IDENTIFIER ::= { jnxPPPoEObjects 4 }
-- /////////////////////////////////////////////////////////////////////////////
--
-- This layer is managed with the following elements:
-- o NextIfIndex (generator for PPPoEIfIndex selection)
-- o Interface Table (creation/configuration/deletion of PPPoEinterfaces)
-- o Statistics Table (PPPoEinterface statistics)
--
-- /////////////////////////////////////////////////////////////////////////////
--
-- IfIndex selection for creating new PPPoEinterfaces
--
jnxPPPoENextIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Coordinate ifIndex value allocation for entries in jnxPPPoEIfTable.
A GET of this object returns the next available ifIndex value to be used
to create an entry in the associated interface table; or zero, if no
valid ifIndex value is available. This object also returns a value of
zero when it is the lexicographic successor of a varbind presented in an
SNMP GETNEXT or GETBULK request, for which circumstance it is assumed
that ifIndex allocation is unintended.
Successive GETs will typically return different values, thus avoiding
collisions among cooperating management clients seeking to create table
entries simultaneously."
::= { jnxPPPoEIfLayer 1 }
--
-- The PPPoEInterface Table
--
jnxPPPoEIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxPPPoEIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The parameters for the PPPoEservice on this interface."
REFERENCE
"RFC 2156 A method for transmitting PPP over Ethernet"
::= { jnxPPPoEIfLayer 2 }
jnxPPPoEIfEntry OBJECT-TYPE
SYNTAX JnxPPPoEIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Parameters for a particular PPPoEinterface.
Creating/deleting entries in this table causes corresponding entries for
be created/deleted in ifTable/ifXTable/jnxIfTable, and
jnxPPPoEIfStatsTable."
INDEX { jnxPPPoEIfIfIndex }
::= { jnxPPPoEIfTable 1 }
JnxPPPoEIfEntry ::= SEQUENCE {
jnxPPPoEIfIfIndex InterfaceIndex,
jnxPPPoEIfMaxNumSessions INTEGER,
jnxPPPoEIfRowStatus RowStatus,
jnxPPPoEIfLowerIfIndex InterfaceIndexOrZero,
jnxPPPoEIfAcName DisplayString,
jnxPPPoEIfDupProtect INTEGER,
jnxPPPoEIfPADIFlag INTEGER,
jnxPPPoEIfAutoconfig INTEGER,
jnxPPPoEIfServiceNameTable DisplayString,
jnxPPPoEIfPadrRemoteCircuitIdCapture INTEGER,
jnxPPPoEIfMtu Integer32,
jnxPPPoEIfLockoutMin Integer32,
jnxPPPoEIfLockoutMax Integer32 ,
jnxPPPoEIfDynamicProfile DisplayString}
jnxPPPoEIfIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the corresponding ifEntry."
::= { jnxPPPoEIfEntry 1 }
jnxPPPoEIfMaxNumSessions OBJECT-TYPE
SYNTAX INTEGER (0..65335)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of sessions allowed on the PPPoEinterface, zero indicates
unlimited."
DEFVAL { 0 }
::= { jnxPPPoEIfEntry 2 }
jnxPPPoEIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Controls creation/deletion of entries in this table with READ-CREATE
maximum access, according to the
RowStatus textual convention, constrained to support the following
values only:
createAndGo
destroy
To create an entry in this table, the following entry objects MUST be
explicitly configured:
jnxPPPoEIfRowStatus
jnxPPPoEIfLowerIfIndex
In addition, when creating an entry the following conditions must hold:
A value for jnxPPPoEIfIndex must have been determined previously,
by reading jnxPPPoENextIfIndex.
The interface identified by jnxPPPoEIfLowerIfIndex must exist, and
must be an interface type that permits layering of PPPoEabove it.
A corresponding entry in ifTable/ifXTable/jnxIfTable is created or
destroyed as a result of creating or destroying an entry in this table.
The following values can be read from this object:
active(1)"
::= { jnxPPPoEIfEntry 3 }
jnxPPPoEIfLowerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifIndex of an interface over which this PPPoEinterface is to be
layered. A value of zero indicates no layering. An implementation may
choose to require that a nonzero value be configured at entry creation."
::= { jnxPPPoEIfEntry 4 }
jnxPPPoEIfAcName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name to use for the AC-NAME tag that is sent in any PADO that is
sent on this interface."
::= { jnxPPPoEIfEntry 5 }
jnxPPPoEIfDupProtect OBJECT-TYPE
SYNTAX INTEGER { enable(1), disable(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flag to allow duplicate MAC addresses."
DEFVAL { disable }
::= { jnxPPPoEIfEntry 6 }
jnxPPPoEIfPADIFlag OBJECT-TYPE
SYNTAX INTEGER { enable(1), disable(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This flag controls whether we always respond to a PADI with a PADO
regardless of the ability to create the session and allows the session
establish phase to resolve it."
DEFVAL { disable }
::= { jnxPPPoEIfEntry 7 }
jnxPPPoEIfAutoconfig OBJECT-TYPE
SYNTAX INTEGER { enable(1), disable(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This flags determines whether the upper PPPoEinterface is created
dynamically or statically. When enable(1) the interface is created
dynamically."
DEFVAL {disable }
::= { jnxPPPoEIfEntry 8 }
jnxPPPoEIfServiceNameTable OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Associate a PPPoEService Name Table with this interface for PADI
processing."
::= { jnxPPPoEIfEntry 9 }
jnxPPPoEIfPadrRemoteCircuitIdCapture OBJECT-TYPE
SYNTAX INTEGER { enable(1), disable(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This flags determines whether the remote circuit id string will
be captured and subsequently used as the NAS-PORT-ID radius
attribute when it arrives as a tag in the PADR packet."
DEFVAL { disable }
::= { jnxPPPoEIfEntry 10 }
jnxPPPoEIfMtu OBJECT-TYPE
SYNTAX Integer32 (1|2|66..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The initial Maximum Transmit Unit (MTU) that the PPPoEmajor interface
entity will advertise to the remote entity.
If the value of this variable is 1 then the local PPPoEentity will
use an MTU value determined by its underlying media interface.
If the value of this variable is 2 then the local PPPoEentity will
use a value determined by the PPPoEMax-Mtu-Tag transmitted from the
client in the PADR packet. If no Max-Mtu-Tag is received, the value
defaults to a maximum of 1494.
The operational MTU is limited by the MTU of the underlying media
interface minus the PPPoEframe overhead."
DEFVAL { 1494 }
::= { jnxPPPoEIfEntry 11 }
jnxPPPoEIfLockoutMin OBJECT-TYPE
SYNTAX Integer32 (0..86400)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lower bound, in seconds, of the time range used to specify
the duration of the lockout of the client from recognition for
the specified interface. This only takes effect if
jnxPPPoEIfAutoconfig is set for this interface.
The ability to lockout the client in the event of an error in
creating a PPP interface is enabled by default. The initial lockout
duration is this object's value and increases exponentially for
each failure that occurs for the client creating a PPP interface
for the PPPoEinterface within the greater of 15 minutes
and jnxPPPoEIfLockoutMax.
The lockout duration for the client will not exceed jnxPPPoEIfLockoutMax.
If the time between creation errors for the PPP interface for this
interface is greater than the greater of 15 minutes and
jnxPPPoEIfLockoutMax, then the lockout duration reverts to this
object's value.
To disable the ability to lockout the client from recognition in the
event of an error in creating a PPP interface for the specified interface,
the value of this object and jnxPPPoEIfLockoutMin must be set to 0.
It is not recommended that this lockout feature be disabled except for
debugging purposes or when this interface supports more than one session."
DEFVAL { 0 }
::= { jnxPPPoEIfEntry 12 }
jnxPPPoEIfLockoutMax OBJECT-TYPE
SYNTAX Integer32 (0..86400)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper bound, in seconds, of the time range used to specify
the duration of the lockout of the client from recognition for
the specified interface. This only takes effect if
jnxPPPoEIfAutoconfig is set for this interface.
The ability to lockout the client from recognition in the event
of an error in creating a PPP interface is enabled by default.
The initial lockout duration is jnxPPPoEIfLockoutMin and
increases exponentially for each failure that occurs for the client
interface within the greater of 15 minutes and this object's value.
The lockout duration for the client will not exceed jnxPPPoEIfLockoutMax.
If the time between creation errors for the PPP interface for this
interface is greater than the greater of 15 minutes and
jnxPPPoEIfLockoutMax, then the lockout duration reverts to
jnxPPPoEIfLockoutMin.
To disable the ability to lockout the client from recognition in the
event of an error in creating a PPP interface for the specified interface,
the value of this object and jnxPPPoEIfLockoutMin must be set to 0.
It is not recommended that this lockout feature be disabled except for
debugging purposes or when this interface supports more than one session."
DEFVAL { 0 }
::= { jnxPPPoEIfEntry 13 }
jnxPPPoEIfDynamicProfile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Attach dynamic-profile to this interface"
DEFVAL { " " }
::= { jnxPPPoEIfEntry 14 }
--
-- The PPPoEInterface Statistics Table
--
jnxPPPoEIfStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxPPPoEIfStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics for the PPP over Ethernet Interface for the PPPoE
service on this interface."
::= { jnxPPPoEIfLayer 3 }
jnxPPPoEIfStatsEntry OBJECT-TYPE
SYNTAX JnxPPPoEIfStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics for a particular PPPoEInterface."
INDEX { jnxPPPoEIfIfIndex }
::= { jnxPPPoEIfStatsTable 1 }
JnxPPPoEIfStatsEntry ::= SEQUENCE {
jnxPPPoEIfStatsRxPADI Counter32,
jnxPPPoEIfStatsTxPADO Counter32,
jnxPPPoEIfStatsRxPADR Counter32,
jnxPPPoEIfStatsTxPADS Counter32,
jnxPPPoEIfStatsRxPADT Counter32,
jnxPPPoEIfStatsTxPADT Counter32,
jnxPPPoEIfStatsRxInvVersion Counter32,
jnxPPPoEIfStatsRxInvCode Counter32,
jnxPPPoEIfStatsRxInvTags Counter32,
jnxPPPoEIfStatsRxInvSession Counter32,
jnxPPPoEIfStatsRxInvTypes Counter32,
jnxPPPoEIfStatsRxInvPackets Counter32,
jnxPPPoEIfStatsRxInsufficientResources Counter32,
jnxPPPoEIfStatsTxPADM Counter32,
jnxPPPoEIfStatsTxPADN Counter32,
jnxPPPoEIfStatsRxInvTagLength Counter32,
jnxPPPoEIfStatsRxInvLength Counter32,
jnxPPPoEIfStatsRxInvPadISession Counter32,
jnxPPPoEIfStatsRxInvPadRSession Counter32 }
jnxPPPoEIfStatsRxPADI OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADI packets received."
::= { jnxPPPoEIfStatsEntry 1 }
jnxPPPoEIfStatsTxPADO OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADO packets transmitted."
::= { jnxPPPoEIfStatsEntry 2 }
jnxPPPoEIfStatsRxPADR OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADR packets received."
::= { jnxPPPoEIfStatsEntry 3 }
jnxPPPoEIfStatsTxPADS OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADS packets transmitted."
::= { jnxPPPoEIfStatsEntry 4 }
jnxPPPoEIfStatsRxPADT OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADT packets received."
::= { jnxPPPoEIfStatsEntry 5 }
jnxPPPoEIfStatsTxPADT OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADT packets transmitted."
::= { jnxPPPoEIfStatsEntry 6 }
jnxPPPoEIfStatsRxInvVersion OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received with invalid version."
::= { jnxPPPoEIfStatsEntry 7 }
jnxPPPoEIfStatsRxInvCode OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received with invalid code."
::= { jnxPPPoEIfStatsEntry 8 }
jnxPPPoEIfStatsRxInvTags OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received with invalid tags."
::= { jnxPPPoEIfStatsEntry 9 }
jnxPPPoEIfStatsRxInvSession OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Number of packets received with invalid session identifiers.
This object became obsolete when separate counters were added for PADI
and PADR packets."
::= { jnxPPPoEIfStatsEntry 10 }
jnxPPPoEIfStatsRxInvTypes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received with invalid types."
::= { jnxPPPoEIfStatsEntry 11 }
jnxPPPoEIfStatsRxInvPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of invalid packets received."
::= { jnxPPPoEIfStatsEntry 12 }
jnxPPPoEIfStatsRxInsufficientResources OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of session requests that could not be honored due to invalid
resources."
::= { jnxPPPoEIfStatsEntry 13 }
jnxPPPoEIfStatsTxPADM OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADM packets transmitted."
::= { jnxPPPoEIfStatsEntry 14 }
jnxPPPoEIfStatsTxPADN OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADN packets transmitted."
::= { jnxPPPoEIfStatsEntry 15 }
jnxPPPoEIfStatsRxInvTagLength OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received with invalid tag length."
::= { jnxPPPoEIfStatsEntry 16 }
jnxPPPoEIfStatsRxInvLength OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received with invalid length."
::= { jnxPPPoEIfStatsEntry 17 }
jnxPPPoEIfStatsRxInvPadISession OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADI packets received with invalid session identifiers."
::= { jnxPPPoEIfStatsEntry 18 }
jnxPPPoEIfStatsRxInvPadRSession OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PADR packets received with invalid session identifiers."
::= { jnxPPPoEIfStatsEntry 19 }
--
-- The PPPoEInterface Client Lockout Table
--
jnxPPPoEIfLockoutTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxPPPoEIfLockoutEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The lockout configuration and state of a PPPoEclient on this interface."
::= { jnxPPPoEIfLayer 4 }
jnxPPPoEIfLockoutEntry OBJECT-TYPE
SYNTAX JnxPPPoEIfLockoutEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains the configuration and state of a particular
PPPoEinterface client lockout."
INDEX { jnxPPPoEIfIfIndex, jnxPPPoEIfLockoutClientAddress }
::= { jnxPPPoEIfLockoutTable 1 }
JnxPPPoEIfLockoutEntry ::= SEQUENCE {
jnxPPPoEIfLockoutClientAddress MacAddress,
jnxPPPoEIfLockoutTime Integer32,
jnxPPPoEIfLockoutElapsedTime Integer32,
jnxPPPoEIfLockoutNextTime Integer32 }
jnxPPPoEIfLockoutClientAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The source MAC address if the client."
::= { jnxPPPoEIfLockoutEntry 1 }
jnxPPPoEIfLockoutTime OBJECT-TYPE
SYNTAX Integer32 (0..86400)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time duration, in seconds, currently used to lockout the
specified encapsulation type from recognition for the specified
interface. The reported value is within the range specified by
jnxPPPoEIfLockoutMin and jnxPPPoEIfLockoutMax. A value of 0
indicates that no lockout is occurring for the encapsulation type
for the specified interface."
::= { jnxPPPoEIfLockoutEntry 2 }
jnxPPPoEIfLockoutElapsedTime OBJECT-TYPE
SYNTAX Integer32 (0..86400)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The elapsed time, in seconds, that the specified encapsulation type
has been locked-out from recognition for the specified interface.
Its value will not exceed that of jnxPPPoEIfLockoutTime. A value of
0 indicates that no lockout is occurring for the encapsulation type
for the specified interface."
::= { jnxPPPoEIfLockoutEntry 3 }
jnxPPPoEIfLockoutNextTime OBJECT-TYPE
SYNTAX Integer32 (0..86400)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time duration, in seconds, that will be used to lockout the
specified encapsulation type from recognition for the specified
interface for the next event that results in a lockout condition.
The reported value is within the range specified by
jnxPPPoEIfLockoutMin and jnxPPPoEIfLockoutMax. When
jnxPPPoEIfEnable is set to enable, a value of 0 indicates that
lockout is prevented from occurring for the encapsulation type
for the specified interface (i.e., jnxPPPoEIfLockoutMin and
jnxPPPoEIfLockoutMax are both set to 0)."
::= { jnxPPPoEIfLockoutEntry 4 }
-- /////////////////////////////////////////////////////////////////////////////
--
-- PPPoESubinterface Layer
--
-- This layer is managed with the following elements:
-- o NextIfIndex (generator for PPPoEsubinterface IfIndex selection)
-- o SubIf Table (creation/configuration/deletion of PPPoEsubinterfaces)
--
-- /////////////////////////////////////////////////////////////////////////////
--
-- IfIndex selection for creating new PPPoESubinterfaces
--
jnxPPPoESubIfNextIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Coordinate ifIndex value allocation for entries in jnxPPPoESubIfTable.
A GET of this object returns the next available ifIndex value to be used
to create an entry in the associated interface table; or zero, if no
valid ifIndex value is available. This object also returns a value of
zero when it is the lexicographic successor of a varbind presented in an
SNMP GETNEXT or GETBULK request, for which circumstance it is assumed
that ifIndex allocation is unintended.
Successive GETs will typically return different values, thus avoiding
collisions among cooperating management clients seeking to create table
entries simultaneously."
::= { jnxPPPoESubIfLayer 1 }
--
-- The PPPoESubinterface Table
--
jnxPPPoESubIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxPPPoESubIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries for PPPoESubinterfaces present in the
system."
::= { jnxPPPoESubIfLayer 2 }
jnxPPPoESubIfEntry OBJECT-TYPE
SYNTAX JnxPPPoESubIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry describes the characteristics of a PPPoESubinterface.
With READ-CREATE maximum access ,creating/deleting entries in this
table causes corresponding entries for
be created /deleted in ifTable/ifXTable/jnxIfTable."
INDEX { jnxPPPoESubIfIndex }
::= { jnxPPPoESubIfTable 1 }
JnxPPPoESubIfEntry ::= SEQUENCE {
jnxPPPoESubIfIndex InterfaceIndex,
jnxPPPoESubIfRowStatus RowStatus,
jnxPPPoESubIfLowerIfIndex InterfaceIndexOrZero,
jnxPPPoESubIfId Unsigned32,
jnxPPPoESubIfSessionId Integer32,
jnxPPPoESubIfMotm DisplayString,
jnxPPPoESubIfUrl DisplayString,
jnxPPPoESubIfSubscriberIdHiWord Unsigned32,
jnxPPPoESubIfSubscriberIdLoWord Unsigned32 }
jnxPPPoESubIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the PPPoESubinterface. When creating entries in this
table, suitable values for this object are determined by reading
jnxPPPoESubNextIfIndex."
::= { jnxPPPoESubIfEntry 1 }
jnxPPPoESubIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Controls creation/deletion of entries in this table with READ-CREATE
maximum access ,according to the
RowStatus textual convention, constrained to support the following
values only:
createAndGo
destroy
To create an entry in this table, the following entry objects MUST be
explicitly configured:
jnxPPPoESubIfRowStatus
jnxPPPoESubIfLowerIfIndex
In addition, when creating an entry the following conditions must hold:
A value for jnxPPPoESubIfIndex must have been determined
previously, by reading jnxPPPoESubIfNextIfIndex.
The interface identified by jnxPPPoESubIfLowerIfIndex must exist,
and must be a PPPoEinterface.
A positive value configured for jnxPPPoESubIfId must not already be
assigned to another subinterface layered onto the same underlying
PPPoEinterface.
A corresponding entry in ifTable/ifXTable/jnxIfTable is created or
destroyed as a result of creating or destroying an entry in this table.
The following values can be read from this object:
active(1) "
::= { jnxPPPoESubIfEntry 2 }
jnxPPPoESubIfLowerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifIndex of a PPPoEinterface over which this PPPoESubinterface is
to be layered. A value of zero indicates no layering. An
implementation may choose to require that a nonzero value be configured
at entry creation."
::= { jnxPPPoESubIfEntry 3 }
jnxPPPoESubIfId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer identifier for the PPPoEsubinterface, used in conjunction
with the command-line interface. It is provided here for
cross-reference purposes only.
The value must be unique among subinterfaces configured on the same
underlying PPPoEinterface.
If this object is not configured, or is configured with a value of -1, a
nonzero value will be allocated internally and can be retrieved from
this object after table entry creation has succeeded.
A value of zero for this object is reserved for future use."
DEFVAL { -1 }
::= { jnxPPPoESubIfEntry 4 }
jnxPPPoESubIfSessionId OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current sessionId associated with this sub-interface."
::= { jnxPPPoESubIfEntry 5 }
jnxPPPoESubIfMotm OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A message to send via a PADM on the sub-interface when the
sub-interface transitions to the ifOperStatusUp state. The client may
choose to display this message to the user."
::= { jnxPPPoESubIfEntry 6 }
jnxPPPoESubIfUrl OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A URL to be sent via a PADM on the sub-interface when the sub-interface
transitions to the ifOperStatusUp state. The client may use this URL as
the initial web-page for the user."
::= { jnxPPPoESubIfEntry 7 }
jnxPPPoESubIfSubscriberIdHiWord OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The subscriber handle associated with this PPPoEsubinterface which can
be used to index into the JUNIPER-SUBSCRIBER-MIB table entries.
This object is equal to the most significant 32 bit of the 64 bit subscriber id."
::= { jnxPPPoESubIfEntry 8 }
jnxPPPoESubIfSubscriberIdLoWord OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The subscriber handle associated with this PPPoEsubinterface which can
be used to index into the JUNIPER-SUBSCRIBER-MIB table entries.
This object is equal to the least significant 32 bit of the 64 bit subscriber id."
::= { jnxPPPoESubIfEntry 9 }
-- /////////////////////////////////////////////////////////////////////////////
--
-- PPPoEInterface per queue stats table.
-- This is a new table added in addition to existing
-- JUNOSe PPPoEMIB.
-- /////////////////////////////////////////////////////////////////////////////
jnxPppoeSubIfQueueStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxPppoeSubIfPerQueueStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing the Queue parameters for the PPPoEsessions."
::= { jnxPPPoESubIfLayer 3 }
jnxPppoeSubIfPerQueueStatsEntry OBJECT-TYPE
SYNTAX JnxPppoeSubIfPerQueueStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics for a particular trrafic class queue for
PPPoEsub Interface(i.e. session). ). Forwarding class to
queue number mapping is not always one-to-one. Forwarding
classes and queues are the same only when default
forwarding-class-to-queue mapping is in effect "
INDEX { jnxPPPoESubIfIndex,
jnxPppoeSubIfQueueIndex }
::= { jnxPppoeSubIfQueueStatsTable 1 }
JnxPppoeSubIfPerQueueStatsEntry ::= SEQUENCE {
jnxPppoeSubIfQueueIndex INTEGER(0..7),
jnxPppoeSubIfQueueStatsPacketSent Counter64,
jnxPppoeSubIfQueueStatsBytesSent Counter64,
jnxPppoeSubIfQueueStatsPacketDropped Counter64,
jnxPppoeSubIfQueueStatsBytesDropped Counter64,
jnxPppoeSubIfQueueStatsActualBitRate Counter32,
jnxPppoeSubIfQueueStatsActualDroppedBitRate Counter32 }
jnxPppoeSubIfQueueIndex OBJECT-TYPE
SYNTAX INTEGER(0..7)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This attribute returns the queue index ranging from 0 to 7 of the
queue configure on the PPPoEsubinterface to support the traffic class for
PPPoEsession configured on that subinterface. Forwarding class to queue
number mapping is not always one-to-one. Forwarding classes and queues are
the same only when default forwarding-class-to-queue mapping is in effect."
::= { jnxPppoeSubIfPerQueueStatsEntry 1}
jnxPppoeSubIfQueueStatsPacketSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute returns the counts of number of packet sent
per PPPoEsession and per queue."
::= { jnxPppoeSubIfPerQueueStatsEntry 2}
jnxPppoeSubIfQueueStatsBytesSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute returns the counts of number of bytes sent
per PPPoEsession and per queue."
::= { jnxPppoeSubIfPerQueueStatsEntry 3 }
jnxPppoeSubIfQueueStatsPacketDropped OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute returns the number of packet dropped per
PPPoEsession and per queue."
::= { jnxPppoeSubIfPerQueueStatsEntry 4}
jnxPppoeSubIfQueueStatsBytesDropped OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute returns the number of bytes dropped per
PPPoEsession and per queue."
::= { jnxPppoeSubIfPerQueueStatsEntry 5 }
jnxPppoeSubIfQueueStatsActualBitRate OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute returns the actual bit rate for per
PPPoEsession and per queue."
::= { jnxPppoeSubIfPerQueueStatsEntry 6 }
jnxPppoeSubIfQueueStatsActualDroppedBitRate OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute returns the actual dropped bit rate for per
PPPoEsession and per queue."
::= { jnxPppoeSubIfPerQueueStatsEntry 7 }
-- /////////////////////////////////////////////////////////////////////////////
-- /////////////////////////////////////////////////////////////////////////////
--
-- PPPoEService-name tables
--
-- The service-name tables are non interface based objects
-- This layer is managed with the following elements:
--
-- o Service-name table table (table if service-name tables)
-- o Service-name table (service-name table entries) indexed by Service-name
-- table name and service-name string value.
-- o Service-name AciAri table (service-name AciAri table entries) indexed by
-- Service-name table name,service-name string value, Agent circuit
-- Id( Aci string value)
-- and Agent Remote Id (ari string value)
--
-- ///////////////////////////////////////////////////////////////
-- /////////////////////////////////////////////////////////////////////////////
--
-- Service-name table table
--
-- /////////////////////////////////////////////////////////////////////////////
jnxPPPoEServiceNameTableTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxPPPoEServiceNameTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries for the PPPoEService-name tables."
::= { jnxPPPoEServices 1 }
jnxPPPoEServiceNameTableEntry OBJECT-TYPE
SYNTAX JnxPPPoEServiceNameTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The parameters for the PPPoEservice-name table."
INDEX { jnxPPPoEServiceNameTableName }
::= { jnxPPPoEServiceNameTableTable 1 }
JnxPPPoEServiceNameTableEntry ::= SEQUENCE {
jnxPPPoEServiceNameTableName DisplayString,
jnxPPPoEServiceNameTableRowStatus RowStatus }
jnxPPPoEServiceNameTableName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Service-name table name."
::= { jnxPPPoEServiceNameTableEntry 1 }
jnxPPPoEServiceNameTableRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Controls creation/deletion of entries in this table with READ-CREATE
maximum access,according to the
RowStatus textual convention, constrained to support the following
values only:
createAndGo
destroy
To create an entry in this table, the following entry objects MUST be
explicitly configured:
jnxPPPoEServiceNameTableRowStatus
jnxPPPoEServiceNameTableName
The Empty Service and Any service will be automatically configured
for each Service Name Table created. On creating or deleting an entry in
this table will create/destroy an entry for <Empty >Service and <Any>
service in jnxServiceNameTable.
A corresponding entry in jnxServiceNameTable gets created or destroyed
as a result of creating or destroying an entry in this table.
The following values can be read from this object:
active(1) "
::= { jnxPPPoEServiceNameTableEntry 2 }
-- ==========================================================================
-- Service-name Table
-- ========================================================================
jnxPPPoEServiceNameTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxPPPoEServiceNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries for the PPPoEService-names."
::= { jnxPPPoEServices 2 }
jnxPPPoEServiceNameEntry OBJECT-TYPE
SYNTAX JnxPPPoEServiceNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The parameters for the PPPoEservice-name table entry."
INDEX { jnxPPPoEServiceNameTableName,
jnxPPPoEServiceName }
::= { jnxPPPoEServiceNameTable 1 }
JnxPPPoEServiceNameEntry ::= SEQUENCE {
jnxPPPoEServiceName DisplayString,
jnxPPPoEServiceNameAction JnxPPPoEServiceNameAction,
jnxPPPoEServiceNameDynamicProfile DisplayString,
jnxPPPoEServiceNameRoutingInstance DisplayString,
jnxPPPoEServiceNameMaxSessions Unsigned32,
jnxPPPoEServiceNameRowStatus RowStatus }
jnxPPPoEServiceName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Service-name tag value."
::= { jnxPPPoEServiceNameEntry 1 }
jnxPPPoEServiceNameAction OBJECT-TYPE
SYNTAX JnxPPPoEServiceNameAction
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the behavior when the the Service-name tag is received in a
PADI frame."
::= { jnxPPPoEServiceNameEntry 2 }
jnxPPPoEServiceNameDynamicProfile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dynamic Profile associated with a Service-name."
::= { jnxPPPoEServiceNameEntry 3 }
jnxPPPoEServiceNameRoutingInstance OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Routing Instance associated with a Service-name."
::= { jnxPPPoEServiceNameEntry 4 }
jnxPPPoEServiceNameMaxSessions OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Max Sessions value used to cap the number of active PPPoEssessions
that may be established with the specified Service entry."
::= { jnxPPPoEServiceNameEntry 5 }
jnxPPPoEServiceNameRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Controls creation/deletion of entries in this table with READ-CREATE
maximum access ,according to the
RowStatus textual convention, constrained to support the following
values only:
createAndGo
destroy
To create an entry in this table, the following entry objects MUST be
explicitly configured:
jnxPPPoEServiceNameRowStatus
The Service name is configured via the INDEX specified.
A corresponding entry in jnxPPPoEServiceNameAciAriTable is destroyed
as a result of destroying an entry in this table.
The following values can be read from this object:
active(1)"
::= { jnxPPPoEServiceNameEntry 6 }
-- ===========================================================================
--Service-name ACI ARI Table
-- ==============================================
jnxPPPoEServiceNameAciAriTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxPPPoEServiceNameAciAriEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries for the PPPoEServicename AciAri entries."
::= { jnxPPPoEServices 3 }
jnxPPPoEServiceNameAciAriEntry OBJECT-TYPE
SYNTAX JnxPPPoEServiceNameAciAriEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The parameters for the PPPoEservice-name AciAri table entry."
INDEX { jnxPPPoEServiceNameTableName,
jnxPPPoEServiceName,
jnxPPPoEServiceNameAgentCircuitId,
jnxPPPoEServiceNameAgentRemoteId
}
::= { jnxPPPoEServiceNameAciAriTable 1 }
JnxPPPoEServiceNameAciAriEntry ::= SEQUENCE {
jnxPPPoEServiceNameAgentCircuitId DisplayString,
jnxPPPoEServiceNameAgentRemoteId DisplayString,
jnxPPPoEServiceNameAciAriAction JnxPPPoEServiceNameAction,
jnxPPPoEServiceNameAciAriDynamicProfile DisplayString,
jnxPPPoEServiceNameAciAriRoutingInstance DisplayString,
jnxPPPoEServiceNameAciAriStaticInterface DisplayString,
jnxPPPoEServiceNameAciAriRowStatus RowStatus }
jnxPPPoEServiceNameAgentCircuitId OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ACI tag values that the PPPoEclient would send in the PADI/PADR
control packet."
::= { jnxPPPoEServiceNameAciAriEntry 1 }
jnxPPPoEServiceNameAgentRemoteId OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ACI tag values that the PPPoEclient would send in the PADI/PADR
control packet."
::= { jnxPPPoEServiceNameAciAriEntry 2 }
jnxPPPoEServiceNameAciAriAction OBJECT-TYPE
SYNTAX JnxPPPoEServiceNameAction
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the behavior when the the Service-name with ACI/ARI pairs
is received in a PADI frame."
::= { jnxPPPoEServiceNameAciAriEntry 3 }
jnxPPPoEServiceNameAciAriDynamicProfile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dynamic Profile associated with a Service-name and ACI/ARI pairs"
::= { jnxPPPoEServiceNameAciAriEntry 4 }
jnxPPPoEServiceNameAciAriRoutingInstance OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Routing-Instance associated with a Service-name and ACI/ARI pairs"
::= { jnxPPPoEServiceNameAciAriEntry 5 }
jnxPPPoEServiceNameAciAriStaticInterface OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Static Interface associated with each ACI/ARI Entry."
::= { jnxPPPoEServiceNameAciAriEntry 6 }
jnxPPPoEServiceNameAciAriRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Controls creation/deletion of entries in this table with READ-CREATE
maximum access, according to the
RowStatus textual convention, constrained to support the following
values only:
createAndGo
destroy
To create an entry in this table, the following entry objects MUST be
explicitly configured:
jnxPPPoEServiceNameAciAriRowStatus
The ACIARI Entry is configured via the INDEX specified.
The following values can be read from this object:
active(1)"
::= { jnxPPPoEServiceNameAciAriEntry 7 }
--
-- ////////////////////////////////////////////////////////////////////////////
--
-- PPP Interface Summary Counts
--
-- /////////////////////////////////////////////////////////////////////////////
jnxPPPoEMajorInterfaceCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEmajor interfaces configured and created in
the system."
::= { jnxPPPoESummary 1 }
jnxPPPoESummaryMajorIfAdminUp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEmajor interfaces in the system that are
administratively configured to up(1)."
REFERENCE
"ifAdminStatus from IF-MIB"
::= { jnxPPPoESummary 2 }
jnxPPPoESummaryMajorIfAdminDown OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEmajor interfaces in the system that are
administrateively configued to down(2)."
REFERENCE
"ifAdminStatus from IF-MIB"
::= { jnxPPPoESummary 3 }
jnxPPPoESummaryMajorIfOperUp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEmajor interfaces in the system with an
operational state of up(1)."
REFERENCE
"ifOperStatus from IF-MIB"
::= { jnxPPPoESummary 4 }
jnxPPPoESummaryMajorIfOperDown OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEmajor interfaces in the system with an
operational state of down(2)."
REFERENCE
"ifOperStatus from IF-MIB"
::= { jnxPPPoESummary 5 }
jnxPPPoESummaryMajorIfLowerLayerDown OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEmajor interfaces in the system with an
operational state of lowerLayerDown(7)."
REFERENCE
"ifOperStatus from IF-MIB"
::= { jnxPPPoESummary 6 }
jnxPPPoESummaryMajorIfNotPresent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEmajor interfaces in the system with an
operational state of notPresent(6)."
REFERENCE
"ifOperStatus from IF-MIB"
::= { jnxPPPoESummary 7 }
jnxPPPoESummarySubInterfaceCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEsubinterfaces configured in the system."
::= { jnxPPPoESummary 8 }
jnxPPPoESummarySubIfAdminUp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEsubinterfaces in the system that are
administratively configured to up(1)."
REFERENCE
"ifAdminStatus from IF-MIB"
::= { jnxPPPoESummary 9 }
jnxPPPoESummarySubIfAdminDown OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEsubinterfaces in the system that are
administrateively configued to down(2)."
REFERENCE
"ifAdminStatus from IF-MIB"
::= { jnxPPPoESummary 10 }
jnxPPPoESummarySubIfOperUp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEsubinterfaces in the system with an
operational state of up(1)."
REFERENCE
"ifOperStatus from IF-MIB"
::= { jnxPPPoESummary 11 }
jnxPPPoESummarySubIfOperDown OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEsubinterfaces in the system with an
operational state of down(2)."
REFERENCE
"ifOperStatus from IF-MIB"
::= { jnxPPPoESummary 12 }
jnxPPPoESummarySubIfLowerLayerDown OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEsubinterfaces in the system with an
operational state of lowerLayerDown(7)."
REFERENCE
"ifOperStatus from IF-MIB"
::= { jnxPPPoESummary 13 }
jnxPPPoESummarySubIfNotPresent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of PPPoEsubinterfaces in the system with an
operational state of notPresent(6)."
REFERENCE
"ifOperStatus from IF-MIB"
::= { jnxPPPoESummary 14 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notifications
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- No notifications are defined in this MIB. Placeholders follow.
-- jnxPPPoETrapControl OBJECT IDENTIFIER ::= { jnxPPPoEMIB 2 }
-- jnxPPPoETraps OBJECT IDENTIFIER ::= { jnxPPPoEMIB 3 }
-- jnxPPPoETrapPrefix OBJECT IDENTIFIER ::= { jnxPPPoETraps 0 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
jnxPPPoEConformance OBJECT IDENTIFIER ::= { jnxPPPoEMIB 4 }
jnxPPPoECompliances OBJECT IDENTIFIER ::= { jnxPPPoEConformance 1 }
jnxPPPoEGroups OBJECT IDENTIFIER ::= { jnxPPPoEConformance 2 }
END
|