alshabib | 77b8848 | 2015-04-07 15:47:50 -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> |
Saurav Das | e3274c8 | 2015-05-24 17:21:56 -0700 | [diff] [blame] | 18 | <driver name="default" |
| 19 | manufacturer="ON.Lab" hwVersion="0.0.1" swVersion="0.0.1"> |
alshabib | 77b8848 | 2015-04-07 15:47:50 -0700 | [diff] [blame] | 20 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 21 | impl="org.onosproject.driver.pipeline.DefaultSingleTablePipeline"/> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 22 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
Madan Jampani | 1b8ea34 | 2015-05-27 17:22:59 -0700 | [diff] [blame] | 23 | impl="org.onosproject.driver.handshaker.DefaultSwitchHandshaker"/> |
alshabib | 77b8848 | 2015-04-07 15:47:50 -0700 | [diff] [blame] | 24 | </driver> |
Saurav Das | e3274c8 | 2015-05-24 17:21:56 -0700 | [diff] [blame] | 25 | <driver name="ovs" extends="default" |
| 26 | manufacturer="Nicira, Inc\." hwVersion="Open vSwitch" swVersion="2\..*"> |
Thomas Vachuska | e9002d0 | 2015-05-21 09:50:09 -0700 | [diff] [blame] | 27 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
Madan Jampani | 1b8ea34 | 2015-05-27 17:22:59 -0700 | [diff] [blame] | 28 | impl="org.onosproject.driver.handshaker.NiciraSwitchHandshaker"/> |
samuel | 2a31ea5 | 2015-08-05 18:41:47 +0800 | [diff] [blame] | 29 | <behaviour api="org.onosproject.net.behaviour.TunnelConfig" |
| 30 | impl="org.onosproject.driver.ovsdb.OvsdbTunnelConfig"/> |
| 31 | <behaviour api="org.onosproject.net.behaviour.BridgeConfig" |
| 32 | impl="org.onosproject.driver.ovsdb.OvsdbBridgeConfig"/> |
Thomas Vachuska | e9002d0 | 2015-05-21 09:50:09 -0700 | [diff] [blame] | 33 | </driver> |
| 34 | <driver name="ovs-corsa" extends="ovs" |
Saurav Das | c39f603 | 2015-05-14 17:12:47 -0700 | [diff] [blame] | 35 | manufacturer="Corsa" hwVersion="emulation" swVersion="0.0.0"> |
alshabib | aebe775 | 2015-04-07 17:45:42 -0700 | [diff] [blame] | 36 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 37 | impl="org.onosproject.driver.pipeline.OVSCorsaPipeline"/> |
| 38 | </driver> |
Thomas Vachuska | ecc614d | 2015-05-11 08:57:56 -0700 | [diff] [blame] | 39 | <driver name="spring-open-cpqd" extends="default" |
Saurav Das | decd7a6 | 2015-05-16 22:39:47 -0700 | [diff] [blame] | 40 | manufacturer="Stanford University, Ericsson Research and CPqD Research" |
| 41 | hwVersion="OpenFlow 1.3 Reference Userspace Switch" swVersion=".*"> |
Srikanth Vavilapalli | f5b234a | 2015-04-21 13:04:13 -0700 | [diff] [blame] | 42 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 43 | impl="org.onosproject.driver.pipeline.SpringOpenTTP"/> |
| 44 | </driver> |
Thomas Vachuska | ecc614d | 2015-05-11 08:57:56 -0700 | [diff] [blame] | 45 | <driver name="spring-open" extends="default" |
Saurav Das | decd7a6 | 2015-05-16 22:39:47 -0700 | [diff] [blame] | 46 | manufacturer="Dell " hwVersion="OpenFlow switch HW ver. 1.0" |
| 47 | swVersion="OpenFlow switch SW ver. 1.0 and 1.3"> |
Srikanth Vavilapalli | f5b234a | 2015-04-21 13:04:13 -0700 | [diff] [blame] | 48 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 49 | impl="org.onosproject.driver.pipeline.SpringOpenTTPDell"/> |
| 50 | </driver> |
Thomas Vachuska | ecc614d | 2015-05-11 08:57:56 -0700 | [diff] [blame] | 51 | <driver name="linc-oe" extends="default" |
Saurav Das | decd7a6 | 2015-05-16 22:39:47 -0700 | [diff] [blame] | 52 | manufacturer="FlowForwarding.org" hwVersion="Unknown" |
| 53 | swVersion="LINC-OE OpenFlow Software Switch 1.1"> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 54 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 55 | impl="org.onosproject.driver.handshaker.OFOpticalSwitchImplLINC13"/> |
| 56 | </driver> |
Saurav Das | e3274c8 | 2015-05-24 17:21:56 -0700 | [diff] [blame] | 57 | <driver name="corsa" |
| 58 | manufacturer="Corsa" hwVersion="Corsa Element" swVersion="2.3.1"> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 59 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Saurav Das | d8b9700 | 2015-05-14 23:42:49 -0700 | [diff] [blame] | 60 | impl="org.onosproject.driver.pipeline.CorsaPipeline"/> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 61 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
Madan Jampani | 1b8ea34 | 2015-05-27 17:22:59 -0700 | [diff] [blame] | 62 | impl="org.onosproject.driver.handshaker.CorsaSwitchHandshaker"/> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 63 | </driver> |
Thomas Vachuska | ecc614d | 2015-05-11 08:57:56 -0700 | [diff] [blame] | 64 | <driver name="ofdpa" extends="default" |
Saurav Das | a499eda | 2015-08-17 17:16:32 -0700 | [diff] [blame] | 65 | manufacturer="Broadcom Corp." hwVersion="OF-DPA.*" swVersion="OF-DPA.*"> |
Saurav Das | 100e3b8 | 2015-04-30 11:12:10 -0700 | [diff] [blame] | 66 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 67 | impl="org.onosproject.driver.pipeline.OFDPA1Pipeline"/> |
| 68 | </driver> |
alshabib | 0ccde6d | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 69 | <driver name="pmc-olt" extends="default" |
| 70 | manufacturer="Big Switch Networks" hwVersion="ivs 0.5" swVersion="ivs 0.5"> |
| 71 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 72 | impl="org.onosproject.driver.pipeline.OLTPipeline"/> |
| 73 | </driver> |
alshabib | 17cde6d | 2015-06-05 15:03:51 -0700 | [diff] [blame] | 74 | <driver name="g.fast" extends="default" |
| 75 | manufacturer="TEST1" hwVersion="TEST2" swVersion="TEST3"> |
| 76 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 77 | impl="org.onosproject.driver.pipeline.OLTPipeline"/> |
| 78 | </driver> |
Saurav Das | decd7a6 | 2015-05-16 22:39:47 -0700 | [diff] [blame] | 79 | <!-- The SoftRouter driver is meant to be used by any software/NPU based |
Saurav Das | 558afec | 2015-05-31 17:12:48 -0700 | [diff] [blame] | 80 | ~ switch that wishes to implement a simple 2-table router. To use this |
| 81 | ~ driver, configure ONOS with the dpid of the device, or extend the |
| 82 | ~ driver declaration with the manufacturer/hwVersion/swVersion of the |
| 83 | ~ device (see 'noviflow' example). |
Saurav Das | decd7a6 | 2015-05-16 22:39:47 -0700 | [diff] [blame] | 84 | --> |
| 85 | <driver name="softrouter" extends="default" |
| 86 | manufacturer="Various" hwVersion="various" swVersion="0.0.0"> |
| 87 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 88 | impl="org.onosproject.driver.pipeline.SoftRouterPipeline"/> |
| 89 | </driver> |
Saurav Das | e3274c8 | 2015-05-24 17:21:56 -0700 | [diff] [blame] | 90 | <driver name="centec-V350" extends="default" |
| 91 | manufacturer=".*Centec.*" hwVersion=".*" swVersion="3.1.*"> |
| 92 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 93 | impl="org.onosproject.driver.pipeline.CentecV350Pipeline"/> |
| 94 | </driver> |
| 95 | <driver name="pica" extends="default" |
Saurav Das | 337c7a4 | 2015-06-02 15:12:06 -0700 | [diff] [blame] | 96 | manufacturer="Pica8, Inc." hwVersion=".*" swVersion="PicOS 2.6"> |
Saurav Das | e3274c8 | 2015-05-24 17:21:56 -0700 | [diff] [blame] | 97 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 98 | impl="org.onosproject.driver.pipeline.PicaPipeline"/> |
| 99 | </driver> |
Saurav Das | 6c44a63 | 2015-05-30 22:05:22 -0700 | [diff] [blame] | 100 | <driver name="noviflow" extends="softrouter" |
Saurav Das | a499eda | 2015-08-17 17:16:32 -0700 | [diff] [blame] | 101 | manufacturer="NoviFlow Inc" hwVersion="NS.*" swVersion="NW.*"> |
Saurav Das | 6c44a63 | 2015-05-30 22:05:22 -0700 | [diff] [blame] | 102 | </driver> |
Saurav Das | 558afec | 2015-05-31 17:12:48 -0700 | [diff] [blame] | 103 | <!-- Emulation of the ofdpa pipeline using a CPqD OF 1.3 software switch. |
| 104 | ~ To use this driver, configure ONOS with the dpid of the device. |
| 105 | --> |
| 106 | <driver name="ofdpa-cpqd" extends="default" |
| 107 | manufacturer="ONF" |
| 108 | hwVersion="OF1.3 Software Switch from CPqD" swVersion="for Group Chaining"> |
| 109 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 110 | impl="org.onosproject.driver.pipeline.CpqdOFDPA1Pipeline"/> |
| 111 | </driver> |
Marc De Leenheer | b931137 | 2015-07-09 11:36:49 -0700 | [diff] [blame] | 112 | <driver name="calient" extends="default" |
| 113 | manufacturer="calient inc" hwVersion="calient hardware" |
| 114 | swVersion="ocs switch"> |
| 115 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 116 | impl="org.onosproject.driver.handshaker.CalientFiberSwitchHandshaker"/> |
| 117 | </driver> |
Srikanth Vavilapalli | f5b234a | 2015-04-21 13:04:13 -0700 | [diff] [blame] | 118 | </drivers> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 119 | |