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