This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
ALTIGA-L2TP-STATS-MIB
1318 lines (1189 loc) · 43.7 KB
/
ALTIGA-L2TP-STATS-MIB
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
-- *------------------------------------------------------------------
-- * ALTIGA-L2TP-STATS-MIB.my: L2TP Statistics MIB.
-- *
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
-- *
-- * Copyright (c) 2002 by Cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
ALTIGA-L2TP-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, IpAddress,
Counter32, Gauge32
FROM SNMPv2-SMI
RowStatus, DisplayString, TruthValue
FROM SNMPv2-TC
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
alStatsL2tp, alL2tpGroup
FROM ALTIGA-MIB
alL2tpMibModule
FROM ALTIGA-GLOBAL-REG
InterfaceIndex
FROM IF-MIB;
altigaL2tpStatsMibModule MODULE-IDENTITY
LAST-UPDATED "200209051300Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"The Altiga L2TP Statistics MIB models counters and objects that are
of management interest for L2TP tunnels.
Acronyms
The following acronyms are used in this document:
AVP: Attribute/Value Pair
CLID: Calling Line ID
DNIS: Dialed Number Identification Service
L2TP: Layer 2 Tunnel Protocol
LAC: L2TP Access Concentrator
LNS: L2TP Network Server
MIB: Management Information Base
RWS: Receive Window Size
"
REVISION "200209051300Z"
DESCRIPTION
"Added module compliance."
REVISION "200207100000Z"
DESCRIPTION
"Updated with new header"
::= { alL2tpMibModule 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- MIB Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
alStatsL2tpGlobal OBJECT IDENTIFIER ::= { alStatsL2tp 1 }
alL2tpStatsLocalProtVers OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the protocol version and
revision of the local implementation. The
first octet contains the protocol version. The
second octet contains the protocol revision."
::= { alStatsL2tpGlobal 1 }
alL2tpStatsVendorName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the Vendor name."
::= { alStatsL2tpGlobal 2 }
alL2tpStatsFirmwareRev OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object defines the firmware revision."
::= { alStatsL2tpGlobal 3 }
alL2tpStatsTotalTunnels OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the total number of tunnels
that have successfully reached the established
state."
::= { alStatsL2tpGlobal 4 }
alL2tpStatsFailedTunnels OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of tunnels that
failed to reach the established state."
::= { alStatsL2tpGlobal 5 }
alL2tpStatsFailedAuthentications OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of failed tunnel
connection attempts because the tunnel peer
failed authentication."
::= { alStatsL2tpGlobal 6 }
alL2tpStatsActiveTunnels OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of tunnels that
are currently active."
::= { alStatsL2tpGlobal 7 }
alL2tpStatsMaxTunnels OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of simultaneously active L2TP tunnels
since the system was booted."
::= { alStatsL2tpGlobal 8 }
alL2tpStatsTotalSessions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the total number of sessions
that have successfully reached the established state."
::= { alStatsL2tpGlobal 9 }
alL2tpStatsFailedSessions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of sessions that
failed to reach the established state for this
tunnel domain."
::= { alStatsL2tpGlobal 10 }
alL2tpStatsActiveSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of sessions that
are currently active."
::= { alStatsL2tpGlobal 11 }
alL2tpStatsMaxSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of simultaneously active L2TP sessions
since the system was booted."
::= { alStatsL2tpGlobal 12 }
alL2tpStatsControlRecvOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of control channel
octets received."
::= { alStatsL2tpGlobal 13 }
alL2tpStatsControlRecvPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of control packets
received."
::= { alStatsL2tpGlobal 14 }
alL2tpStatsControlRecvDiscards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of control packets
received that were discarded."
::= { alStatsL2tpGlobal 15 }
alL2tpStatsControlSendOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of control channel
octets that were transmitted to tunnel endpoints."
::= { alStatsL2tpGlobal 16 }
alL2tpStatsControlSendPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of control packets
that were transmitted to tunnel endpoints."
::= { alStatsL2tpGlobal 17 }
alL2tpStatsPayloadRecvOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of payload channel
octets that were received."
::= { alStatsL2tpGlobal 18 }
alL2tpStatsPayloadRecvPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of payload packets
that were received."
::= { alStatsL2tpGlobal 19 }
alL2tpStatsPayloadRecvDiscards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of received payload
packets that were discarded."
::= { alStatsL2tpGlobal 20 }
alL2tpStatsPayloadSendOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of payload channel
octets that were transmitted to tunnel peers."
::= { alStatsL2tpGlobal 21 }
alL2tpStatsPayloadSendPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of payload packets
that were transmitted to tunnel peers."
::= { alStatsL2tpGlobal 22 }
alL2tpStatsTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlL2tpStatsTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The L2TP tunnel status and statistics table."
::= { alStatsL2tp 2 }
alL2tpStatsTunnelEntry OBJECT-TYPE
SYNTAX AlL2tpStatsTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alL2tpStatsTunnelTable."
INDEX { alL2tpStatsTunnelPeerIpAddr }
::= { alL2tpStatsTunnelTable 1 }
AlL2tpStatsTunnelEntry ::= SEQUENCE {
alL2tpStatsTunnelRowStatus RowStatus,
alL2tpStatsTunnelPeerIpAddr IpAddress,
alL2tpStatsTunnelLocalTID Integer32,
alL2tpStatsTunnelRemoteTID Integer32,
alL2tpStatsTunnelState INTEGER,
alL2tpStatsTunnelInitiated INTEGER,
alL2tpStatsTunnelRemoteHostName DisplayString,
alL2tpStatsTunnelRemoteVendorName DisplayString,
alL2tpStatsTunnelRemoteFirmwareRevision OCTET STRING,
alL2tpStatsTunnelRemoteProtocolVersion OCTET STRING,
alL2tpStatsTunnelInitialRemoteRWS Integer32,
alL2tpStatsTunnelBearerCapabilities INTEGER,
alL2tpStatsTunnelFramingCapabilities INTEGER,
alL2tpStatsTunnelControlRecvPackets Counter32,
alL2tpStatsTunnelControlRecvDiscards Counter32,
alL2tpStatsTunnelControlRecvZLB Counter32,
alL2tpStatsTunnelControlOutOfSequence Counter32,
alL2tpStatsTunnelControlOutOfWindow Counter32,
alL2tpStatsTunnelControlSendPackets Counter32,
alL2tpStatsTunnelControlSendZLB Counter32,
alL2tpStatsTunnelControlAckTimeouts Counter32,
alL2tpStatsTunnelCurrentRemoteRWS Gauge32,
alL2tpStatsTunnelSendSeq Integer32,
alL2tpStatsTunnelSendSeqAck Integer32,
alL2tpStatsTunnelRecvSeq Integer32,
alL2tpStatsTunnelRecvSeqAck Integer32,
alL2tpStatsTunnelTotalSessions Counter32,
alL2tpStatsTunnelFailedSessions Counter32,
alL2tpStatsTunnelActiveSessions Gauge32,
alL2tpStatsTunnelLastResultCode Integer32,
alL2tpStatsTunnelLastErrorCode Integer32,
alL2tpStatsTunnelLastErrorMessage DisplayString
}
alL2tpStatsTunnelRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of this row. Used to terminate the tunnel,
cannot be used to create a tunnel."
::= { alL2tpStatsTunnelEntry 1 }
alL2tpStatsTunnelPeerIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peer's IP address for this tunnel."
::= { alL2tpStatsTunnelEntry 2 }
alL2tpStatsTunnelLocalTID OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the local tunnel Identifier."
::= { alL2tpStatsTunnelEntry 3 }
alL2tpStatsTunnelRemoteTID OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the remote tunnel Identifier."
::= { alL2tpStatsTunnelEntry 4 }
alL2tpStatsTunnelState OBJECT-TYPE
SYNTAX INTEGER {
tunnelIdle(1),
tunnelConnecting(2),
tunnelEstablished(3),
tunnelDisconnecting(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains the current state of the control
tunnel."
::= { alL2tpStatsTunnelEntry 5 }
alL2tpStatsTunnelInitiated OBJECT-TYPE
SYNTAX INTEGER {
locally(1),
remotely(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the tunnel was
initiated locally or by the remote tunnel peer."
::= { alL2tpStatsTunnelEntry 6 }
alL2tpStatsTunnelRemoteHostName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the host name as discovered
during the tunnel establishment phase (via the Host
Name AVP) of the L2TP peer. If the tunnel is idle
this object should maintain its value from the last
time it was connected."
::= { alL2tpStatsTunnelEntry 7 }
alL2tpStatsTunnelRemoteVendorName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the vendor name of the peer's
L2TP implementation. If the tunnel is idle this
object should maintain its value from the last time
it was connected."
::= { alL2tpStatsTunnelEntry 8 }
alL2tpStatsTunnelRemoteFirmwareRevision OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the tunnel peer's firmware
revision number. If the tunnel is idle this object
should maintain its value from the last time it
was connected."
::= { alL2tpStatsTunnelEntry 9 }
alL2tpStatsTunnelRemoteProtocolVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the protocol version and
revision of the tunnel peers implementation. The
first octet contains the protocol version. The
second octet contains the protocol revision."
::= { alL2tpStatsTunnelEntry 10 }
alL2tpStatsTunnelInitialRemoteRWS OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the initial remote peer's
receive window size as indicated by the tunnel peer
(in the RWS AVP) during the tunnel establishment
phase. If the tunnel is idle this object should
maintain its value from the last time it was
connected."
::= { alL2tpStatsTunnelEntry 11 }
alL2tpStatsTunnelBearerCapabilities OBJECT-TYPE
SYNTAX INTEGER {
sync(1),
async(2),
syncAsync(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the Bearer Capabilities of
the tunnel peer. If the tunnel is idle this object
should maintain its value from the last time it was
connected."
::= { alL2tpStatsTunnelEntry 12 }
alL2tpStatsTunnelFramingCapabilities OBJECT-TYPE
SYNTAX INTEGER {
digital(1),
analog(2),
digitalAnalog(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the Framing Capabilities of
the tunnel peer. If the tunnel is idle this object
should maintain its value from the last time it was
connected."
::= { alL2tpStatsTunnelEntry 13 }
alL2tpStatsTunnelControlRecvPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of control packets
received on the tunnel."
::= { alL2tpStatsTunnelEntry 14 }
alL2tpStatsTunnelControlRecvDiscards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the number of received payload
packets that were discarded."
::= { alL2tpStatsTunnelEntry 15 }
alL2tpStatsTunnelControlRecvZLB OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns a count of the number of Zero
Length Body control packet acknowledgement packets
that were received."
::= { alL2tpStatsTunnelEntry 16 }
alL2tpStatsTunnelControlOutOfSequence OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns a count of the number of
control packets that were not received in the
correct order (as per the sequence number) on
this tunnel."
::= { alL2tpStatsTunnelEntry 17 }
alL2tpStatsTunnelControlOutOfWindow OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of control
packets that were received outside of the
offered receive window. It is implementation
specific as to whether these packets are queued
or discarded."
::= { alL2tpStatsTunnelEntry 18 }
alL2tpStatsTunnelControlSendPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of control
packets that were transmitted to the tunnel
peer."
::= { alL2tpStatsTunnelEntry 19 }
alL2tpStatsTunnelControlSendZLB OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the number of Zero Length
Body control packets that were transmitted to
the tunnel peer."
::= { alL2tpStatsTunnelEntry 20 }
alL2tpStatsTunnelControlAckTimeouts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns a count of the number of
control packet timeouts due to the lack of a
timely acknowledgement from the tunnel peer."
::= { alL2tpStatsTunnelEntry 21 }
alL2tpStatsTunnelCurrentRemoteRWS OBJECT-TYPE
SYNTAX Gauge32 (0..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the current remote receive
window size as determined by the local flow
control mechanism employed."
::= { alL2tpStatsTunnelEntry 22 }
alL2tpStatsTunnelSendSeq OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the next send sequence number
for the control channel."
::= { alL2tpStatsTunnelEntry 23 }
alL2tpStatsTunnelSendSeqAck OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the send sequence number that
the tunnel peer has acknowledged for the control
channel. The flow control state can be determined
by subtracting the l2tpTunnelStatsSendSeq from
alL2tpStatsTunnelSendSeqAck and comparing this value
to l2tpTunnelStatsCurrentRemoteRWS."
::= { alL2tpStatsTunnelEntry 24 }
alL2tpStatsTunnelRecvSeq OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the next receive sequence
number expected to be received on this control
channel."
::= { alL2tpStatsTunnelEntry 25 }
alL2tpStatsTunnelRecvSeqAck OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the last receive sequence
number that was acknowledged back to the tunnel
peer for the control channel."
::= { alL2tpStatsTunnelEntry 26 }
alL2tpStatsTunnelTotalSessions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the total number of sessions
that this tunnel has successfully connected through
to its tunnel peer since this tunnel was created."
::= { alL2tpStatsTunnelEntry 27 }
alL2tpStatsTunnelFailedSessions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the total number of sessions
that were initiated but failed to reach the
established phase."
::= { alL2tpStatsTunnelEntry 28 }
alL2tpStatsTunnelActiveSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the total number of sessions
for this tunnel."
::= { alL2tpStatsTunnelEntry 29 }
alL2tpStatsTunnelLastResultCode OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the last value of the result
code as described in the Result Code AVP which
caused the tunnel to disconnect."
::= { alL2tpStatsTunnelEntry 30 }
alL2tpStatsTunnelLastErrorCode OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the last value of the error
code as described in the Result Code AVP which
caused the tunnel to disconnect."
::= { alL2tpStatsTunnelEntry 31 }
alL2tpStatsTunnelLastErrorMessage OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the last value of the optional
message as described in the Result Code AVP which
caused the tunnel to disconnect."
::= { alL2tpStatsTunnelEntry 32 }
alL2tpStatsSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlL2tpStatsSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The L2TP session status and statistics table."
::= { alStatsL2tp 3 }
alL2tpStatsSessionEntry OBJECT-TYPE
SYNTAX AlL2tpStatsSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An L2TP session interface stats entry."
INDEX { alL2tpStatsSessionIfIndex }
::= { alL2tpStatsSessionTable 1 }
AlL2tpStatsSessionEntry ::= SEQUENCE {
alL2tpStatsSessionRowStatus RowStatus,
alL2tpStatsSessionIfIndex InterfaceIndex,
alL2tpStatsSessionTID Integer32,
alL2tpStatsSessionLocalCID Integer32,
alL2tpStatsSessionRemoteCID Integer32,
alL2tpStatsSessionUserName DisplayString,
alL2tpStatsSessionState INTEGER,
alL2tpStatsSessionCallType INTEGER,
alL2tpStatsSessionCallSerialNumber Unsigned32,
alL2tpStatsSessionTxConnectSpeed Integer32,
alL2tpStatsSessionRxConnectSpeed Integer32,
alL2tpStatsSessionCallBearerType INTEGER,
alL2tpStatsSessionFramingType INTEGER,
alL2tpStatsSessionPhysChanId Integer32,
alL2tpStatsSessionDNIS DisplayString,
alL2tpStatsSessionCLID DisplayString,
alL2tpStatsSessionSubAddress DisplayString,
alL2tpStatsSessionPrivateGroupID DisplayString,
alL2tpStatsSessionProxyLcp TruthValue,
alL2tpStatsSessionAuthMethod INTEGER,
alL2tpStatsSessionLocalRWS Integer32,
alL2tpStatsSessionRemoteInitialRWS Integer32,
alL2tpStatsSessionRemotePPD Integer32,
alL2tpStatsSessionSequencingState INTEGER,
alL2tpStatsSessionRecvOctets Counter32,
alL2tpStatsSessionRecvPackets Counter32,
alL2tpStatsSessionRecvDiscards Counter32,
alL2tpStatsSessionRecvZLB Counter32,
alL2tpStatsSessionOutSequence Counter32,
alL2tpStatsSessionOutOfWindow Counter32,
alL2tpStatsSessionSendOctets Counter32,
alL2tpStatsSessionSendPackets Counter32,
alL2tpStatsSessionSendZLB Counter32,
alL2tpStatsSessionAckTimeouts Counter32,
alL2tpStatsSessionReassemblyTimeouts Counter32,
alL2tpStatsSessionCurrentRemoteRWS Gauge32,
alL2tpStatsSessionSendSeq Integer32,
alL2tpStatsSessionSendSeqAck Integer32,
alL2tpStatsSessionSendSeqResets Counter32,
alL2tpStatsSessionRecvSeq Integer32,
alL2tpStatsSessionRecvSeqAck Integer32,
alL2tpStatsSessionRecvSeqResets Counter32,
alL2tpStatsSessionTunnelPeerIpAddr IpAddress
}
alL2tpStatsSessionRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of this row. Used to terminate the session,
cannot be used to create a session."
::= { alL2tpStatsSessionEntry 1 }
alL2tpStatsSessionIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value for this object is equal to the value
of ifIndex of the Interfaces MIB for session
interfaces of type L2TP."
::= { alL2tpStatsSessionEntry 2 }
alL2tpStatsSessionTID OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the control channel tunnel
identifier for this session."
::= { alL2tpStatsSessionEntry 3 }
alL2tpStatsSessionLocalCID OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the local call identifier
for the session."
::= { alL2tpStatsSessionEntry 4 }
alL2tpStatsSessionRemoteCID OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the remote call identifier
for the session."
::= { alL2tpStatsSessionEntry 5 }
alL2tpStatsSessionUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the peer session name on
this interface. This is typically the login name
of the remote user. If the user name is unknown to
the local tunnel peer then this object will contain
a null string."
::= { alL2tpStatsSessionEntry 6 }
alL2tpStatsSessionState OBJECT-TYPE
SYNTAX INTEGER {
sessionIdle(1),
sessionConnecting(2),
sessionEstablished(3),
sessionDisconnecting(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the current state of the
session."
::= { alL2tpStatsSessionEntry 7 }
alL2tpStatsSessionCallType OBJECT-TYPE
SYNTAX INTEGER {
lacIncoming(1),
lnsIncoming(2),
lacOutgoing(3),
lnsOutgoing(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of call and the
role this tunnel peer is providing for this
session. For example, lacIncoming(1) indicates
that this tunnel peer is acting as a LAC and
generated a Incoming-Call-Request to the tunnel
peer (the LNS). Note that tunnel peers can be
both LAC and LNS simultaneously."
::= { alL2tpStatsSessionEntry 8 }
alL2tpStatsSessionCallSerialNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the serial number that has
been assigned to this session."
::= { alL2tpStatsSessionEntry 9 }
alL2tpStatsSessionTxConnectSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the last known transmit
baud rate for this session."
::= { alL2tpStatsSessionEntry 10 }
alL2tpStatsSessionRxConnectSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the last known receive
baud rate for this session."
::= { alL2tpStatsSessionEntry 11 }
alL2tpStatsSessionCallBearerType OBJECT-TYPE
SYNTAX INTEGER {
digital(1),
analog(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the bearer type of this
session."
::= { alL2tpStatsSessionEntry 12 }
alL2tpStatsSessionFramingType OBJECT-TYPE
SYNTAX INTEGER {
asynchronous(1),
synchronous(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the framing type of this
session."
::= { alL2tpStatsSessionEntry 13 }
alL2tpStatsSessionPhysChanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the physical channel
identifier for the session."
::= { alL2tpStatsSessionEntry 14 }
alL2tpStatsSessionDNIS OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the Dialed Number
Information String that the LAC obtained from
the network for the session. If no DNIS was
provided then a null string will be returned."
::= { alL2tpStatsSessionEntry 15 }
alL2tpStatsSessionCLID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the Calling Line ID
that the LAC obtained from the network for
the session. If no CLID was provided then a
null string will be returned."
::= { alL2tpStatsSessionEntry 16 }
alL2tpStatsSessionSubAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the Sub Address that
the LAC obtained from the network for the
session. If no Sub Address was provided then
a null string will be returned."
::= { alL2tpStatsSessionEntry 17 }
alL2tpStatsSessionPrivateGroupID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the Private Group
Identifier used for this tunneled session.
If no Private Group Identifier was provided
then a null string will be returned."
::= { alL2tpStatsSessionEntry 18 }
alL2tpStatsSessionProxyLcp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the LAC performed proxy LCP
for this session."
::= { alL2tpStatsSessionEntry 19 }
alL2tpStatsSessionAuthMethod OBJECT-TYPE
SYNTAX INTEGER {
none(1),
text(2),
pppChap(3),
pppPap(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the proxy authentication
method employed by the LAC for the session. If
l2tpSessionProxyLcp is false(2) this object should
not be interpreted."
::= { alL2tpStatsSessionEntry 20 }
alL2tpStatsSessionLocalRWS OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object returns the local send window size
for this session. If the value of the object
alL2tpStatsSessionSequencingState is none(1)
then this object should not be interpreted."
::= { alL2tpStatsSessionEntry 21 }
alL2tpStatsSessionRemoteInitialRWS OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object returns the initial remote send
window size for this session. If the value
of the object alL2tpStatsSessionSequencingState
is none(1) then this object should not be
interpreted."
::= { alL2tpStatsSessionEntry 22 }
alL2tpStatsSessionRemotePPD OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the Packet Processing Delay
for the session. If the value of the object
alL2tpStatsSessionSequencingState is none(1)
then this object should not be interpreted."
::= { alL2tpStatsSessionEntry 23 }
alL2tpStatsSessionSequencingState OBJECT-TYPE
SYNTAX INTEGER {
none(1),
remote(2),
local(3),
both(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object defines which tunnel peers have