-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-REMOTE-ACCESS-MONITOR-MIB.mib
1983 lines (1752 loc) · 56.5 KB
/
CISCO-REMOTE-ACCESS-MONITOR-MIB.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
-- * $Source$
-- *------------------------------------------------------------------
-- * CISCO-REMOTE-ACCESS-MONITOR-MIB.my: Cisco Remote Access MIB
-- *
-- * May 2003, S Ramakrishnan
-- *
-- * Copyright (c) 2003 by cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Counter32,
Counter64,
Gauge32,
Integer32,
Unsigned32,
zeroDotZero
FROM SNMPv2-SMI
TEXTUAL-CONVENTION,
TimeStamp,
TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoRemoteAccessMonitorMIB MODULE-IDENTITY
LAST-UPDATED "200402030000Z"
ORGANIZATION "Cisco Systems"
CONTACT-INFO
"
Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"
Acronyms and Definitions
The following acronyms and terms are used in this
document:
IPSec: Secure IP Protocol
VPN: Virtual Private Network
RAS: Remote Access Service
ISP: Internet Service Provider.
LAN: Local Area Network
Group: A collection of remote access users grouped
and managed together as a single entity for
administrative convenience.
Session: A Remote Access Session.
Overview of the MIB
This is a MIB Module for monitoring the structures in Virtual
Private Networks based remote access networks. The MIB seeks
to create a common model of Remote Access across implementations
of the service on layer 2 (PPTP, L2TP, L2F), layer 3 (IPsec) and
layer 4 (SSL) virtual private networks. The MIB defines counters
and objects of interest to performance/fault monitoring in a
way which is independent of the technology of the remote access
implementation.
MIB contains eight major groups of objects which are used
to manage Remote Access connections:
a) Remote Access capacity group
This section defines metrics to gauge the limits of
resources on this device which are critical to RAS
service.
b) Remote Access resource usage group
This section defines metrics to gauge the usage of
resources on this device which are critical to RAS
service service.
c) Current activity and performance of RAS service
This section defines metrics to gauge the current
remote access activity.
d) Remote Access Service failures
This section defines metrics to monitor session
failures and failures of the service itself, measured
at aggregate level, session level and group level.
e) Security violations in the Remote Access service
This section defines metrics which reflect the state
of remote access service of interest to Security
Operations staff in an enterprise.
f) Threshold group (allows definition of high water marks)
This section allows the management entity to define
thresholds to set high water marks on critical metrics.
g) Notifications
This section defines notifications to signal
significant events pertaining to the Remote Access
Service.
"
::= { ciscoMgmt 392 }
-- Tentative anchor under ciscoMgmt
-- +++++++++++++++++++++++++++++++++++++++++++++++++++
-- Local Textual Conventions
-- +++++++++++++++++++++++++++++++++++++++++++++++++++
RasProtocol ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The protocol immediately underlying the remote
access session.
The value 'other' has been listed to allow for the
MIB to be supported on proprietary protocols not
listed here.
"
SYNTAX INTEGER {
other(1),
ipsec(2),
l2tp(3),
l2tpoveripsec(4),
pptp(5),
l2f(6),
ssl(7)
}
UserAuthenMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The mechanism used to authenticate the user.
The value 'other' has been listed to allow for the
MIB to support proprietary authentication methods
not listed here.
"
SYNTAX INTEGER {
none(1),
other(2),
radius(3),
tacacsplus(4),
kerberos(5),
local(6),
ldap(7),
ntlm(8),
sdi(9)
}
UserAuthorMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The mechanism used to authorize the user.
The value 'other' has been listed to allow for the
MIB to support proprietary authorization mechanisms
not listed here.
"
SYNTAX INTEGER {
none(1),
other(2),
radius(3),
tacacsplus(4),
kerberos(5),
local(6),
ldap(7)
}
SessionEncrAlgo ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The encryption algorithm used to secure the remote
access session.
"
SYNTAX INTEGER {
none(1),
des(2),
des3(3),
rc4(4),
rc5(5),
idea(6),
cast(7),
blowfish(8),
aes(9)
}
SessionAuthAlgo ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The authentication algorithm used by to perform
packet authentication in the remote access session.
The value 'other' has been listed to allow for the
MIB to support packet validation algorithms not
listed here.
"
SYNTAX INTEGER{
none(1),
other(2),
hmacMd5(3),
hmacSha(4)
}
SessionCompressionAlgo ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The compression algorithm used in the remote access
session.
The value 'other' has been listed to allow for the
MIB to support compression not listed here.
"
SYNTAX INTEGER{
none(1),
other(2),
lzs(3)
}
SessionStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The status of a remote access session.
initializing: the session is in the process
of being established
established : the session is established and
is ready to carry application
traffic. Sessions in this state
may also be referred to as
'active' sessions.
terminating : the session is in the process
of termination.
Objects of this type may be used to terminate an
established session by setting value of the object
to terminating(3).
Management entity may not write values initializing(1)
or established(2) onto objects of this type. Doing so
would cause the managed entity to return an error
condition.
"
SYNTAX INTEGER {
initializing(1),
established(2),
terminating(3)
}
SessionIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type used to index a remote access session."
SYNTAX Integer32 (1..2147483647)
FailureRecordIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type used to index failure records in the
failure archive."
SYNTAX Unsigned32 (1..4294967295)
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Remote Access MIB Object Groups
--
-- This MIB module contains the following groups:
-- 1) Remote Access capacity group
-- 2) Remote Access resource usage group
-- 3) Current activity and performance
-- 4) Failures
-- 5) Security violations
-- 6) Threshold group
-- 7) Notifications:
-- 7a) Controls
-- 7b) Notification definitions
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
ciscoRasMonitorMIBNotifs OBJECT IDENTIFIER
::= { ciscoRemoteAccessMonitorMIB 0}
ciscoRasMonitorMIBObjects OBJECT IDENTIFIER
::= {ciscoRemoteAccessMonitorMIB 1}
ciscoRasMonitorMIBConform OBJECT IDENTIFIER
::= { ciscoRemoteAccessMonitorMIB 2 }
crasCapacity OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 1 }
crasResourceUsage OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 2 }
crasActivity OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 3 }
crasFailures OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 4 }
crasSecurity OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 5 }
crasThresholds OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 6 }
crasNotifCntl OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 7 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access capacity group.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasMaxSessionsSupportable OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Sessions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of remote access sessions
that may be supported on this device.
If the device imposes no arbitrary limit on the
maximum number of sessions, it should return a
value of 0."
::= { crasCapacity 1 }
crasMaxUsersSupportable OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Users"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of remote access users
for whom Remote Access sessions may be supported on
this device.
If the device imposes no arbitrary limit on the
maximum number of users, it should return a
value of 0."
::= { crasCapacity 2 }
crasMaxGroupsSupportable OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Groups"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of remote access groups
that may be defined on this device. 'Group'
refers to a collection of users grouped together
for administrative convenience.
If the device imposes no arbitrary limit on
the maximum number of groups, it should return
a value of 0."
::= { crasCapacity 3 }
crasNumCryptoAccelerators OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Users"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of hardware crypto accelerators
which can be installed on this device to support
remote access sessions. 'cryptoaccelerator' denotes
a hardware/software entity which the managed entity
uses to offload some or all computations pertaining
to cryptographic operations.
If the device imposes no arbitrary limit on the
number of crypto accelerators to support Remote Access
function, it should return a value of 0."
::= { crasCapacity 4 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access resource usage group.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasGlobalBwUsage OBJECT-TYPE
SYNTAX Gauge32
UNITS "MBytes/second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average bandwidth used by all the active
remote access sessions."
::= { crasResourceUsage 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access activity usage group.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasNumSessions OBJECT-TYPE
SYNTAX Gauge32
UNITS "Sessions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active sessions.
A session is a connection terminating on the managed
entity which has been established to provide remote
access connectivity to a user. A session is said to be
'active' if it is ready to carry application traffic
between the user and the managed entity. A session which
is not active is defined to be 'dormant'.
"
::= { crasActivity 1 }
crasNumPrevSessions OBJECT-TYPE
SYNTAX Counter32
UNITS "Sessions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of remote access sessions which were
previously active but which where since terminated.
Measured since the last reboot of the device."
::= { crasActivity 2 }
crasNumUsers OBJECT-TYPE
SYNTAX Gauge32
UNITS "Users"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of users who have active sessions.
"
::= { crasActivity 3 }
crasNumGroups OBJECT-TYPE
SYNTAX Gauge32
UNITS "Groups"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of user groups whose members have
active sessions."
::= { crasActivity 4 }
crasGlobalInPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by all
currently and previously active remote access
sessions."
::= { crasActivity 5 }
crasGlobalOutPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted by all
currently and previously active remote access
sessions."
::= { crasActivity 6 }
crasGlobalInOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by all currently
and previously active remote access sessions.
This value is accumulated BEFORE determining whether
or not the packet should be decompressed.
"
::= { crasActivity 7 }
crasGlobalInDecompOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of decompressed octets received
by all current and previous remote access sessions.
This value is accumulated AFTER the packet is
decompressed. If compression is not being used,
this value will match the value of crasGlobalInOctets.
"
::= { crasActivity 8 }
crasGlobalOutOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted by all
currently and previously active remote access
sessions.
This value is accumulated AFTER determining
whether or not the packet should be compressed.
"
::= { crasActivity 9 }
crasGlobalOutUncompOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of uncompressed octets sent
by all current and previous remote access sessions.
This value is accumulated BEFORE the packet is
compressed. If compression is not being used, this
value will match the value of crasGlobalOutOctets.
"
::= { crasActivity 10 }
crasGlobalInDropPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets which were dropped
during receive processing by all currently and
previously active remote access sessions."
::= { crasActivity 11 }
crasGlobalOutDropPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets which were
dropped during receive processing by all
currently and previously active remote access
sessions."
::= { crasActivity 12 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access session table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF CrasSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists all the currently active sessions.
For each session, it lists the attributes (user,
group, protocol, security), statistics (packet and
octets) and status."
::= { crasActivity 21 }
crasSessionEntry OBJECT-TYPE
SYNTAX CrasSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains the attributes, statistics and
status of an active session."
INDEX { crasUsername,
crasSessionIndex}
::= { crasSessionTable 1}
CrasSessionEntry ::= SEQUENCE {
crasUsername SnmpAdminString,
crasGroup SnmpAdminString,
crasSessionIndex SessionIndex,
crasAuthenMethod UserAuthenMethod,
crasAuthorMethod UserAuthorMethod,
crasSessionDuration Counter32,
crasLocalAddressType InetAddressType,
crasLocalAddress InetAddress,
crasISPAddressType InetAddressType,
crasISPAddress InetAddress,
crasSessionProtocol RasProtocol,
crasProtocolElement OBJECT IDENTIFIER,
crasSessionEncryptionAlgo SessionEncrAlgo,
crasSessionPktAuthenAlgo SessionAuthAlgo,
crasSessionCompressionAlgo SessionCompressionAlgo,
crasHeartbeatInterval Unsigned32,
crasClientVendorString SnmpAdminString,
crasClientVersionString SnmpAdminString,
crasClientOSVendorString SnmpAdminString,
crasClientOSVersionString SnmpAdminString,
--
crasPrimWINSServerAddrType InetAddressType,
crasPrimWINSServer InetAddress,
crasSecWINSServerAddrType InetAddressType,
crasSecWINSServer InetAddress,
crasPrimDNSServerAddrType InetAddressType,
crasPrimDNSServer InetAddress,
crasSecDNSServerAddrType InetAddressType,
crasSecDNSServer InetAddress,
crasDHCPServerAddrType InetAddressType,
crasDHCPServer InetAddress,
--
crasSessionInPkts Counter64,
crasSessionOutPkts Counter64,
crasSessionInDropPkts Counter64,
crasSessionOutDropPkts Counter64,
crasSessionInOctets Counter64,
crasSessionOutOctets Counter64,
crasSessionState SessionStatus
--
}
crasUsername OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..128))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the user associated with this remote
access session."
::= { crasSessionEntry 1 }
crasGroup OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the user group to which this remote
access session belongs."
::= { crasSessionEntry 2 }
crasSessionIndex OBJECT-TYPE
SYNTAX SessionIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique index to distinguish between multiple
Remote Access Sessions associated with the same
user.
The value of crasSessionIndex must increase monotonically
till it wraps. An implementation may choose to wrap this
index before the value of 2147483647.
"
::= { crasSessionEntry 3 }
crasAuthenMethod OBJECT-TYPE
SYNTAX UserAuthenMethod
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The method used to authenticate the user prior to
establishing the session."
::= { crasSessionEntry 4 }
crasAuthorMethod OBJECT-TYPE
SYNTAX UserAuthorMethod
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The method used to authorize the user prior to
establishing the session."
::= { crasSessionEntry 5 }
crasSessionDuration OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds elapsed since this session
was established."
::= { crasSessionEntry 6 }
crasLocalAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address returned in 'crasLocalAddress'.
"
::= { crasSessionEntry 7 }
crasLocalAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address assigned to the client of this session
in the private network assigned by the managed entity."
::= { crasSessionEntry 8 }
crasISPAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address returned in 'crasISPAddress'.
"
::= { crasSessionEntry 9 }
crasISPAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the peer (client) assigned by the ISP.
This is the address of the client device in the public
network."
::= { crasSessionEntry 10 }
crasSessionProtocol OBJECT-TYPE
SYNTAX RasProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol underlying this remote access session."
::= { crasSessionEntry 11 }
crasProtocolElement OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to MIB definitions specific to the protocol
underlying corresponding to the session or tunnel
used to realized the remote access session corresponding
to this conceptual row.
For instance, if this remote access session is based on
IPsec, then this object must contain the complete
instance identifier of the IPsec tunnel corresponding
to this remote access session.
If no MIB definitions specific to the underlying
protocol are available, the value should be set to the
OBJECT IDENTIFIER { 0 0 }.
"
DEFVAL { zeroDotZero }
::= { crasSessionEntry 12 }
crasSessionEncryptionAlgo OBJECT-TYPE
SYNTAX SessionEncrAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The algorithm used by this remote access session to
encrypt its payload."
::= { crasSessionEntry 13 }
crasSessionPktAuthenAlgo OBJECT-TYPE
SYNTAX SessionAuthAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The algorithm used by this remote access session to
to validate packets."
::= { crasSessionEntry 14 }
crasSessionCompressionAlgo OBJECT-TYPE
SYNTAX SessionCompressionAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The algorithm used by this remote access session to
compress packets."
::= { crasSessionEntry 15 }
crasHeartbeatInterval OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
UNITS "Seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interval in seconds between two successive heartbeats
employed by this session. Value of 0 denotes that no
heartbeat is used."
::= { crasSessionEntry 16 }
crasClientVendorString OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The string identifying the vendor of the client
application initiating this Remote Access session."
::= { crasSessionEntry 17 }
crasClientVersionString OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The string identifying the version of the of the client
application initiating the Remote Access session.
This can be used by the administrator to identify which
users are running unsupported client versions."
::= { crasSessionEntry 18 }
crasClientOSVendorString OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The string identifying the vendor of the operating system
on which the client application initiating the Remote Access
Session is running."
::= { crasSessionEntry 19 }
crasClientOSVersionString OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The string identifying the version of the operating
system of the entity which initiated this Remote Access
session."
::= { crasSessionEntry 20 }
crasPrimWINSServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address returned in
'crasPrimWINSServer'.
"
::= { crasSessionEntry 21 }
crasPrimWINSServer OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the primary WINS server assigned
managed entity to this client session."
::= { crasSessionEntry 22 }
crasSecWINSServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address returned in
'crasSecWINSServer'.
"
::= { crasSessionEntry 23 }
crasSecWINSServer OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the secondary WINS server assigned
by the managed entity to this client session."
::= { crasSessionEntry 24 }
crasPrimDNSServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address returned in
'crasPrimDNSServer'.
"
::= { crasSessionEntry 25 }
crasPrimDNSServer OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the primary DNS server assigned by
the managed entity to this client session."
::= { crasSessionEntry 26 }
crasSecDNSServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address returned in
'crasSecDNSServer'.
"
::= { crasSessionEntry 27 }
crasSecDNSServer OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the secondary DNS server assigned
by the managed entity to this client session."
::= { crasSessionEntry 28 }
crasDHCPServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address returned in
'crasDHCPServer'.
"
::= { crasSessionEntry 29 }
crasDHCPServer OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the DHCP server assigned by the
managed entity to this client session."
::= { crasSessionEntry 30 }
crasSessionInPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this Remote
Access session."
::= { crasSessionEntry 31 }
crasSessionOutPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted by this
Remote Access Session."
::= { crasSessionEntry 32 }
crasSessionInDropPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received for processing
on this session which were dropped by the managed entity."
::= { crasSessionEntry 33 }
crasSessionOutDropPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of outgoing packets on this session
which were dropped during transmit processing by the
managed entity."
::= { crasSessionEntry 34 }
crasSessionInOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this Remote
Access Session.
This value is accumulated BEFORE determining whether
or not the packet should be decompressed.
"
::= { crasSessionEntry 35 }
crasSessionOutOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted by this Remote
Access Session.
This value is accumulated AFTER determining whether
or not the packet should be compressed.
"
::= { crasSessionEntry 36 }
crasSessionState OBJECT-TYPE
SYNTAX SessionStatus
MAX-ACCESS read-write
STATUS current