Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2015 Open Networking Laboratory |
| 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"/> |
| 24 | <behaviour api="org.onosproject.net.behaviour.TunnelConfig" |
| 25 | impl="org.onosproject.driver.ovsdb.OvsdbTunnelConfig"/> |
| 26 | <behaviour api="org.onosproject.net.behaviour.BridgeConfig" |
| 27 | impl="org.onosproject.driver.ovsdb.OvsdbBridgeConfig"/> |
| 28 | </driver> |
| 29 | <driver name="ovs" extends="default" |
| 30 | manufacturer="Nicira, Inc\." hwVersion="Open vSwitch" swVersion="2\..*"> |
| 31 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 32 | impl="org.onosproject.driver.handshaker.NiciraSwitchHandshaker"/> |
andrea | ed976a4 | 2015-10-05 14:38:25 -0700 | [diff] [blame] | 33 | <behaviour api="org.onosproject.net.behaviour.ControllerConfig" |
| 34 | impl="org.onosproject.driver.ovsdb.OvsdbControllerConfig"/> |
alshabib | 880b644 | 2015-11-23 22:13:04 -0800 | [diff] [blame] | 35 | <behaviour api="org.onosproject.openflow.controller.ExtensionTreatmentInterpreter" |
| 36 | impl="org.onosproject.driver.extensions.NiciraExtensionTreatmentInterpreter" /> |
| 37 | <behaviour api="org.onosproject.net.behaviour.ExtensionTreatmentResolver" |
| 38 | impl="org.onosproject.driver.extensions.NiciraExtensionTreatmentInterpreter" /> |
Jonathan Hart | 26a8d95 | 2015-12-02 15:16:35 -0800 | [diff] [blame] | 39 | <behaviour api="org.onosproject.openflow.controller.ExtensionSelectorInterpreter" |
| 40 | impl="org.onosproject.driver.extensions.NiciraExtensionSelectorInterpreter" /> |
| 41 | <behaviour api="org.onosproject.net.behaviour.ExtensionSelectorResolver" |
| 42 | impl="org.onosproject.driver.extensions.NiciraExtensionSelectorInterpreter" /> |
HIGUCHI Yuta | b7a15d7 | 2015-12-15 09:54:40 -0800 | [diff] [blame] | 43 | <behaviour api="org.onosproject.net.behaviour.VlanQuery" |
| 44 | impl="org.onosproject.driver.query.FullVlanAvailable" /> |
| 45 | <behaviour api="org.onosproject.net.behaviour.MplsQuery" |
| 46 | impl="org.onosproject.driver.query.FullMplsAvailable" /> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 47 | </driver> |
andrea | 0e47288 | 2015-11-23 10:18:32 -0800 | [diff] [blame] | 48 | <!--This driver is for simulated NETCONF devices through of-config tool on top og OVSDB--> |
Andrea Campanella | 80520b8 | 2016-01-05 17:55:29 -0800 | [diff] [blame] | 49 | <driver name="ovs-netconf" extends="default,ovs" |
andrea | 0e47288 | 2015-11-23 10:18:32 -0800 | [diff] [blame] | 50 | manufacturer="" hwVersion="" swVersion=""> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 51 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 52 | impl="org.onosproject.driver.handshaker.NiciraSwitchHandshaker"/> |
| 53 | <behaviour api="org.onosproject.net.behaviour.ControllerConfig" |
| 54 | impl="org.onosproject.driver.netconf.NetconfControllerConfig"/> |
Aaron Kruglikov | 12faf8d | 2016-01-04 16:24:07 -0800 | [diff] [blame] | 55 | <behaviour api="org.onosproject.net.behaviour.ConfigGetter" |
| 56 | impl="org.onosproject.driver.netconf.NetconfConfigGetter"/> |
| 57 | </driver> |
| 58 | <driver name="netconf" extends="default"> |
| 59 | <behaviour api="org.onosproject.net.behaviour.ConfigGetter" |
| 60 | impl="org.onosproject.driver.netconf.NetconfConfigGetter"/> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 61 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 62 | <driver name="ovs-corsa" extends="ovs" |
| 63 | manufacturer="Corsa" hwVersion="emulation" swVersion="0.0.0"> |
| 64 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 65 | impl="org.onosproject.driver.pipeline.OVSCorsaPipeline"/> |
| 66 | </driver> |
Saurav Das | 822c4e2 | 2015-10-23 10:51:11 -0700 | [diff] [blame] | 67 | <!-- Emulation of the spring-open pipeline using a CPqD OF 1.3 software switch. |
| 68 | ~ This driver is the default driver assigned to the CPqD switch. |
| 69 | --> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 70 | <driver name="spring-open-cpqd" extends="default" |
| 71 | manufacturer="Stanford University, Ericsson Research and CPqD Research" |
| 72 | hwVersion="OpenFlow 1.3 Reference Userspace Switch" swVersion=".*"> |
| 73 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 74 | impl="org.onosproject.driver.pipeline.SpringOpenTTP"/> |
| 75 | </driver> |
| 76 | <driver name="spring-open" extends="default" |
| 77 | manufacturer="Dell " hwVersion="OpenFlow switch HW ver. 1.0" |
| 78 | swVersion="OpenFlow switch SW ver. 1.0 and 1.3"> |
| 79 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 80 | impl="org.onosproject.driver.pipeline.SpringOpenTTPDell"/> |
| 81 | </driver> |
| 82 | <driver name="linc-oe" extends="default" |
| 83 | manufacturer="FlowForwarding.org" hwVersion="Unknown" |
| 84 | swVersion="LINC-OE OpenFlow Software Switch 1.1"> |
| 85 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
Jonathan Hart | d9df7bd | 2015-11-10 17:10:25 -0800 | [diff] [blame] | 86 | impl="org.onosproject.driver.handshaker.OfOpticalSwitchImplLinc13"/> |
Marc De Leenheer | b0fb41d | 2015-12-03 22:16:53 -0800 | [diff] [blame] | 87 | <behaviour api="org.onosproject.net.behaviour.LambdaQuery" |
Marc De Leenheer | 622861d | 2015-12-15 22:52:52 -0800 | [diff] [blame] | 88 | impl="org.onosproject.driver.query.LincOELambdaQuery"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 89 | </driver> |
| 90 | <driver name="corsa" |
| 91 | manufacturer="Corsa" hwVersion="Corsa Element" swVersion="2.3.1"> |
| 92 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 93 | impl="org.onosproject.driver.pipeline.CorsaPipeline"/> |
| 94 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 95 | impl="org.onosproject.driver.handshaker.CorsaSwitchHandshaker"/> |
| 96 | </driver> |
Jonathan Gravel | 8c9f7bc | 2015-12-03 15:46:20 -0500 | [diff] [blame] | 97 | <driver name="corsa-v1" |
| 98 | manufacturer="Corsa" hwVersion="Corsa Element" swVersion="2.3.1"> |
| 99 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 100 | impl="org.onosproject.driver.pipeline.CorsaPipeline"/> |
| 101 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 102 | impl="org.onosproject.driver.handshaker.CorsaSwitchHandshaker"/> |
| 103 | </driver> |
| 104 | <driver name="corsa-v3" |
| 105 | manufacturer="Corsa" hwVersion="Corsa Element" swVersion="2.3.1"> |
| 106 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 107 | impl="org.onosproject.driver.pipeline.CorsaPipelineV3"/> |
| 108 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 109 | impl="org.onosproject.driver.handshaker.CorsaSwitchHandshaker"/> |
| 110 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 111 | <driver name="ofdpa" extends="default" |
| 112 | manufacturer="Broadcom Corp." hwVersion="OF-DPA.*" swVersion="OF-DPA.*"> |
| 113 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Saurav Das | 822c4e2 | 2015-10-23 10:51:11 -0700 | [diff] [blame] | 114 | impl="org.onosproject.driver.pipeline.OFDPA2Pipeline"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 115 | </driver> |
| 116 | <driver name="pmc-olt" extends="default" |
alshabib | 2f74f2c | 2016-01-14 13:29:35 -0800 | [diff] [blame] | 117 | manufacturer="PMC GPON Networks" hwVersion="PASffffffff v-1" swVersion="vOLT.*"> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 118 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Jonathan Hart | b92cc51 | 2015-11-16 23:05:21 -0800 | [diff] [blame] | 119 | impl="org.onosproject.driver.pipeline.OltPipeline"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 120 | </driver> |
alshabib | 02c7aaf | 2016-01-14 14:20:26 -0800 | [diff] [blame] | 121 | <driver name="fj-olt" extends="default" |
| 122 | manufacturer="Fujitsu" hwVersion="svkOLT" swVersion="v1.0"> |
| 123 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 124 | impl="org.onosproject.driver.pipeline.OltPipeline"/> |
| 125 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 126 | <driver name="g.fast" extends="default" |
| 127 | manufacturer="TEST1" hwVersion="TEST2" swVersion="TEST3"> |
| 128 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Jonathan Hart | b92cc51 | 2015-11-16 23:05:21 -0800 | [diff] [blame] | 129 | impl="org.onosproject.driver.pipeline.OltPipeline"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 130 | </driver> |
Andrea Campanella | d8d92db | 2016-01-14 16:24:41 -0800 | [diff] [blame] | 131 | <driver name="restCiena" manufacturer="Ciena" hwVersion="1.0.0" swVersion="1.0.0"> |
| 132 | <behaviour api="org.onosproject.net.behaviour.PortDiscovery" |
| 133 | impl="org.onosproject.driver.rest.PortDiscoveryCienaWaveserverImpl"/> |
Andrea Campanella | 945ded2 | 2016-01-07 13:17:43 -0800 | [diff] [blame] | 134 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 135 | <!-- The SoftRouter driver is meant to be used by any software/NPU based |
| 136 | ~ switch that wishes to implement a simple 2-table router. To use this |
| 137 | ~ driver, configure ONOS with the dpid of the device, or extend the |
| 138 | ~ driver declaration with the manufacturer/hwVersion/swVersion of the |
| 139 | ~ device (see 'noviflow' example). |
| 140 | --> |
| 141 | <driver name="softrouter" extends="default" |
| 142 | manufacturer="Various" hwVersion="various" swVersion="0.0.0"> |
| 143 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 144 | impl="org.onosproject.driver.pipeline.SoftRouterPipeline"/> |
| 145 | </driver> |
| 146 | <driver name="centec-V350" extends="default" |
| 147 | manufacturer=".*Centec.*" hwVersion=".*" swVersion="3.1.*"> |
| 148 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 149 | impl="org.onosproject.driver.pipeline.CentecV350Pipeline"/> |
| 150 | </driver> |
| 151 | <driver name="pica" extends="default" |
| 152 | manufacturer="Pica8, Inc." hwVersion=".*" swVersion="PicOS 2.6"> |
| 153 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 154 | impl="org.onosproject.driver.pipeline.PicaPipeline"/> |
| 155 | </driver> |
| 156 | <driver name="noviflow" extends="softrouter" |
| 157 | manufacturer="NoviFlow Inc" hwVersion="NS.*" swVersion="NW.*"> |
| 158 | </driver> |
| 159 | <!-- Emulation of the ofdpa pipeline using a CPqD OF 1.3 software switch. |
| 160 | ~ To use this driver, configure ONOS with the dpid of the device. |
| 161 | --> |
| 162 | <driver name="ofdpa-cpqd" extends="default" |
| 163 | manufacturer="ONF" |
| 164 | hwVersion="OF1.3 Software Switch from CPqD" swVersion="for Group Chaining"> |
| 165 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Saurav Das | 822c4e2 | 2015-10-23 10:51:11 -0700 | [diff] [blame] | 166 | impl="org.onosproject.driver.pipeline.CpqdOFDPA2Pipeline"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 167 | </driver> |
| 168 | <driver name="calient" extends="default" |
| 169 | manufacturer="calient inc" hwVersion="calient hardware" |
| 170 | swVersion="ocs switch"> |
| 171 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 172 | impl="org.onosproject.driver.handshaker.CalientFiberSwitchHandshaker"/> |
Marc De Leenheer | b0fb41d | 2015-12-03 22:16:53 -0800 | [diff] [blame] | 173 | <behaviour api="org.onosproject.net.behaviour.LambdaQuery" |
Marc De Leenheer | 622861d | 2015-12-15 22:52:52 -0800 | [diff] [blame] | 174 | impl="org.onosproject.driver.query.CalientLambdaQuery"/> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 175 | </driver> |
jiangrui | f04b955 | 2015-11-19 12:09:51 +0800 | [diff] [blame] | 176 | <driver name="onosfw" extends="ovs" |
CNlucius | a66c397 | 2015-09-06 20:31:29 +0800 | [diff] [blame] | 177 | manufacturer="" hwVersion="" swVersion=""> |
| 178 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 179 | impl="org.onosproject.driver.pipeline.OpenVSwitchPipeline"/> |
| 180 | </driver> |
Yafit Hadar | a9a73de | 2015-09-06 13:52:52 +0300 | [diff] [blame] | 181 | <driver name="eci" extends="default" |
Rimon Ashkenazy | 4ffab0d | 2015-11-23 14:21:07 +0200 | [diff] [blame] | 182 | manufacturer="ECI Telecom" hwVersion="Optical.*" swVersion="V_1_0"> |
Yafit Hadar | a9a73de | 2015-09-06 13:52:52 +0300 | [diff] [blame] | 183 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 184 | impl="org.onosproject.driver.handshaker.OFOpticalSwitch13"/> |
Toru Furusawa | c23f583 | 2015-12-04 11:39:18 -0800 | [diff] [blame] | 185 | <behaviour api="org.onosproject.net.behaviour.TributarySlotQuery" |
| 186 | impl="org.onosproject.driver.query.DefaultTributarySlotQuery" /> |
Rimon Ashkenazy | e320103 | 2016-01-11 14:27:30 +0200 | [diff] [blame] | 187 | <behaviour api="org.onosproject.net.behaviour.LambdaQuery" |
| 188 | impl="org.onosproject.driver.query.OFOpticalSwitch13LambdaQuery"/> |
Yafit Hadar | a9a73de | 2015-09-06 13:52:52 +0300 | [diff] [blame] | 189 | </driver> |
Macauley Cheng | 696e1e8 | 2015-11-13 15:58:28 +0800 | [diff] [blame] | 190 | <driver name="aos" extends="ofdpa" |
| 191 | manufacturer="Accton" hwVersion=".*" swVersion="1.*"> |
| 192 | </driver> |
sanghoshin | 435392c | 2015-12-09 21:39:23 +0900 | [diff] [blame] | 193 | <driver name="sona" extends="ovs" |
| 194 | manufacturer="" hwVersion="" swVersion=""> |
| 195 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 196 | impl="org.onosproject.driver.pipeline.OpenstackPipeline"/> |
| 197 | </driver> |
Jimmy Jin | c019803 | 2016-01-04 13:26:10 -0800 | [diff] [blame] | 198 | <driver name="oplk-roadm" extends="default" |
| 199 | manufacturer="Oplink a Molex company" hwVersion="ROADM" |
| 200 | swVersion="of-agent"> |
| 201 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 202 | impl="org.onosproject.driver.handshaker.OplinkRoadmHandshaker"/> |
| 203 | </driver> |
Sho SHIMIZU | a48d3a0 | 2015-08-25 13:33:02 -0700 | [diff] [blame] | 204 | </drivers> |
| 205 | |