-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTRON-SFPS-L4SS-MIB
1304 lines (1134 loc) · 44.5 KB
/
CTRON-SFPS-L4SS-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
CTRON-SFPS-L4SS-MIB DEFINITIONS ::= BEGIN
-- sfps-l4ss.mib
-- Revision: 0.0.06
-- Date: June 25, 1999
--
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- This module provides authoritative definitions for the
-- Layer 4 Smart Switch (L4SS).
--
-- This module will be extended, as required.
--
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright October 93 Cabletron Systems
--
IMPORTS
OBJECT-TYPE
FROM RFC-1212
DisplayString, PhysAddress
FROM RFC1213-MIB
IpAddress, Counter, TimeTicks
FROM RFC1155-SMI
-- These Objects are defined in the file sfps-inc.mib.txt
switchSFPS
FROM CTRON-SFPS-INCLUDE-MIB;
-- New SFPS Switch Group.
sfpsL4SS OBJECT IDENTIFIER ::= { switchSFPS 6 }
-- The SFPS Layer 4 SmartSwitch Groups.
sfpsL4CP OBJECT IDENTIFIER ::= { sfpsL4SS 1 }
sfpsL4CDR OBJECT IDENTIFIER ::= { sfpsL4SS 2 }
l4cpStats OBJECT IDENTIFIER ::= { sfpsL4CP 1 }
l4cpConfig OBJECT IDENTIFIER ::= { sfpsL4CP 2 }
l4cpActions OBJECT IDENTIFIER ::= { sfpsL4CP 3 }
l4cdrStats OBJECT IDENTIFIER ::= { sfpsL4CDR 1 }
l4cdrConfig OBJECT IDENTIFIER ::= { sfpsL4CDR 2 }
l4cdrActions OBJECT IDENTIFIER ::= { sfpsL4CDR 3 }
-- Textual Conventions
HexInteger ::= INTEGER
-- display this integer in hex format
SfpsAddress ::= OCTET STRING (SIZE (6))
-- this will map to a MAC address
-- SFPS L4CP Scalars
sfpsL4CPDisableTCPAckCheck OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable indicates whether or not TCP
segments whose ACK bit is off are allowed to use an
existing flow table entry. When set to 2, a TCP
segment whose ACK bit is off is always treated as an
exception packet. This variable takes effect immediately,
and its value is peristent."
::= { l4cpConfig 1 }
-- SFPS FLOW TABLE
sfpsL4CPFlowTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsL4CPFlowEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table describes each conversation between a pair
or Layer 3 or Layer 4 endpoints."
::= { sfpsL4CP 4 }
sfpsL4CPFlowEntry OBJECT-TYPE
SYNTAX SfpsL4CPFlowEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains statistics and information for
a pair of Layer 3 or Layer 4 endpoints."
INDEX { sfpsL4CPFlowCnxIndex,
sfpsL4CPFlowSecL3Address,
sfpsL4CPFlowPrimL3Address,
sfpsL4CPFlowSubprotocol,
sfpsL4CPFlowSecMatchAnyDyn,
sfpsL4CPFlowPrimMatchAnyDyn,
sfpsL4CPFlowSecProtPort,
sfpsL4CPFlowPrimProtPort }
::= { sfpsL4CPFlowTable 1 }
SfpsL4CPFlowEntry ::=
SEQUENCE {
sfpsL4CPFlowCnxIndex INTEGER,
sfpsL4CPFlowSecL3Address DisplayString,
sfpsL4CPFlowPrimL3Address DisplayString,
sfpsL4CPFlowSubprotocol HexInteger,
sfpsL4CPFlowSecMatchAnyDyn INTEGER,
sfpsL4CPFlowPrimMatchAnyDyn INTEGER,
sfpsL4CPFlowSecProtPort INTEGER,
sfpsL4CPFlowPrimProtPort INTEGER,
sfpsL4CPFlowSecSubstApplies INTEGER,
sfpsL4CPFlowPrimSubstApplies INTEGER,
sfpsL4CPFlowSecInPkts Counter,
sfpsL4CPFlowSecInOctets Counter,
sfpsL4CPFlowPrimInPkts Counter,
sfpsL4CPFlowPrimInOctets Counter,
sfpsL4CPFlowFlowAge TimeTicks,
sfpsL4CPFlowFlowLastUse TimeTicks,
sfpsL4CPFlowID INTEGER
}
sfpsL4CPFlowCnxIndex OBJECT-TYPE
SYNTAX INTEGER(0..'7FFFFFFF'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index (1-based) of the SFPSGAPI connection table entry
to which this flow belongs."
::= { sfpsL4CPFlowEntry 1 }
sfpsL4CPFlowSecL3Address OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Layer 3 address of the secondary endpoint for this flow.
The secondary endpoint is the one having the higher MAC address."
::= { sfpsL4CPFlowEntry 2 }
sfpsL4CPFlowPrimL3Address OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Layer 3 address of the primary endpoint for this flow.
The primary endpoint is the one having the lower MAC address."
::= { sfpsL4CPFlowEntry 3 }
sfpsL4CPFlowSubprotocol OBJECT-TYPE
SYNTAX HexInteger(0..'7FFFFFFF'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value identifies the Layer 4 protocol. It
corresponds to the IP 'Protocol' field as described
in the 'Assigned Numbers' RFC."
::= { sfpsL4CPFlowEntry 4 }
sfpsL4CPFlowSecMatchAnyDyn OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this is a TCP or UDP entry, this value specifies whether
or not the protocol port of the secondary endpoint should
be treated as a wildcard, able to match any port number above
1023."
::= { sfpsL4CPFlowEntry 5 }
sfpsL4CPFlowPrimMatchAnyDyn OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this is a TCP or UDP entry, this value specifies whether
or not the protocol port of the primary endpoint should
be treated as a wildcard, able to match any port number above
1023."
::= { sfpsL4CPFlowEntry 6 }
sfpsL4CPFlowSecProtPort OBJECT-TYPE
SYNTAX INTEGER(0..'FFFF'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this is a TCP or UDP entry, this value indicates the
protocol port number of the secondary endpoint.
Otherwise, this field is zero."
::= { sfpsL4CPFlowEntry 7 }
sfpsL4CPFlowPrimProtPort OBJECT-TYPE
SYNTAX INTEGER(0..'FFFF'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this is a TCP or UDP entry, this value indicates the
protocol port number of the primary endpoint.
Otherwise, this field is zero."
::= { sfpsL4CPFlowEntry 8 }
sfpsL4CPFlowSecSubstApplies OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indication of whether or not MAC address substitution
applies to the secondary endpoint for this flow."
::= { sfpsL4CPFlowEntry 9 }
sfpsL4CPFlowPrimSubstApplies OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indication of whether or not MAC address substitution
applies to the primary endpoint for this flow."
::= { sfpsL4CPFlowEntry 10 }
sfpsL4CPFlowSecInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of packets transmitted from primary to secondary."
::= { sfpsL4CPFlowEntry 11 }
sfpsL4CPFlowSecInOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of octets transmitted from primary to secondary."
::= { sfpsL4CPFlowEntry 12 }
sfpsL4CPFlowPrimInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of packets transmitted from secondary to primary."
::= { sfpsL4CPFlowEntry 13 }
sfpsL4CPFlowPrimInOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of octets transmitted from secondary to primary."
::= { sfpsL4CPFlowEntry 14 }
sfpsL4CPFlowFlowAge OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time elapsed since this entry was created."
::= { sfpsL4CPFlowEntry 15 }
sfpsL4CPFlowFlowLastUse OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time elapsed since this entry was last used to send data."
::= { sfpsL4CPFlowEntry 16 }
sfpsL4CPFlowID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Call Detail Recording flow ID for this flow, or zero
if CDR is not active for the flow."
::= { sfpsL4CPFlowEntry 17 }
-- SFPS MAC ADDRESS SUBSTITUTION TABLE
sfpsL4CPMACAddrSubTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsL4CPMACAddrSubEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides the ability to override the default
gateway for specific routes."
::= { sfpsL4CP 5 }
sfpsL4CPMACAddrSubEntry OBJECT-TYPE
SYNTAX SfpsL4CPMACAddrSubEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the MAC address substitution information
associated with a specific destination IP address."
INDEX { sfpsL4CPMACAddrSubDestIP }
::= { sfpsL4CPMACAddrSubTable 1 }
SfpsL4CPMACAddrSubEntry ::=
SEQUENCE {
sfpsL4CPMACAddrSubDestIP IpAddress,
sfpsL4CPMACAddrSubNextHopMAC PhysAddress,
sfpsL4CPMACAddrSubRefCount INTEGER
}
sfpsL4CPMACAddrSubDestIP OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Destination IP address for this route"
::= { sfpsL4CPMACAddrSubEntry 1 }
sfpsL4CPMACAddrSubNextHopMAC OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The next-hop MAC address to use for this route."
::= { sfpsL4CPMACAddrSubEntry 2 }
sfpsL4CPMACAddrSubRefCount OBJECT-TYPE
SYNTAX INTEGER(0..'7FFFFFFF'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of flow table entries that reference this entry."
::= { sfpsL4CPMACAddrSubEntry 3 }
-- SFPS NETWORK ADDRESS SUBSTITUTION TABLE
sfpsL4CPNetAddrUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsL4CPNetAddrUserEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table associates user information with network
addresses."
::= { sfpsL4CP 7 }
sfpsL4CPNetAddrUserEntry OBJECT-TYPE
SYNTAX SfpsL4CPNetAddrUserEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the user information
associated with a specific network address."
INDEX { sfpsL4CPNetAddrUserProtocol,
sfpsL4CPNetAddrUserNetAddr }
::= { sfpsL4CPNetAddrUserTable 1 }
SfpsL4CPNetAddrUserEntry ::=
SEQUENCE {
sfpsL4CPNetAddrUserProtocol INTEGER,
sfpsL4CPNetAddrUserNetAddr DisplayString,
sfpsL4CPNetAddrUserLoginID INTEGER,
sfpsL4CPNetAddrUserUserID INTEGER,
sfpsL4CPNetAddrUserUserName DisplayString
}
sfpsL4CPNetAddrUserProtocol OBJECT-TYPE
SYNTAX INTEGER(0..'7FFFFFFF'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The network-layer protocol associated with this entry. Values
correspond to the 'aoAddressTag' enumeration
(see aoproperties.h)."
::= { sfpsL4CPNetAddrUserEntry 1 }
sfpsL4CPNetAddrUserNetAddr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The network-layer address associated with this entry."
::= { sfpsL4CPNetAddrUserEntry 2 }
sfpsL4CPNetAddrUserLoginID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The login ID from CSM's LoginOID. Set to zero
if no user is logged into the address."
::= { sfpsL4CPNetAddrUserEntry 3 }
sfpsL4CPNetAddrUserUserID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object ID from CSM's UserOID."
::= { sfpsL4CPNetAddrUserEntry 4 }
sfpsL4CPNetAddrUserUserName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The user name associated with this entry."
::= { sfpsL4CPNetAddrUserEntry 5 }
-- SFPS IP ROUTE TABLE
sfpsL4CPIPRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsL4CPIPRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table associates IP routes (subnets) with devices."
::= { sfpsL4CP 8 }
sfpsL4CPIPRouteEntry OBJECT-TYPE
SYNTAX SfpsL4CPIPRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the IP route information
associated with a specific device."
INDEX { sfpsL4CPIPRouteSubnetMask,
sfpsL4CPIPRouteSubnet }
::= { sfpsL4CPIPRouteTable 1 }
SfpsL4CPIPRouteEntry ::=
SEQUENCE {
sfpsL4CPIPRouteSubnetMask IpAddress,
sfpsL4CPIPRouteSubnet IpAddress,
sfpsL4CPIPRouteRouteID INTEGER,
sfpsL4CPIPRouteRouteSubsystem INTEGER,
sfpsL4CPIPRouteDeviceID INTEGER,
sfpsL4CPIPRouteDeviceName DisplayString,
sfpsL4CPIPRouteMACAddress SfpsAddress,
sfpsL4CPIPRouteMetric INTEGER,
sfpsL4CPIPRouteCallable INTEGER
}
sfpsL4CPIPRouteSubnetMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The subnet mask associated with this route."
::= { sfpsL4CPIPRouteEntry 1 }
sfpsL4CPIPRouteSubnet OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The destination subnet of this route."
::= { sfpsL4CPIPRouteEntry 2 }
sfpsL4CPIPRouteRouteID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object ID from CSM's RouteOID."
::= { sfpsL4CPIPRouteEntry 3 }
sfpsL4CPIPRouteRouteSubsystem OBJECT-TYPE
SYNTAX INTEGER { local(1),
remote(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates type of device route."
::= { sfpsL4CPIPRouteEntry 4 }
sfpsL4CPIPRouteDeviceID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object ID from CSM's DeviceOID."
::= { sfpsL4CPIPRouteEntry 5 }
sfpsL4CPIPRouteDeviceName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device name for this route."
::= { sfpsL4CPIPRouteEntry 6 }
sfpsL4CPIPRouteMACAddress OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address of the device for this route."
::= { sfpsL4CPIPRouteEntry 7 }
sfpsL4CPIPRouteMetric OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The metric associated with this route."
::= { sfpsL4CPIPRouteEntry 8 }
sfpsL4CPIPRouteCallable OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether or not the device associated
with this route is callable for IP."
::= { sfpsL4CPIPRouteEntry 9 }
-- SFPS PORT TABLE
sfpsL4CPPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsL4CPPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table lists the attributes of an access servers ports."
::= { sfpsL4CP 9 }
sfpsL4CPPortEntry OBJECT-TYPE
SYNTAX SfpsL4CPPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information about
one of this access server's ports."
INDEX { sfpsL4CPPortNum }
::= { sfpsL4CPPortTable 1 }
SfpsL4CPPortEntry ::=
SEQUENCE {
sfpsL4CPPortNum INTEGER,
sfpsL4CPPortID INTEGER,
sfpsL4CPPortApplyPolicyIn INTEGER,
sfpsL4CPPortApplyPolicyOut INTEGER,
sfpsL4CPPortDefaultUserID INTEGER,
sfpsL4CPPortDefaultUserName DisplayString
}
sfpsL4CPPortNum OBJECT-TYPE
SYNTAX INTEGER(0..'7FFFFFFF'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The logical port number of this port."
::= { sfpsL4CPPortEntry 1 }
sfpsL4CPPortID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last four octets of CSM's PortOID for this port."
::= { sfpsL4CPPortEntry 2 }
sfpsL4CPPortApplyPolicyIn OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether or not access policies
are to be applied to packets arriving at this port."
::= { sfpsL4CPPortEntry 3 }
sfpsL4CPPortApplyPolicyOut OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether or not access policies
are to be applied to packets sent out this port."
::= { sfpsL4CPPortEntry 4 }
sfpsL4CPPortDefaultUserID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last four octets of CSM's UserOID for the
default userid for this port."
::= { sfpsL4CPPortEntry 5 }
sfpsL4CPPortDefaultUserName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The user name assigned to MAC addresses
discovered on this port."
::= { sfpsL4CPPortEntry 6 }
-- SFPS Callable Device Table
sfpsL4CPCallableDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsL4CPCallableDeviceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table lists the attributes of a callable device."
::= { sfpsL4CP 11 }
sfpsL4CPCallableDeviceEntry OBJECT-TYPE
SYNTAX SfpsL4CPCallableDeviceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information about
one of this access server's ports."
INDEX { sfpsL4CPCallableDeviceDeviceID }
::= { sfpsL4CPCallableDeviceTable 1 }
SfpsL4CPCallableDeviceEntry ::=
SEQUENCE {
sfpsL4CPCallableDeviceDeviceID INTEGER,
sfpsL4CPCallableDeviceDeviceName DisplayString,
sfpsL4CPCallableDeviceDefaultUserName DisplayString
}
sfpsL4CPCallableDeviceDeviceID OBJECT-TYPE
SYNTAX INTEGER(0..'7FFFFFFF'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last four octets of CSM's DeviceOID for this
callable device."
::= { sfpsL4CPCallableDeviceEntry 1 }
sfpsL4CPCallableDeviceDeviceName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The default device name for this callable device."
::= { sfpsL4CPCallableDeviceEntry 2 }
sfpsL4CPCallableDeviceDefaultUserName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The default user name for this callable device."
::= { sfpsL4CPCallableDeviceEntry 3 }
-- SFPS Layer 4 Call Detail Recording Active Flow Table
sfpsL4CDRActiveFlowTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsL4CDRActiveFlowEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table lists the currently active flows that have
Call Detail Recording enabled."
::= { sfpsL4CDR 4 }
sfpsL4CDRActiveFlowEntry OBJECT-TYPE
SYNTAX SfpsL4CDRActiveFlowEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information about
one flow that has CDR enabled."
INDEX { sfpsL4CDRActiveFlowFlowID }
::= { sfpsL4CDRActiveFlowTable 1 }
SfpsL4CDRActiveFlowEntry ::=
SEQUENCE {
sfpsL4CDRActiveFlowFlowID INTEGER,
sfpsL4CDRActiveFlowSubProtocol INTEGER,
sfpsL4CDRActiveFlowEtherType INTEGER,
sfpsL4CDRActiveFlowSourceUser DisplayString,
sfpsL4CDRActiveFlowSourceMACAddr DisplayString,
sfpsL4CDRActiveFlowSourceNetAddr DisplayString,
sfpsL4CDRActiveFlowSourceProtocolPort INTEGER,
sfpsL4CDRActiveFlowSourcePPRangeEnabled INTEGER,
sfpsL4CDRActiveFlowSourceConnNumber INTEGER,
sfpsL4CDRActiveFlowDestUser DisplayString,
sfpsL4CDRActiveFlowDestMACAddr DisplayString,
sfpsL4CDRActiveFlowDestNetAddr DisplayString,
sfpsL4CDRActiveFlowDestProtocolPort INTEGER,
sfpsL4CDRActiveFlowDestPPRangeEnabled INTEGER,
sfpsL4CDRActiveFlowDestConnNumber INTEGER,
sfpsL4CDRActiveFlowStartTime TimeTicks,
sfpsL4CDRActiveFlowLastPktTime TimeTicks,
sfpsL4CDRActiveFlowEndTime TimeTicks,
sfpsL4CDRActiveFlowInOctets Counter,
sfpsL4CDRActiveFlowOutOctets Counter,
sfpsL4CDRActiveFlowInPkts Counter,
sfpsL4CDRActiveFlowOutPkts Counter,
sfpsL4CDRActiveFlowDemandAccessConnMade INTEGER,
sfpsL4CDRActiveFlowFlowRecordState INTEGER
}
sfpsL4CDRActiveFlowFlowID OBJECT-TYPE
SYNTAX INTEGER(0..'7FFFFFFF'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Flow ID for this flow."
::= { sfpsL4CDRActiveFlowEntry 1 }
sfpsL4CDRActiveFlowSubProtocol OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this is a Layer 4 flow, this value identifies the Layer
4 protocol (for IP, this value corresponds to the 'Protocol'
field as described in the 'Assigned Numbers' RFC). If this
is a Layer 3 flow, this value is zero."
::= { sfpsL4CDRActiveFlowEntry 2 }
sfpsL4CDRActiveFlowEtherType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Layer 3 protocol represented by this entry. Values
correspond to the 'Ether Type' field as described in the
Assigned Numbers RFC."
::= { sfpsL4CDRActiveFlowEntry 3 }
sfpsL4CDRActiveFlowSourceUser OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The user name associated with the source of the flow."
::= { sfpsL4CDRActiveFlowEntry 4 }
sfpsL4CDRActiveFlowSourceMACAddr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address associated with the source of the flow."
::= { sfpsL4CDRActiveFlowEntry 5 }
sfpsL4CDRActiveFlowSourceNetAddr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Layer 3 address associated with the source of the flow."
::= { sfpsL4CDRActiveFlowEntry 6 }
sfpsL4CDRActiveFlowSourceProtocolPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this is a Layer 4 flow, this value indicates the
protocol port number of the source of the flow.
Otherwise, this field is zero."
::= { sfpsL4CDRActiveFlowEntry 7 }
sfpsL4CDRActiveFlowSourcePPRangeEnabled OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether or not any source protocol port
number greater than 1023 is considered to match the source
protocol port with which this flow was created."
::= { sfpsL4CDRActiveFlowEntry 8 }
sfpsL4CDRActiveFlowSourceConnNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The source connection number."
::= { sfpsL4CDRActiveFlowEntry 9 }
sfpsL4CDRActiveFlowDestUser OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The user name associated with the destination of the flow."
::= { sfpsL4CDRActiveFlowEntry 10 }
sfpsL4CDRActiveFlowDestMACAddr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address associated with the destination of the flow."
::= { sfpsL4CDRActiveFlowEntry 11 }
sfpsL4CDRActiveFlowDestNetAddr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Layer 3 address associated with the destination of the flow."
::= { sfpsL4CDRActiveFlowEntry 12 }
sfpsL4CDRActiveFlowDestProtocolPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this is a Layer 4 flow, this value indicates the
protocol port number of the destination of the flow.
Otherwise, this field is zero."
::= { sfpsL4CDRActiveFlowEntry 13 }
sfpsL4CDRActiveFlowDestPPRangeEnabled OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether or not any destination protocol port
number greater than 1023 is considered to match the destination
protocol port with which this flow was created."
::= { sfpsL4CDRActiveFlowEntry 14 }
sfpsL4CDRActiveFlowDestConnNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The destination connection number."
::= { sfpsL4CDRActiveFlowEntry 15 }
sfpsL4CDRActiveFlowStartTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time elapsed since this flow was created."
::= { sfpsL4CDRActiveFlowEntry 16 }
sfpsL4CDRActiveFlowLastPktTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time elapsed since the most recent packet was sent on
this flow."
::= { sfpsL4CDRActiveFlowEntry 17 }
sfpsL4CDRActiveFlowEndTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time elapsed since this flow was terminated. This
field is not meaningful for active flows."
::= { sfpsL4CDRActiveFlowEntry 18 }
sfpsL4CDRActiveFlowInOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of octets that have been sent from the
destination to the source."
::= { sfpsL4CDRActiveFlowEntry 19 }
sfpsL4CDRActiveFlowOutOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of octets that have been sent from the
source to the destination."
::= { sfpsL4CDRActiveFlowEntry 20 }
sfpsL4CDRActiveFlowInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets that have been sent from the
destination to the source."
::= { sfpsL4CDRActiveFlowEntry 21 }
sfpsL4CDRActiveFlowOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets that have been sent from the
source to the destination."
::= { sfpsL4CDRActiveFlowEntry 22 }
sfpsL4CDRActiveFlowDemandAccessConnMade OBJECT-TYPE
SYNTAX INTEGER { yes(1),
no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether or not a demand access
connection had to be made for this flow."
::= { sfpsL4CDRActiveFlowEntry 23 }
sfpsL4CDRActiveFlowFlowRecordState OBJECT-TYPE
SYNTAX INTEGER { initialized(1),
active(2),
terminated(3),
invalid(4) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current state of the flow record."
::= { sfpsL4CDRActiveFlowEntry 24 }
-- SFPS Layer 4 Call Detail Recording Terminated Flow Table
sfpsL4CDRTermedFlowTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsL4CDRTermedFlowEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table lists the terminated flows that had
Call Detail Recording enabled."
::= { sfpsL4CDR 5 }
sfpsL4CDRTermedFlowEntry OBJECT-TYPE
SYNTAX SfpsL4CDRTermedFlowEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information about
one flow that had CDR enabled."
INDEX { sfpsL4CDRTermedFlowFlowID }
::= { sfpsL4CDRTermedFlowTable 1 }
SfpsL4CDRTermedFlowEntry ::=
SEQUENCE {
sfpsL4CDRTermedFlowFlowID INTEGER,
sfpsL4CDRTermedFlowSubProtocol INTEGER,
sfpsL4CDRTermedFlowEtherType INTEGER,
sfpsL4CDRTermedFlowSourceUser DisplayString,
sfpsL4CDRTermedFlowSourceMACAddr DisplayString,
sfpsL4CDRTermedFlowSourceNetAddr DisplayString,
sfpsL4CDRTermedFlowSourceProtocolPort INTEGER,
sfpsL4CDRTermedFlowSourcePPRangeEnabled INTEGER,
sfpsL4CDRTermedFlowSourceConnNumber INTEGER,
sfpsL4CDRTermedFlowDestUser DisplayString,
sfpsL4CDRTermedFlowDestMACAddr DisplayString,
sfpsL4CDRTermedFlowDestNetAddr DisplayString,
sfpsL4CDRTermedFlowDestProtocolPort INTEGER,
sfpsL4CDRTermedFlowDestPPRangeEnabled INTEGER,
sfpsL4CDRTermedFlowDestConnNumber INTEGER,
sfpsL4CDRTermedFlowStartTime TimeTicks,
sfpsL4CDRTermedFlowLastPktTime TimeTicks,
sfpsL4CDRTermedFlowEndTime TimeTicks,
sfpsL4CDRTermedFlowInOctets Counter,
sfpsL4CDRTermedFlowOutOctets Counter,
sfpsL4CDRTermedFlowInPkts Counter,
sfpsL4CDRTermedFlowOutPkts Counter,
sfpsL4CDRTermedFlowDemandAccessConnMade INTEGER,
sfpsL4CDRTermedFlowFlowRecordState INTEGER
}