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
|
DELL-NETWORKING-OPENFLOW-MIB DEFINITIONS ::= BEGIN
-- This module provides authoritative definitions for
-- Dell Networking OS OpenFlow MIB.
--
-- This module will be extended, as needed.
--
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Counter64, Unsigned32, TimeTicks,
NOTIFICATION-TYPE, Integer32, IpAddress
FROM SNMPv2-SMI
TimeStamp, DisplayString, TruthValue, MacAddress,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-COMPLIANCE, NOTIFICATION-GROUP, OBJECT-GROUP
FROM SNMPv2-CONF
InterfaceIndex
FROM IF-MIB -- [RFC2863]
VlanId
FROM Q-BRIDGE-MIB -- [RFC4363]
InetAddressType, InetAddress, InetPortNumber
FROM INET-ADDRESS-MIB -- [RFC4001]
dellNetMgmt
FROM DELL-NETWORKING-SMI;
dellNetOpenFlow MODULE-IDENTITY
LAST-UPDATED "201203271200Z" -- Mar 27, 2012 12:00:00 GMT
ORGANIZATION
"Dell Inc"
CONTACT-INFO
"http://www.dell.com/support"
DESCRIPTION
"Dell Networking OS OpenFlow MIB provides information base of
OpenFlow enabled Dell Networking OS Switch. This MIB exposes information
about the Switch in OpenFlow perspective.
Information of :
1) OpenFlow Instances configured,
2) Controller that configured it,
3) Ports that are configured under these instances,
4) VLANs that are part of these instances and
5) Flows & Flowactions configured
are shared via this MIB."
::= { dellNetMgmt 20 }
--
-- ### Groups ###
--
ofSwitchObjects OBJECT IDENTIFIER ::={ dellNetOpenFlow 1 }
ofSwitchNotification OBJECT IDENTIFIER ::={ dellNetOpenFlow 2 }
-- -------------------------------------------------------------
-- Textual Conventions
-- -------------------------------------------------------------
DataPathIdentifier ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1x:"
STATUS current
DESCRIPTION
"The representation of an Open Flow Instance DataPath Identifier."
SYNTAX OCTET STRING(SIZE(8))
-- ****************************************************************************
-- * Scalar Definitions
-- ****************************************************************************
ofSwitchId OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Switch Id: Identifier of this Switch"
::= { ofSwitchObjects 1 }
ofManufacturerDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Manufacturer Description: Provides info about the
OF Switch manufacturer"
::= { ofSwitchObjects 2 }
ofHardwareDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Switch HardwareDescription"
::= { ofSwitchObjects 3 }
ofSoftwareDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Switch SoftwareDescription"
::= { ofSwitchObjects 4 }
ofSwitchSerialNo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Switch Serial No: Provides the serial number of the switch"
::= { ofSwitchObjects 5 }
ofSwitchVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Switch Version"
::= { ofSwitchObjects 6 }
-- ****************************************************************************
-- ## Instance Table ##
-- ****************************************************************************
ofInstTable OBJECT-TYPE
SYNTAX SEQUENCE OF OfInstEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Instance Table"
::= { ofSwitchObjects 7 }
ofInstEntry OBJECT-TYPE
SYNTAX OfInstEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Instance Entry: This provides the sequence of objects
that describes the properties of the Instance. ofInstId uniquely
identifies the instance and hence it becomes an index"
INDEX { ofInstId }
::= { ofInstTable 1 }
OfInstEntry ::=
SEQUENCE {
ofInstId Unsigned32,
ofInstAdminState INTEGER,
ofInstIntfType INTEGER,
ofInstDataPathId DataPathIdentifier,
ofInstConnectTimeout Unsigned32,
ofInstEchoReplyTimeout Unsigned32,
ofInstEchoReqInterval Unsigned32,
ofInstNumFlows Unsigned32,
ofInstSuppCapabilities BITS,
ofInstSuppActions BITS
}
ofInstId OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Instance Identifier"
::= { ofInstEntry 1 }
ofInstAdminState OBJECT-TYPE
SYNTAX INTEGER { up(1),
down(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Instance Admin State: tells whether this instance is
enabled or not."
::= { ofInstEntry 2 }
ofInstIntfType OBJECT-TYPE
SYNTAX INTEGER { port(1),
vlan(2),
any(3)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Instance Interface Type: tells whether this instance is
a Port or VLAN or ANY"
::= { ofInstEntry 3 }
ofInstDataPathId OBJECT-TYPE
SYNTAX DataPathIdentifier
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Instance DataPath Identifier"
::= { ofInstEntry 4 }
ofInstConnectTimeout OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Instance Connection Timeout: Tells the time after which the
connection would be dropped"
::= { ofInstEntry 5 }
ofInstEchoReplyTimeout OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Instance Echo Reply Timeout: Tells the max time for which the
Echo message would wait for reply"
::= { ofInstEntry 6 }
ofInstEchoReqInterval OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Instance Echo Request Interval: Tells how often the Echo
message would be sent"
::= { ofInstEntry 7 }
ofInstNumFlows OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of flows in this Instance"
::= { ofInstEntry 8 }
ofInstSuppCapabilities OBJECT-TYPE
SYNTAX BITS { port(0),
table(1),
flow(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Instance Supported Capabilities: Gives the supported
capabilities information by setting the appropriate BITS"
::= { ofInstEntry 9 }
ofInstSuppActions OBJECT-TYPE
SYNTAX BITS { output(0),
set-vlan(1),
set-pcp(2),
set-smac(3),
set-dmac(4),
set-tos(5) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Instance Supported Actions: Gives the supported
Action information by setting the appropriate BITS"
::= { ofInstEntry 10 }
-- ****************************************************************************
-- ## Controller Table ##
-- ****************************************************************************
ofCntlrTable OBJECT-TYPE
SYNTAX SEQUENCE OF OfCntlrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Controller Table: This table provides information about the Controller"
::= { ofSwitchObjects 8 }
ofCntlrEntry OBJECT-TYPE
SYNTAX OfCntlrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Controller Entry"
INDEX { ofInstId, ofCntlrId }
::= { ofCntlrTable 1 }
OfCntlrEntry ::=
SEQUENCE {
ofCntlrId Unsigned32,
ofCntlrAddrType InetAddressType,
ofCntlrAddr InetAddress,
ofCntlrPortNumber InetPortNumber,
ofCntlrProtocol INTEGER,
ofCntlrConState INTEGER
}
ofCntlrId OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Controller Id: This provides Id of this controller"
::= { ofCntlrEntry 1 }
ofCntlrAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Controller IP Address Type : The address type
of the controller's IP address. If no controller is configured
yet then this is set to unknown(0)."
::= { ofCntlrEntry 2 }
ofCntlrAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE (0|4|8|16|20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Controller IP Address: This gives the IP Address of
the controller. The InetAddressType of this is given by the
ofCntlrAddrType object."
::= { ofCntlrEntry 3 }
ofCntlrPortNumber OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Controller Port: This provides the port number to be
used to communicate with the controller"
::= { ofCntlrEntry 4 }
ofCntlrProtocol OBJECT-TYPE
SYNTAX INTEGER { tls(1),
tcp(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Controller Protocol: Tells which protocol is being used
by this Controller for communication, either TLS or TCP"
::= { ofCntlrEntry 5 }
ofCntlrConState OBJECT-TYPE
SYNTAX INTEGER { down(1),
up(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Controller Connection State"
::= { ofCntlrEntry 6 }
-- ****************************************************************************
-- ## Port Table ##
-- ****************************************************************************
ofPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF OfPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Port Table"
::= { ofSwitchObjects 9 }
ofPortEntry OBJECT-TYPE
SYNTAX OfPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Port Entry has ports assigned to the instance"
INDEX { ofInstId, ofPortIfIndex }
::= { ofPortTable 1 }
OfPortEntry ::=
SEQUENCE {
ofPortIfIndex InterfaceIndex,
ofPortAssociationType INTEGER
}
ofPortIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value corresponding to this port"
::= { ofPortEntry 1 }
ofPortAssociationType OBJECT-TYPE
SYNTAX INTEGER { instancePort(1),
instVlanPort(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Port Association Type: Tells whether this port
is directly assigned to the instance or via VLAN."
::= { ofPortEntry 2 }
-- ****************************************************************************
-- ## VLAN Table ##
-- ****************************************************************************
ofVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF OfVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow VLAN Table containing port list information for
each VLAN configured into the instance."
::= { ofSwitchObjects 10 }
ofVlanEntry OBJECT-TYPE
SYNTAX OfVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow VLAN Entry.
Restricted to max 8 VLANs per instance."
INDEX { ofInstId, ofVlanIfIndex }
::= { ofVlanTable 1 }
OfVlanEntry ::=
SEQUENCE {
ofVlanIfIndex InterfaceIndex,
ofVlanId VlanId
}
ofVlanIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value corresponding to this VLAN."
::= { ofVlanEntry 1 }
ofVlanId OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open Flow Vlan Id: VALN-ID referring to this VLAN."
::= { ofVlanEntry 2 }
-- ****************************************************************************
-- ## FLOW Table ##
-- ****************************************************************************
ofFlowTable OBJECT-TYPE
SYNTAX SEQUENCE OF OfFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow FlowTable"
::= { ofSwitchObjects 11 }
ofFlowEntry OBJECT-TYPE
SYNTAX OfFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Instance Flow Entry"
INDEX { ofInstId, ofFlowId, ofFlowTblId }
::= { ofFlowTable 1 }
OfFlowEntry ::=
SEQUENCE {
ofFlowId Unsigned32,
ofFlowTblId Unsigned32,
ofFlowPriority Unsigned32,
ofFlowIdleTime Unsigned32,
ofFlowHardTime Unsigned32,
ofFlowUpTime TimeTicks,
ofFlowCookie OCTET STRING,
ofFlowPacketCount Counter64,
ofFlowByteCount Counter64
}
ofFlowId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OpenFlow Flow Id"
::= { ofFlowEntry 1 }
ofFlowTblId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OpenFlow Flow Table Id"
::= { ofFlowEntry 2 }
ofFlowPriority OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow priority "
::= { ofFlowEntry 3 }
ofFlowIdleTime OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Idle Time"
::= { ofFlowEntry 4 }
ofFlowHardTime OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Hard Timeout"
::= { ofFlowEntry 5 }
ofFlowUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time since the OpenFlow flow was configured to be up."
::= { ofFlowEntry 6 }
ofFlowCookie OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Cookie String"
::= { ofFlowEntry 7 }
ofFlowPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Packet Count"
::= { ofFlowEntry 8 }
ofFlowByteCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Byte Count"
::= { ofFlowEntry 9 }
-- ****************************************************************************
-- ## Match Parameter Table ##
-- ****************************************************************************
ofFlowMatchParamsTable OBJECT-TYPE
SYNTAX SEQUENCE OF OfFlowMatchParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Match Parameter Table"
::= { ofSwitchObjects 12 }
ofFlowMatchParamsEntry OBJECT-TYPE
SYNTAX OfFlowMatchParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A set of parameters to be mactheded on a particular openFlow Table."
AUGMENTS { ofFlowEntry }
::= { ofFlowMatchParamsTable 1 }
OfFlowMatchParamsEntry ::=
SEQUENCE {
ofFlowMatchInPort OCTET STRING,
ofFlowMatchEtherSrcAddr OCTET STRING,
ofFlowMatchEtherDstAddr OCTET STRING,
ofFlowMatchVlanId OCTET STRING,
ofFlowMatchEthType OCTET STRING,
ofFlowMatchVlanPri OCTET STRING,
ofFlowMatchIpTos OCTET STRING,
ofFlowMatchIpProto OCTET STRING,
ofFlowMatchIpSrcAddr OCTET STRING,
ofFlowMatchIpDestAddr OCTET STRING,
ofFlowMatchTpSrcPort OCTET STRING,
ofFlowMatchTpDstPort OCTET STRING
}
ofFlowMatchInPort OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match Ingress Ports;
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 1 }
ofFlowMatchEtherSrcAddr OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match Ethernet Source Address.
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 2 }
ofFlowMatchEtherDstAddr OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match Ethernet Destination Address.
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 3 }
ofFlowMatchVlanId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match Vlan Id.
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 4 }
ofFlowMatchEthType OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match Ethernet Type.
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 5 }
ofFlowMatchVlanPri OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match VLAN Priority.
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 6 }
ofFlowMatchIpTos OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match IP TOS"
::= { ofFlowMatchParamsEntry 7 }
ofFlowMatchIpProto OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow match IP Protocol"
::= { ofFlowMatchParamsEntry 8 }
ofFlowMatchIpSrcAddr OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match IP Source Address.
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 9 }
ofFlowMatchIpDestAddr OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match IP Destination Adress.
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 10 }
ofFlowMatchTpSrcPort OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match Transport Source Port.
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 11 }
ofFlowMatchTpDstPort OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Match Transport Destination Port.
Note that when the value of this object is the
zero-length string, it indicates 'wild card'."
::= { ofFlowMatchParamsEntry 12 }
-- ****************************************************************************
-- ## FLOW Action Table ##
-- ****************************************************************************
ofFlowActionTable OBJECT-TYPE
SYNTAX SEQUENCE OF OfFlowActionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OpenFlow Flow Action Table"
::= { ofSwitchObjects 13 }
ofFlowActionEntry OBJECT-TYPE
SYNTAX OfFlowActionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OpenFlow Flow Action Entry"
INDEX { ofInstId, ofFlowId, ofFlowTblId, ofFlowActionId }
::= { ofFlowActionTable 1 }
OfFlowActionEntry ::=
SEQUENCE {
ofFlowActionId Unsigned32,
ofFlowActionType INTEGER,
ofFlowActionSrcMac MacAddress,
ofFlowActionDstMac MacAddress,
ofFlowActionPortIndex InterfaceIndex,
ofFlowActionVlanId VlanId,
ofFlowActionMaxLen Unsigned32,
ofFlowActionVlanPcp Unsigned32,
ofFlowActionNWTos Unsigned32
}
ofFlowActionId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Open Flow Action Id"
::= { ofFlowActionEntry 1 }
ofFlowActionType OBJECT-TYPE
SYNTAX INTEGER { outToSwitchPort(1),
setVlanVid(2),
setVlanPcp(3),
stripVlan(4),
setDlSrc(5),
setDlDst(6),
setNetworkSrc(7),
setNetworkDst(8),
setNetworkTos(9),
setTpSrc(10),
setTpDest(11),
outToQueue(12),
vendor(65535)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Action Type - Following are the supported Actions
outToSwitchPort -> Output to switch port.
setVlanVid -> Set the 802.1q VLAN id.
setVlanPcp -> Set the 802.1q priority.
stripVlan -> Strip the 802.1q header.
setDlSrc -> Ethernet source address.
setDlDst -> Ethernet destination address.
setNetworkSrc -> IP source address.
setNetworkDst -> IP destination address.
setNetworkTos -> IP ToS (DSCP field, 6 bits).
setTpSrc -> TCP/UDP source port.
setTpDest -> TCP/UDP destination port.
outToQueue -> Output to queue.
vendor -> Vendor specific action "
::= { ofFlowActionEntry 2 }
ofFlowActionSrcMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Action Source Mac address"
::= { ofFlowActionEntry 3 }
ofFlowActionDstMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Action Destination Mac"
::= { ofFlowActionEntry 4 }
ofFlowActionPortIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ifindex value of OpenFlow Flow Action Port"
::= { ofFlowActionEntry 5 }
ofFlowActionVlanId OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Action VLAN ID"
::= { ofFlowActionEntry 6 }
ofFlowActionMaxLen OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Action Max Length"
::= { ofFlowActionEntry 7 }
ofFlowActionVlanPcp OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Action VLAN PCP"
::= { ofFlowActionEntry 8 }
ofFlowActionNWTos OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OpenFlow Flow Action Network TOS"
::= { ofFlowActionEntry 9 }
-- ****************************************************************************
-- ## Alarm Group or Notifications ##
-- ****************************************************************************
ofSwitchNotifications OBJECT IDENTIFIER ::= { ofSwitchNotification 0 }
ofSwitchNotifyVariable OBJECT IDENTIFIER ::= { ofSwitchNotification 1 }
ofSwitchFlowTableSrc OBJECT-TYPE
SYNTAX INTEGER { ifp(1),
vlan(2),
dmac(3),
route(4),
lb(5) }
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
" The unique ID of an OpenFlow Table.
Used by ofSwitchFlowTableFull trap."
::= { ofSwitchNotifyVariable 1 }
-- ****************************************************************************
-- Notifications
-- ****************************************************************************
ofSwitchCntlrSessionStatusChanged NOTIFICATION-TYPE
OBJECTS { ofCntlrConState }
STATUS current
DESCRIPTION
"This notification is sent when ever Controller's Session
Status has changed."
::= { ofSwitchNotifications 1 }
ofSwitchFlowTableFull NOTIFICATION-TYPE
OBJECTS { ofSwitchFlowTableSrc }
STATUS current
DESCRIPTION
"This notification is sent when ever Flow Table reached
its maximum capacity. ofSwitchFlowTableSrc gives the id of the
Flow Table that reached max flows"
::= { ofSwitchNotifications 2 }
-- ****************************************************************************
-- Conformance Information
-- ****************************************************************************
ofSwitchMibConformance OBJECT IDENTIFIER
::= { ofSwitchObjects 14 }
ofSwitchMibCompliances OBJECT IDENTIFIER
::= { ofSwitchMibConformance 1 }
ofSwitchMibGroups OBJECT IDENTIFIER
::= { ofSwitchMibConformance 2 }
-- ****************************************************************************
-- * Compliance Statements
-- ****************************************************************************
ofSwitchMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the Dell Networking OS OpenFlow MIB."
MODULE
MANDATORY-GROUPS {
ofSwitchScalarGroup,
ofInstanceGroup,
ofControllerGroup,
ofPortGroup,
ofVlanGroup,
ofFlowGroup,
ofFlowMatchParamsGroup,
ofFlowActionGroup,
ofSwitchMibNotificationsGroup
}
::= { ofSwitchMibCompliances 1}
-- ****************************************************************************
-- Units of Conformance
-- ****************************************************************************
ofSwitchScalarGroup OBJECT-GROUP
OBJECTS {
ofSwitchId,
ofManufacturerDesc,
ofHardwareDesc,
ofSoftwareDesc,
ofSwitchSerialNo,
ofSwitchVersion
}
STATUS current
DESCRIPTION
"This represents group of objects that provides
OF Switch information."
::= { ofSwitchMibGroups 1 }
ofInstanceGroup OBJECT-GROUP
OBJECTS {
ofInstAdminState,
ofInstIntfType,
ofInstDataPathId,
ofInstConnectTimeout,
ofInstEchoReplyTimeout,
ofInstEchoReqInterval,
ofInstNumFlows,
ofInstSuppCapabilities,
ofInstSuppActions
}
STATUS current
DESCRIPTION
"This represents group of objects that provides
OF Instance information."
::= { ofSwitchMibGroups 2 }
ofControllerGroup OBJECT-GROUP
OBJECTS {
ofCntlrAddrType,
ofCntlrAddr,
ofCntlrPortNumber,
ofCntlrProtocol,
ofCntlrConState
}
STATUS current
DESCRIPTION
"This represents group of objects that provides
OF Controller information."
::= { ofSwitchMibGroups 3 }
ofPortGroup OBJECT-GROUP
OBJECTS {
ofPortAssociationType
}
STATUS current
DESCRIPTION
"This represents group of objects that provides information
about OF Port that corresponds to OF Instance."
::= { ofSwitchMibGroups 4 }
ofVlanGroup OBJECT-GROUP
OBJECTS {
ofVlanId
}
STATUS current
DESCRIPTION
"This represents group of objects that provides information
about OF VLAN that corresponds to OF Instance."
::= { ofSwitchMibGroups 5 }
ofFlowGroup OBJECT-GROUP
OBJECTS {
ofFlowPriority,
ofFlowIdleTime,
ofFlowHardTime,
ofFlowUpTime,
ofFlowCookie,
ofFlowPacketCount,
ofFlowByteCount
}
STATUS current
DESCRIPTION
"This represents group of objects that provides
OF Flow information."
::= { ofSwitchMibGroups 6 }
ofFlowMatchParamsGroup OBJECT-GROUP
OBJECTS {
ofFlowMatchInPort,
ofFlowMatchEtherSrcAddr,
ofFlowMatchEtherDstAddr,
ofFlowMatchVlanId,
ofFlowMatchEthType,
ofFlowMatchVlanPri,
ofFlowMatchIpTos,
ofFlowMatchIpProto,
ofFlowMatchIpSrcAddr,
ofFlowMatchIpDestAddr,
ofFlowMatchTpSrcPort,
ofFlowMatchTpDstPort
}
STATUS current
DESCRIPTION
"This represents group of objects that provides
OF Flow match information."
::= { ofSwitchMibGroups 7 }
ofFlowActionGroup OBJECT-GROUP
OBJECTS {
ofFlowActionType,
ofFlowActionSrcMac,
ofFlowActionDstMac,
ofFlowActionPortIndex,
ofFlowActionVlanId,
ofFlowActionMaxLen,
ofFlowActionVlanPcp,
ofFlowActionNWTos
}
STATUS current
DESCRIPTION
"This represents group of objects that provides information
about OF Flow Actions."
::= { ofSwitchMibGroups 8 }
ofSwitchMibNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ofSwitchCntlrSessionStatusChanged,
ofSwitchFlowTableFull
}
STATUS current
DESCRIPTION
"This represents Notification object of OF Switch."
::= { ofSwitchMibGroups 9 }
-- ****************************************************************************
-- End of Units of conformance
-- ****************************************************************************
END
|