Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Laboratory |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | <drivers> |
| 18 | <driver name="default" |
| 19 | manufacturer="ON.Lab" hwVersion="0.0.1" swVersion="0.0.1"> |
| 20 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 21 | impl="org.onosproject.driver.pipeline.DefaultSingleTablePipeline"/> |
| 22 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 23 | impl="org.onosproject.driver.handshaker.DefaultSwitchHandshaker"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 24 | </driver> |
| 25 | <driver name="ovs" extends="default" |
| 26 | manufacturer="Nicira, Inc\." hwVersion="Open vSwitch" swVersion="2\..*"> |
| 27 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 28 | impl="org.onosproject.driver.handshaker.NiciraSwitchHandshaker"/> |
alshabib | 880b644 | 2015-11-23 22:13:04 -0800 | [diff] [blame] | 29 | <behaviour api="org.onosproject.openflow.controller.ExtensionTreatmentInterpreter" |
| 30 | impl="org.onosproject.driver.extensions.NiciraExtensionTreatmentInterpreter" /> |
| 31 | <behaviour api="org.onosproject.net.behaviour.ExtensionTreatmentResolver" |
| 32 | impl="org.onosproject.driver.extensions.NiciraExtensionTreatmentInterpreter" /> |
Jonathan Hart | 26a8d95 | 2015-12-02 15:16:35 -0800 | [diff] [blame] | 33 | <behaviour api="org.onosproject.openflow.controller.ExtensionSelectorInterpreter" |
| 34 | impl="org.onosproject.driver.extensions.NiciraExtensionSelectorInterpreter" /> |
| 35 | <behaviour api="org.onosproject.net.behaviour.ExtensionSelectorResolver" |
| 36 | impl="org.onosproject.driver.extensions.NiciraExtensionSelectorInterpreter" /> |
HIGUCHI Yuta | b7a15d7 | 2015-12-15 09:54:40 -0800 | [diff] [blame] | 37 | <behaviour api="org.onosproject.net.behaviour.VlanQuery" |
| 38 | impl="org.onosproject.driver.query.FullVlanAvailable" /> |
| 39 | <behaviour api="org.onosproject.net.behaviour.MplsQuery" |
| 40 | impl="org.onosproject.driver.query.FullMplsAvailable" /> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 41 | </driver> |
Saurav Das | 822c4e2 | 2015-10-23 10:51:11 -0700 | [diff] [blame] | 42 | <!-- Emulation of the spring-open pipeline using a CPqD OF 1.3 software switch. |
| 43 | ~ This driver is the default driver assigned to the CPqD switch. |
| 44 | --> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 45 | <driver name="spring-open-cpqd" extends="default" |
| 46 | manufacturer="Stanford University, Ericsson Research and CPqD Research" |
| 47 | hwVersion="OpenFlow 1.3 Reference Userspace Switch" swVersion=".*"> |
| 48 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 49 | impl="org.onosproject.driver.pipeline.SpringOpenTTP"/> |
| 50 | </driver> |
| 51 | <driver name="spring-open" extends="default" |
| 52 | manufacturer="Dell " hwVersion="OpenFlow switch HW ver. 1.0" |
| 53 | swVersion="OpenFlow switch SW ver. 1.0 and 1.3"> |
| 54 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 55 | impl="org.onosproject.driver.pipeline.SpringOpenTTPDell"/> |
| 56 | </driver> |
| 57 | <driver name="linc-oe" extends="default" |
| 58 | manufacturer="FlowForwarding.org" hwVersion="Unknown" |
| 59 | swVersion="LINC-OE OpenFlow Software Switch 1.1"> |
| 60 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
Jonathan Hart | d9df7bd | 2015-11-10 17:10:25 -0800 | [diff] [blame] | 61 | impl="org.onosproject.driver.handshaker.OfOpticalSwitchImplLinc13"/> |
Marc De Leenheer | b0fb41d | 2015-12-03 22:16:53 -0800 | [diff] [blame] | 62 | <behaviour api="org.onosproject.net.behaviour.LambdaQuery" |
Marc De Leenheer | 622861d | 2015-12-15 22:52:52 -0800 | [diff] [blame] | 63 | impl="org.onosproject.driver.query.LincOELambdaQuery"/> |
HIGUCHI Yuta | 34a3f69 | 2016-01-09 21:08:57 -0800 | [diff] [blame] | 64 | <behaviour api="org.onosproject.net.optical.OpticalDevice" |
HIGUCHI Yuta | deae31e | 2016-05-11 09:50:39 -0700 | [diff] [blame] | 65 | impl="org.onosproject.net.optical.DefaultOpticalDevice"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 66 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 67 | <driver name="ofdpa" extends="default" |
| 68 | manufacturer="Broadcom Corp." hwVersion="OF-DPA.*" swVersion="OF-DPA.*"> |
| 69 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Charles Chan | 361154b | 2016-03-24 10:23:39 -0700 | [diff] [blame] | 70 | impl="org.onosproject.driver.pipeline.Ofdpa2Pipeline"/> |
Charles Chan | 14967c2 | 2015-12-07 11:11:50 -0800 | [diff] [blame] | 71 | <behaviour api="org.onosproject.openflow.controller.ExtensionTreatmentInterpreter" |
| 72 | impl="org.onosproject.driver.extensions.OfdpaExtensionTreatmentInterpreter" /> |
| 73 | <behaviour api="org.onosproject.net.behaviour.ExtensionTreatmentResolver" |
| 74 | impl="org.onosproject.driver.extensions.OfdpaExtensionTreatmentInterpreter" /> |
| 75 | <behaviour api="org.onosproject.openflow.controller.ExtensionSelectorInterpreter" |
| 76 | impl="org.onosproject.driver.extensions.OfdpaExtensionSelectorInterpreter" /> |
| 77 | <behaviour api="org.onosproject.net.behaviour.ExtensionSelectorResolver" |
| 78 | impl="org.onosproject.driver.extensions.OfdpaExtensionSelectorInterpreter" /> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 79 | </driver> |
alshabib | 48dc2f1 | 2016-04-18 10:17:17 -0700 | [diff] [blame] | 80 | <driver name="celestica" extends="default" |
| 81 | manufacturer="PMC GPON Networks" hwVersion="PAS5211 v2" swVersion="vOLT version 1.5.3.*"> |
| 82 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 83 | impl="org.onosproject.driver.pipeline.OltPipeline"/> |
| 84 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 85 | <driver name="pmc-olt" extends="default" |
alshabib | 2f74f2c | 2016-01-14 13:29:35 -0800 | [diff] [blame] | 86 | manufacturer="PMC GPON Networks" hwVersion="PASffffffff v-1" swVersion="vOLT.*"> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 87 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Jonathan Hart | b92cc51 | 2015-11-16 23:05:21 -0800 | [diff] [blame] | 88 | impl="org.onosproject.driver.pipeline.OltPipeline"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 89 | </driver> |
alshabib | 02c7aaf | 2016-01-14 14:20:26 -0800 | [diff] [blame] | 90 | <driver name="fj-olt" extends="default" |
| 91 | manufacturer="Fujitsu" hwVersion="svkOLT" swVersion="v1.0"> |
| 92 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 93 | impl="org.onosproject.driver.pipeline.OltPipeline"/> |
| 94 | </driver> |
Ke Han | 43cc16a | 2016-03-07 16:04:09 +0800 | [diff] [blame] | 95 | <driver name="nokia-olt" extends="default" |
| 96 | manufacturer="Nokia" hwVersion="" swVersion=""> |
| 97 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 98 | impl="org.onosproject.driver.pipeline.OltPipeline"/> |
| 99 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 100 | <driver name="g.fast" extends="default" |
| 101 | manufacturer="TEST1" hwVersion="TEST2" swVersion="TEST3"> |
| 102 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Jonathan Hart | b92cc51 | 2015-11-16 23:05:21 -0800 | [diff] [blame] | 103 | impl="org.onosproject.driver.pipeline.OltPipeline"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 104 | </driver> |
| 105 | <!-- The SoftRouter driver is meant to be used by any software/NPU based |
| 106 | ~ switch that wishes to implement a simple 2-table router. To use this |
| 107 | ~ driver, configure ONOS with the dpid of the device, or extend the |
| 108 | ~ driver declaration with the manufacturer/hwVersion/swVersion of the |
| 109 | ~ device (see 'noviflow' example). |
| 110 | --> |
| 111 | <driver name="softrouter" extends="default" |
| 112 | manufacturer="Various" hwVersion="various" swVersion="0.0.0"> |
| 113 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 114 | impl="org.onosproject.driver.pipeline.SoftRouterPipeline"/> |
| 115 | </driver> |
| 116 | <driver name="centec-V350" extends="default" |
| 117 | manufacturer=".*Centec.*" hwVersion=".*" swVersion="3.1.*"> |
| 118 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 119 | impl="org.onosproject.driver.pipeline.CentecV350Pipeline"/> |
| 120 | </driver> |
| 121 | <driver name="pica" extends="default" |
| 122 | manufacturer="Pica8, Inc." hwVersion=".*" swVersion="PicOS 2.6"> |
| 123 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 124 | impl="org.onosproject.driver.pipeline.PicaPipeline"/> |
| 125 | </driver> |
| 126 | <driver name="noviflow" extends="softrouter" |
| 127 | manufacturer="NoviFlow Inc" hwVersion="NS.*" swVersion="NW.*"> |
| 128 | </driver> |
| 129 | <!-- Emulation of the ofdpa pipeline using a CPqD OF 1.3 software switch. |
Saurav Das | 5202596 | 2016-01-28 22:30:01 -0800 | [diff] [blame] | 130 | ~ Use this driver when MPLS functionality is required. |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 131 | ~ To use this driver, configure ONOS with the dpid of the device. |
| 132 | --> |
| 133 | <driver name="ofdpa-cpqd" extends="default" |
| 134 | manufacturer="ONF" |
| 135 | hwVersion="OF1.3 Software Switch from CPqD" swVersion="for Group Chaining"> |
| 136 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Charles Chan | 361154b | 2016-03-24 10:23:39 -0700 | [diff] [blame] | 137 | impl="org.onosproject.driver.pipeline.CpqdOfdpa2Pipeline"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 138 | </driver> |
Saurav Das | 5202596 | 2016-01-28 22:30:01 -0800 | [diff] [blame] | 139 | <!-- Emulation of the ofdpa pipeline using a CPqD OF 1.3 software switch. |
| 140 | ~ Use this driver when VLAN functionality is required. |
| 141 | ~ To use this driver, configure ONOS with the dpid of the device. |
| 142 | --> |
| 143 | <driver name="ofdpa-cpqd-vlan" extends="default" |
| 144 | manufacturer="ONF" |
| 145 | hwVersion="OF1.3 Software Switch from CPqD" swVersion="for Group Chaining"> |
| 146 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Charles Chan | 361154b | 2016-03-24 10:23:39 -0700 | [diff] [blame] | 147 | impl="org.onosproject.driver.pipeline.CpqdOfdpa2VlanPipeline"/> |
Saurav Das | 5202596 | 2016-01-28 22:30:01 -0800 | [diff] [blame] | 148 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 149 | <driver name="calient" extends="default" |
Aneesha Pailla | 7f44bc3 | 2016-02-11 10:23:10 -0800 | [diff] [blame] | 150 | manufacturer="calient technologies inc" hwVersion="calient hardware.*" |
| 151 | swVersion="ocs software version.*"> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 152 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 153 | impl="org.onosproject.driver.handshaker.CalientFiberSwitchHandshaker"/> |
Marc De Leenheer | b0fb41d | 2015-12-03 22:16:53 -0800 | [diff] [blame] | 154 | <behaviour api="org.onosproject.net.behaviour.LambdaQuery" |
Marc De Leenheer | 622861d | 2015-12-15 22:52:52 -0800 | [diff] [blame] | 155 | impl="org.onosproject.driver.query.CalientLambdaQuery"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 156 | </driver> |
jiangrui | f04b955 | 2015-11-19 12:09:51 +0800 | [diff] [blame] | 157 | <driver name="onosfw" extends="ovs" |
CNlucius | a66c397 | 2015-09-06 20:31:29 +0800 | [diff] [blame] | 158 | manufacturer="" hwVersion="" swVersion=""> |
| 159 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 160 | impl="org.onosproject.driver.pipeline.OpenVSwitchPipeline"/> |
| 161 | </driver> |
Yafit Hadar | a9a73de | 2015-09-06 13:52:52 +0300 | [diff] [blame] | 162 | <driver name="eci" extends="default" |
Rimon Ashkenazy | 4ffab0d | 2015-11-23 14:21:07 +0200 | [diff] [blame] | 163 | manufacturer="ECI Telecom" hwVersion="Optical.*" swVersion="V_1_0"> |
Yafit Hadar | a9a73de | 2015-09-06 13:52:52 +0300 | [diff] [blame] | 164 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 165 | impl="org.onosproject.driver.handshaker.OFOpticalSwitch13"/> |
Toru Furusawa | c23f583 | 2015-12-04 11:39:18 -0800 | [diff] [blame] | 166 | <behaviour api="org.onosproject.net.behaviour.TributarySlotQuery" |
| 167 | impl="org.onosproject.driver.query.DefaultTributarySlotQuery" /> |
Rimon Ashkenazy | e320103 | 2016-01-11 14:27:30 +0200 | [diff] [blame] | 168 | <behaviour api="org.onosproject.net.behaviour.LambdaQuery" |
| 169 | impl="org.onosproject.driver.query.OFOpticalSwitch13LambdaQuery"/> |
HIGUCHI Yuta | 34a3f69 | 2016-01-09 21:08:57 -0800 | [diff] [blame] | 170 | <behaviour api="org.onosproject.net.optical.OpticalDevice" |
HIGUCHI Yuta | deae31e | 2016-05-11 09:50:39 -0700 | [diff] [blame] | 171 | impl="org.onosproject.net.optical.DefaultOpticalDevice"/> |
Yafit Hadar | a9a73de | 2015-09-06 13:52:52 +0300 | [diff] [blame] | 172 | </driver> |
Macauley Cheng | 696e1e8 | 2015-11-13 15:58:28 +0800 | [diff] [blame] | 173 | <driver name="aos" extends="ofdpa" |
| 174 | manufacturer="Accton" hwVersion=".*" swVersion="1.*"> |
| 175 | </driver> |
sanghoshin | 435392c | 2015-12-09 21:39:23 +0900 | [diff] [blame] | 176 | <driver name="sona" extends="ovs" |
| 177 | manufacturer="" hwVersion="" swVersion=""> |
| 178 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 179 | impl="org.onosproject.driver.pipeline.OpenstackPipeline"/> |
| 180 | </driver> |
Jimmy Jin | c019803 | 2016-01-04 13:26:10 -0800 | [diff] [blame] | 181 | <driver name="oplk-roadm" extends="default" |
| 182 | manufacturer="Oplink a Molex company" hwVersion="ROADM" |
| 183 | swVersion="of-agent"> |
| 184 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 185 | impl="org.onosproject.driver.handshaker.OplinkRoadmHandshaker"/> |
HIGUCHI Yuta | 34a3f69 | 2016-01-09 21:08:57 -0800 | [diff] [blame] | 186 | <behaviour api="org.onosproject.net.optical.OpticalDevice" |
HIGUCHI Yuta | deae31e | 2016-05-11 09:50:39 -0700 | [diff] [blame] | 187 | impl="org.onosproject.net.optical.DefaultOpticalDevice"/> |
Jimmy Jin | c019803 | 2016-01-04 13:26:10 -0800 | [diff] [blame] | 188 | </driver> |
Murat Parlakisik | 4f50e3f | 2016-04-11 03:24:44 -0700 | [diff] [blame] | 189 | <driver name="hp" extends="default" |
| 190 | manufacturer="HP" hwVersion="Switch 3500yl-48G" swVersion="K.16.01.0004"> |
| 191 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 192 | impl="org.onosproject.driver.pipeline.HpPipeline"/> |
| 193 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 194 | </drivers> |
| 195 | |