forked from librenms/librenms-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALTIGA-SESSION-STATS-MIB
2093 lines (1904 loc) · 71 KB
/
ALTIGA-SESSION-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-SESSION-STATS-MIB.my: Altiga Session Statistics MIB.
-- *
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
-- *
-- * Copyright (c) 2002, 2003, 2005 by Cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
ALTIGA-SESSION-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Counter32, Unsigned32, Gauge32, TimeTicks
FROM SNMPv2-SMI
RowStatus, DisplayString, MacAddress, TEXTUAL-CONVENTION
FROM SNMPv2-TC
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
alStatsSession, alSessionGroup
FROM ALTIGA-MIB
alSessionMibModule
FROM ALTIGA-GLOBAL-REG;
altigaSessionStatsMibModule MODULE-IDENTITY
LAST-UPDATED "200501260000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-cvpn3000@cisco.com"
DESCRIPTION
"The Altiga Session Statistics MIB models counters and objects that are
of management interest for sessions.
Acronyms
The following acronyms are used in this document:
MIB: Management Information Base
ACS: Access Control Server
"
REVISION "200501260000Z"
DESCRIPTION
"Added NAC objects alActiveNacAcceptedSessions,
alTotalNacAcceptedSessions.
alActiveNacRejectedSessions,
alTotalNacRejectedSessions.
alActiveNacExemptedSessions,
alTotalNacExemptedSessions.
alActiveNacNonresponsiveSessions,
alTotalNacNonresponsiveSessions.
alActiveNacHoldoffSessions,
alTotalNacHoldoffSessions.
alActiveNacDisabledSessions,
alTotalNacDisabledSessions.
alActiveSessionNacResult,
alActiveSessionSubEntryNacRevalTimer.
alActiveSessionSubEntryNacTimetoReval,
alActiveSessionSubEntryNacSqTimer.
alActiveSessionSubEntryNacSessionAge,
alActiveSessionSubEntryNacHoldTimer,
alActiveSessionSubEntryNacPosture.
alActiveSessionSubEntryNacRedirectUrl."
REVISION "200309090000Z"
DESCRIPTION
"Added new enum value to SessionProtocol and EncryptionAlgorithm.
Added alActiveSessionMaxWebVpnUsers and alWeightedSessionCount objects"
REVISION "200303170000Z"
DESCRIPTION
"Added alActiveSessionFilterId object"
REVISION "200209051300Z"
DESCRIPTION
"Added module compliance."
REVISION "200207100000Z"
DESCRIPTION
"Updated with new header"
::= { alSessionMibModule 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- MIB Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
alStatsSessionGlobal OBJECT IDENTIFIER ::= { alStatsSession 1 }
SessionProtocol ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Session Protocol for Active Sessions.
As noted in the comments below, some values
will not be seen as a subentry, and others
will not be seen as an entry.
httpsTunnel - SSL Tunnel Client session"
SYNTAX INTEGER {
pptp(1),
l2tp(2),
ipsec(3), -- A subentry SA or Remote Access
http(4), -- Not a subentry
ftp(5), -- Not a subentry
telnet(6), -- Not a subentry
snmp(7), -- Not a subentry
tftp(8), -- Not a subentry
console(9), -- Not a subentry
debugTelnet(10), -- Not a subentry
debugConsole(11), -- Not a subentry
other(12),
ike(13), -- Not an entry
l2tpOverIpSec(14), -- Not a subentry
ipsecLanToLan(15), -- Not a subentry
ipsecOverUdp(16),
ssh(17), -- Not a subentry
vcaLanToLan(18),
ipsecOverTcp(19),
pppoe(20), -- Not a subentry
ipsecOverNatT(21), -- Not a subentry
ipsecLan2LanOverNatT(22), -- Not a subentry
l2tpOverIpsecOverNatT(23),
userHttps(24),
pop3s(25),
imap4s(26),
smtps(27),
httpsTunnel(28)
}
EncryptionAlgorithm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Encryption Algorithm for Active Sessions."
SYNTAX INTEGER {
none(1),
des56(2),
des40(3),
des168(4),
rc4Stateless40(5),
rc4Statefull40(6),
rc4Stateless128(7),
rc4Statefull128(8),
aes128(9),
aes192(10),
aes256(11),
sslv3(64),
sslv3des56(66), -- +64
sslv3des168(68), -- +64
sslv3rc4Statefull128(72), -- +64
tlsv1(128),
tlsv1des56(130), -- +128
tlsv1des168(132), -- +128
tlsv1rc4Statefull128(136) -- +128
}
CompressionAlgorithm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Compression Algorithm for Active Sessions."
SYNTAX INTEGER {
none(0),
lzs(1),
deflate(2),
lz(3) -- MPPC
}
NacResult ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"NAC result for remote access IPsec sessions.
unknown - Posture Validation (authentication of NAC credentials) result none.
accepted - Access-Accept received from ACS.
rejected - Access-Reject received from ACS.
exempted - Exempted from Posture Validation.
nonResponsive - No response to Posture Validation requests.
notApplicable - NAC is disabled.
holdoff - NAC session in Hold-off state."
SYNTAX INTEGER {
unknown(0),
accepted(1),
rejected(2),
exempted(3),
nonResponsive(4),
notApplicable(5),
holdoff(6)
}
alActiveSessionCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active sessions."
::= { alStatsSessionGlobal 1 }
alTotalSessionCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of sessions since the device booted."
::= { alStatsSessionGlobal 2 }
alActiveSessionLastUpdate OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last time the summary stats were updated."
::= { alStatsSessionGlobal 3 }
alActiveSessionMaxUsers OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of user sessions allowed."
::= { alStatsSessionGlobal 4 }
alActiveSessionGroupIdLock OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group id lock for top 10 list."
::= { alStatsSessionGlobal 5 }
alMaxSessionCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest number of sessions since the device booted."
::= { alStatsSessionGlobal 6 }
alActiveLanToLanSessionCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active LAN-to-LAN sessions."
::= { alStatsSessionGlobal 7 }
alActiveManagementSessionCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active management sessions."
::= { alStatsSessionGlobal 8 }
alActiveRemoteAccessSessionCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active Remote Access sessions."
::= { alStatsSessionGlobal 9 }
alActiveSessionMaxWebVpnUsers OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of WebVPN user sessions allowed."
::= { alStatsSessionGlobal 10 }
alWeightedSessionCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The weighted number of sessions."
::= { alStatsSessionGlobal 11 }
alActiveNacAcceptedSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active
Access-Accepted NAC sessions."
::= { alStatsSessionGlobal 12 }
alTotalNacAcceptedSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Access-Accepted NAC
sessions since the device booted."
::= { alStatsSessionGlobal 13 }
alActiveNacRejectedSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active
Access-Rejected NAC sessions."
::= { alStatsSessionGlobal 14 }
alTotalNacRejectedSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Access-Rejected NAC
sessions since the device booted."
::= { alStatsSessionGlobal 15 }
alActiveNacExemptedSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active PV exempt NAC sessions."
::= { alStatsSessionGlobal 16 }
alTotalNacExemptedSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of PV exempt NAC sessions since the device booted."
::= { alStatsSessionGlobal 17 }
alActiveNacNonresponsiveSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active
non-responsive NAC sessions."
::= { alStatsSessionGlobal 18 }
alTotalNacNonresponsiveSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of non-responsive NAC
sessions since the device booted."
::= { alStatsSessionGlobal 19 }
alActiveNacDisabledSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active
sessions not subjected to NAC."
::= { alStatsSessionGlobal 20 }
alTotalNacDisabledSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of sessions not subjected
to NAC since the device booted."
::= { alStatsSessionGlobal 21 }
alActiveNacHoldoffSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of sessions currently in
Hold-off state."
::= { alStatsSessionGlobal 22 }
alTotalNacHoldoffSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of sessions placed in Hold-off
state since the device booted."
::= { alStatsSessionGlobal 23 }
alActiveSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlActiveSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of active sessions."
::= { alStatsSession 2 }
alActiveSessionEntry OBJECT-TYPE
SYNTAX AlActiveSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alActiveSessionTable."
INDEX { alActiveSessionIndex }
::= { alActiveSessionTable 1 }
AlActiveSessionEntry ::= SEQUENCE {
alActiveSessionRowStatus RowStatus,
alActiveSessionIndex Integer32,
alActiveSessionUserName DisplayString,
alActiveSessionIpAddress IpAddress,
alActiveSessionProtocol SessionProtocol,
alActiveSessionEncrType EncryptionAlgorithm,
alActiveSessionStartTime TimeTicks,
alActiveSessionConnectTime Unsigned32,
alActiveSessionOctetsSent Counter32,
alActiveSessionOctetsRcvd Counter32,
alActiveSessionSepId Integer32,
alActiveSessionGroupName DisplayString,
alActiveSessionGroupId Integer32,
alActiveSessionPublicIpAddress IpAddress,
alActiveSessionTopTenData Gauge32,
alActiveSessionLoginTime Unsigned32,
alActiveSessionOS DisplayString,
alActiveSessionVersion DisplayString,
alActiveSessionFilterId Integer32,
alActiveSessionNacResult NacResult
}
alActiveSessionRowStatus 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."
::= { alActiveSessionEntry 1 }
alActiveSessionIndex OBJECT-TYPE
SYNTAX Integer32(1..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of this session."
::= { alActiveSessionEntry 2 }
alActiveSessionUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The username used to authenticate this session."
::= { alActiveSessionEntry 3 }
alActiveSessionIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peer IP address of this session. For a Remote Access
session, this is the assigned IP address. For LAN-to-LAN,
this is the peer VPN device. For management, this is the
IP address of the management machine."
::= { alActiveSessionEntry 4 }
alActiveSessionProtocol OBJECT-TYPE
SYNTAX SessionProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol used for this session."
::= { alActiveSessionEntry 5 }
alActiveSessionEncrType OBJECT-TYPE
SYNTAX EncryptionAlgorithm
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used on this session."
::= { alActiveSessionEntry 6 }
alActiveSessionStartTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this session was established."
::= { alActiveSessionEntry 7 }
alActiveSessionConnectTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total amount of time, in seconds that this session has
been established."
::= { alActiveSessionEntry 8 }
alActiveSessionOctetsSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted over this session."
::= { alActiveSessionEntry 9 }
alActiveSessionOctetsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received on this session."
::= { alActiveSessionEntry 10 }
alActiveSessionSepId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SEP module assigned to this session."
::= { alActiveSessionEntry 11 }
alActiveSessionGroupName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The groupname used to establish this session."
::= { alActiveSessionEntry 12 }
alActiveSessionGroupId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group id assigned to this session."
::= { alActiveSessionEntry 13 }
alActiveSessionPublicIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The public peer IP address of this Remote Access session.
Not used for administrative or LAN-to-LAN sessions."
::= { alActiveSessionEntry 14 }
alActiveSessionTopTenData OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Placeholder for the data used to sort the top ten lists."
::= { alActiveSessionEntry 15 }
alActiveSessionLoginTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"time_t value of the concentrator when the session started."
::= { alActiveSessionEntry 16 }
alActiveSessionOS OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"User operating system type."
::= { alActiveSessionEntry 17 }
alActiveSessionVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"User application version."
::= { alActiveSessionEntry 18 }
alActiveSessionFilterId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Filter ID applied to the user Session."
::= { alActiveSessionEntry 19 }
alActiveSessionNacResult OBJECT-TYPE
SYNTAX NacResult
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The NAC result for the remote access IPsec session
for which the SessionProtocol is ipsec, l2tpOverIpsec,
ipsecOverUdp, ipsecOverTcp, ipsecOverNatT or l2tpOverIpsecOverNatT."
::= { alActiveSessionEntry 20 }
alActiveSessionThroughputTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlActiveSessionThroughputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Top ten list of throughput users."
::= { alStatsSession 3 }
alActiveSessionThroughputEntry OBJECT-TYPE
SYNTAX AlActiveSessionThroughputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alActiveSessionThroughputTable."
INDEX { alActiveSessionThroughputIndex }
::= { alActiveSessionThroughputTable 1 }
AlActiveSessionThroughputEntry ::= SEQUENCE {
alActiveSessionThroughputRowStatus RowStatus,
alActiveSessionThroughputIndex Integer32,
alActiveSessionThroughputUserName DisplayString,
alActiveSessionThroughputIpAddress IpAddress,
alActiveSessionThroughputProtocol SessionProtocol,
alActiveSessionThroughputEncrType EncryptionAlgorithm,
alActiveSessionThroughputStartTime TimeTicks,
alActiveSessionThroughputConnectTime Counter32,
alActiveSessionThroughputOctetsSent Counter32,
alActiveSessionThroughputOctetsRcvd Counter32,
alActiveSessionThroughputSepId Integer32,
alActiveSessionThroughputGroupName DisplayString,
alActiveSessionThroughputGroupId Integer32,
alActiveSessionThroughputPublicIpAddress IpAddress,
alActiveSessionThroughputTopTenData Gauge32,
alActiveSessionThroughputLoginTime Unsigned32
}
alActiveSessionThroughputRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this row."
::= { alActiveSessionThroughputEntry 1 }
alActiveSessionThroughputIndex OBJECT-TYPE
SYNTAX Integer32(1..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of this session."
::= { alActiveSessionThroughputEntry 2 }
alActiveSessionThroughputUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The username used to authenticate this session."
::= { alActiveSessionThroughputEntry 3 }
alActiveSessionThroughputIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peer IP address of this session."
::= { alActiveSessionThroughputEntry 4 }
alActiveSessionThroughputProtocol OBJECT-TYPE
SYNTAX SessionProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol used for this session."
::= { alActiveSessionThroughputEntry 5 }
alActiveSessionThroughputEncrType OBJECT-TYPE
SYNTAX EncryptionAlgorithm
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used on this session."
::= { alActiveSessionThroughputEntry 6 }
alActiveSessionThroughputStartTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this session was established."
::= { alActiveSessionThroughputEntry 7 }
alActiveSessionThroughputConnectTime OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total amount of time, in seconds that this session has
been established."
::= { alActiveSessionThroughputEntry 8 }
alActiveSessionThroughputOctetsSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted over this session."
::= { alActiveSessionThroughputEntry 9 }
alActiveSessionThroughputOctetsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received on this session."
::= { alActiveSessionThroughputEntry 10 }
alActiveSessionThroughputSepId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SEP module assigned to this session."
::= { alActiveSessionThroughputEntry 11 }
alActiveSessionThroughputGroupName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The groupname used to establish this session."
::= { alActiveSessionThroughputEntry 12 }
alActiveSessionThroughputGroupId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group id assigned to this session."
::= { alActiveSessionThroughputEntry 13 }
alActiveSessionThroughputPublicIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The public peer IP address of this Remote Access session.
Not used for administrative or LAN-to-LAN sessions."
::= { alActiveSessionThroughputEntry 14 }
alActiveSessionThroughputTopTenData OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Placeholder for the data used to sort the top ten lists."
::= { alActiveSessionThroughputEntry 15 }
alActiveSessionThroughputLoginTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"time_t value of the concentrator when the session started."
::= { alActiveSessionThroughputEntry 16 }
alActiveSessionDataTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlActiveSessionDataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Top ten list of data users."
::= { alStatsSession 4 }
alActiveSessionDataEntry OBJECT-TYPE
SYNTAX AlActiveSessionDataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alActiveSessionDataTable."
INDEX { alActiveSessionDataIndex }
::= { alActiveSessionDataTable 1 }
AlActiveSessionDataEntry ::= SEQUENCE {
alActiveSessionDataRowStatus RowStatus,
alActiveSessionDataIndex Integer32,
alActiveSessionDataUserName DisplayString,
alActiveSessionDataIpAddress IpAddress,
alActiveSessionDataProtocol SessionProtocol,
alActiveSessionDataEncrType EncryptionAlgorithm,
alActiveSessionDataStartTime TimeTicks,
alActiveSessionDataConnectTime Counter32,
alActiveSessionDataOctetsSent Counter32,
alActiveSessionDataOctetsRcvd Counter32,
alActiveSessionDataSepId Integer32,
alActiveSessionDataGroupName DisplayString,
alActiveSessionDataGroupId Integer32,
alActiveSessionDataPublicIpAddress IpAddress,
alActiveSessionDataTopTenData Gauge32,
alActiveSessionDataLoginTime Unsigned32
}
alActiveSessionDataRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this row."
::= { alActiveSessionDataEntry 1 }
alActiveSessionDataIndex OBJECT-TYPE
SYNTAX Integer32(1..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of this session."
::= { alActiveSessionDataEntry 2 }
alActiveSessionDataUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The username used to authenticate this session."
::= { alActiveSessionDataEntry 3 }
alActiveSessionDataIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peer IP address of this session."
::= { alActiveSessionDataEntry 4 }
alActiveSessionDataProtocol OBJECT-TYPE
SYNTAX SessionProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol used for this session."
::= { alActiveSessionDataEntry 5 }
alActiveSessionDataEncrType OBJECT-TYPE
SYNTAX EncryptionAlgorithm
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used on this session."
::= { alActiveSessionDataEntry 6 }
alActiveSessionDataStartTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this session was established."
::= { alActiveSessionDataEntry 7 }
alActiveSessionDataConnectTime OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total amount of time, in seconds that this session has
been established."
::= { alActiveSessionDataEntry 8 }
alActiveSessionDataOctetsSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted over this session."
::= { alActiveSessionDataEntry 9 }
alActiveSessionDataOctetsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received on this session."
::= { alActiveSessionDataEntry 10 }
alActiveSessionDataSepId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SEP module assigned to this session."
::= { alActiveSessionDataEntry 11 }
alActiveSessionDataGroupName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The groupname used to establish this session."
::= { alActiveSessionDataEntry 12 }
alActiveSessionDataGroupId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group id assigned to this session."
::= { alActiveSessionDataEntry 13 }
alActiveSessionDataPublicIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The public peer IP address of this Remote Access session.
Not used for administrative or LAN-to-LAN sessions."
::= { alActiveSessionDataEntry 14 }
alActiveSessionDataTopTenData OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Placeholder for the data used to sort the top ten lists."
::= { alActiveSessionDataEntry 15 }
alActiveSessionDataLoginTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"time_t value of the concentrator when the session started."
::= { alActiveSessionDataEntry 16 }
alActiveSessionDurationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlActiveSessionDurationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Top ten list of Duration users."
::= { alStatsSession 5 }
alActiveSessionDurationEntry OBJECT-TYPE
SYNTAX AlActiveSessionDurationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alActiveSessionDurationTable."
INDEX { alActiveSessionDurationIndex }
::= { alActiveSessionDurationTable 1 }
AlActiveSessionDurationEntry ::= SEQUENCE {
alActiveSessionDurationRowStatus RowStatus,
alActiveSessionDurationIndex Integer32,
alActiveSessionDurationUserName DisplayString,
alActiveSessionDurationIpAddress IpAddress,
alActiveSessionDurationProtocol SessionProtocol,
alActiveSessionDurationEncrType EncryptionAlgorithm,
alActiveSessionDurationStartTime TimeTicks,
alActiveSessionDurationConnectTime Counter32,
alActiveSessionDurationOctetsSent Counter32,
alActiveSessionDurationOctetsRcvd Counter32,
alActiveSessionDurationSepId Integer32,
alActiveSessionDurationGroupName DisplayString,
alActiveSessionDurationGroupId Integer32,
alActiveSessionDurationPublicIpAddress IpAddress,
alActiveSessionDurationTopTenData Gauge32,
alActiveSessionDurationLoginTime Unsigned32
}
alActiveSessionDurationRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this row."
::= { alActiveSessionDurationEntry 1 }
alActiveSessionDurationIndex OBJECT-TYPE
SYNTAX Integer32(1..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of this session."
::= { alActiveSessionDurationEntry 2 }
alActiveSessionDurationUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The username used to authenticate this session."
::= { alActiveSessionDurationEntry 3 }
alActiveSessionDurationIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peer IP address of this session."
::= { alActiveSessionDurationEntry 4 }
alActiveSessionDurationProtocol OBJECT-TYPE
SYNTAX SessionProtocol
MAX-ACCESS read-only
STATUS current