summaryrefslogtreecommitdiff
path: root/MIBS/enterasys/CTRON-SFPS-L4SS-MIB
blob: 8c8bd1f8d0fcb50b98171b296cafab9655178b7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
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
--  support@ctron.com

--  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
         }  

sfpsL4CDRTermedFlowFlowID   OBJECT-TYPE
        SYNTAX  INTEGER(0..'7FFFFFFF'h)  
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Flow ID for this flow."
        ::= { sfpsL4CDRTermedFlowEntry 1 }

sfpsL4CDRTermedFlowSubProtocol   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."
        ::= { sfpsL4CDRTermedFlowEntry 2 }

sfpsL4CDRTermedFlowEtherType   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."
        ::= { sfpsL4CDRTermedFlowEntry 3 }

sfpsL4CDRTermedFlowSourceUser   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The user name associated with the source of the flow."
        ::= { sfpsL4CDRTermedFlowEntry 4 }

sfpsL4CDRTermedFlowSourceMACAddr   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The MAC address associated with the source of the flow."
        ::= { sfpsL4CDRTermedFlowEntry 5 }

sfpsL4CDRTermedFlowSourceNetAddr   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The Layer 3 address associated with the source of the flow."
        ::= { sfpsL4CDRTermedFlowEntry 6 }

sfpsL4CDRTermedFlowSourceProtocolPort   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."
        ::= { sfpsL4CDRTermedFlowEntry 7 }

sfpsL4CDRTermedFlowSourcePPRangeEnabled   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."
        ::= { sfpsL4CDRTermedFlowEntry 8 }

sfpsL4CDRTermedFlowSourceConnNumber   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The source connection number."
        ::= { sfpsL4CDRTermedFlowEntry 9 }

sfpsL4CDRTermedFlowDestUser   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The user name associated with the destination of the flow."
        ::= { sfpsL4CDRTermedFlowEntry 10 }

sfpsL4CDRTermedFlowDestMACAddr   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The MAC address associated with the destination of the flow."
        ::= { sfpsL4CDRTermedFlowEntry 11 }

sfpsL4CDRTermedFlowDestNetAddr   OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The Layer 3 address associated with the destination of the flow."
        ::= { sfpsL4CDRTermedFlowEntry 12 }

sfpsL4CDRTermedFlowDestProtocolPort   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."
        ::= { sfpsL4CDRTermedFlowEntry 13 }

sfpsL4CDRTermedFlowDestPPRangeEnabled   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."
        ::= { sfpsL4CDRTermedFlowEntry 14 }

sfpsL4CDRTermedFlowDestConnNumber   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The destination connection number."
        ::= { sfpsL4CDRTermedFlowEntry 15 }

sfpsL4CDRTermedFlowStartTime   OBJECT-TYPE
        SYNTAX  TimeTicks
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The time elapsed since this flow was created."
        ::= { sfpsL4CDRTermedFlowEntry 16 }

sfpsL4CDRTermedFlowLastPktTime   OBJECT-TYPE
        SYNTAX  TimeTicks
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The time elapsed since the most recent packet was sent on
                 this flow."
        ::= { sfpsL4CDRTermedFlowEntry 17 }

sfpsL4CDRTermedFlowEndTime   OBJECT-TYPE
        SYNTAX  TimeTicks
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The time elapsed since this flow was terminated."
        ::= { sfpsL4CDRTermedFlowEntry 18 }

sfpsL4CDRTermedFlowInOctets   OBJECT-TYPE
        SYNTAX  Counter
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number of octets that have been sent from the
                 destination to the source."
        ::= { sfpsL4CDRTermedFlowEntry 19 }

sfpsL4CDRTermedFlowOutOctets   OBJECT-TYPE
        SYNTAX  Counter
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number of octets that have been sent from the
                 source to the destination."
        ::= { sfpsL4CDRTermedFlowEntry 20 }

sfpsL4CDRTermedFlowInPkts   OBJECT-TYPE
        SYNTAX  Counter
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number of packets that have been sent from the
                 destination to the source."
        ::= { sfpsL4CDRTermedFlowEntry 21 }

sfpsL4CDRTermedFlowOutPkts   OBJECT-TYPE
        SYNTAX  Counter
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number of packets that have been sent from the
                 source to the destination."
        ::= { sfpsL4CDRTermedFlowEntry 22 }

sfpsL4CDRTermedFlowDemandAccessConnMade   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."
        ::= { sfpsL4CDRTermedFlowEntry 23 }

sfpsL4CDRTermedFlowFlowRecordState   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."
        ::= { sfpsL4CDRTermedFlowEntry 24 }



-- SFPS Layer 4 Call Detail Recording Flow Index Table

sfpsL4CDRFlowIndexTable     OBJECT-TYPE
        SYNTAX  SEQUENCE OF SfpsL4CDRFlowIndexEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "This table lists the current flows that have
                 Call Detail Recording enabled."
        ::= { sfpsL4CDR 6 }

sfpsL4CDRFlowIndexEntry    OBJECT-TYPE
        SYNTAX  SfpsL4CDRFlowIndexEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "Each entry contains information about
                 one flow that has CDR enabled."
        INDEX   { sfpsL4CDRFlowIndexFlowID } 
        ::= { sfpsL4CDRFlowIndexTable 1 }

SfpsL4CDRFlowIndexEntry ::=
        SEQUENCE {
                sfpsL4CDRFlowIndexFlowID               INTEGER,  
                sfpsL4CDRFlowIndexSFPSFlowTblIndex     INTEGER,  
                sfpsL4CDRFlowIndexSFlowStatsPtr        INTEGER,
                sfpsL4CDRFlowIndexStaticFlowInfoPtr    INTEGER,
                sfpsL4CDRFlowIndexFlowTblEntryPtr      INTEGER,
                sfpsL4CDRFlowIndexFlowState            INTEGER
         }  

sfpsL4CDRFlowIndexFlowID   OBJECT-TYPE
        SYNTAX  INTEGER(0..'7FFFFFFF'h)  
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Flow ID for this flow."
        ::= { sfpsL4CDRFlowIndexEntry 1 }

sfpsL4CDRFlowIndexSFPSFlowTblIndex   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Index of the SFPS Flow Table entry (1-based) that
                 corresponds to this flow."
        ::= { sfpsL4CDRFlowIndexEntry 2 }

sfpsL4CDRFlowIndexSFlowStatsPtr   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Pointer to the SFlowStats object for this flow."
        ::= { sfpsL4CDRFlowIndexEntry 3 }

sfpsL4CDRFlowIndexStaticFlowInfoPtr   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Pointer to the L4CDRStaticFlowInfo object for this flow."
        ::= { sfpsL4CDRFlowIndexEntry 4 }

sfpsL4CDRFlowIndexFlowTblEntryPtr   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The flow table entry pointer for this flow."
        ::= { sfpsL4CDRFlowIndexEntry 5 }

sfpsL4CDRFlowIndexFlowState   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 index record."
        ::= { sfpsL4CDRFlowIndexEntry 6 }

END