Jovana Vuleta | 1de6126 | 2017-06-14 11:10:29 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2017-present Open Networking Foundation |
Jovana Vuleta | 1de6126 | 2017-06-14 11:10:29 +0200 | [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 | --> |
Alessio Giorgetti | c1518bb | 2017-11-17 17:01:26 +0100 | [diff] [blame] | 17 | |
| 18 | <!-- |
| 19 | ~ hp-switch drivers supports HP switches of types V1-V2-V3 |
| 20 | ~ |
| 21 | ~ Currently supported V1 switches HP2910, HP3500, HP6200, HP6600 |
| 22 | ~ Currently supported V2 switches HP2920, HP3800, HP5400, HP8200 |
| 23 | ~ Currently supported V3 switches HP2930, HP3810, HP5400R |
| 24 | ~ |
| 25 | ~ Switches 5400 and 8200 support V1 and V2 depending on switch configuration |
| 26 | ~ Switch 5400R supports V2 and V3 depending on switch configuration |
| 27 | ~ |
| 28 | ~ Supported features and features supported in hardware increase from V1->V2->V3 |
| 29 | ~ If the switch model is not recognized it will operate as V1 |
| 30 | ~ |
| 31 | ~ Driver tested for HP3500 and HP3800 |
| 32 | --> |
| 33 | |
| 34 | <!-- |
| 35 | ~ aruba-switch drivers recognizes Aruba switches |
| 36 | ~ |
| 37 | ~ Currently supported Aruba switches: Aruba 7000, Aruba 7200 |
| 38 | ~ |
| 39 | ~ These switches simply operate using default ONOS driver, TO BE TESTED |
| 40 | --> |
| 41 | |
Jovana Vuleta | 1de6126 | 2017-06-14 11:10:29 +0200 | [diff] [blame] | 42 | <drivers> |
Thomas Vachuska | 43155c1 | 2018-06-04 10:32:28 -0700 | [diff] [blame] | 43 | <driver name="hp-switch" extends="default" manufacturer="(HP|Aruba)" swVersion=".*"> |
Jovana Vuleta | 1de6126 | 2017-06-14 11:10:29 +0200 | [diff] [blame] | 44 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
Alessio Giorgetti | c1518bb | 2017-11-17 17:01:26 +0100 | [diff] [blame] | 45 | impl="org.onosproject.drivers.hp.HPPipelineV1"/> |
Jovana Vuleta | 1de6126 | 2017-06-14 11:10:29 +0200 | [diff] [blame] | 46 | <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver" |
| 47 | impl="org.onosproject.drivers.hp.HPSwitchHandshaker"/> |
| 48 | </driver> |
Thomas Vachuska | 2272438 | 2017-10-24 11:10:12 -0700 | [diff] [blame] | 49 | |
Alessio Giorgetti | c1518bb | 2017-11-17 17:01:26 +0100 | [diff] [blame] | 50 | <driver name="hp-2910" extends="hp-switch" hwVersion=".*2910.*"> |
| 51 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 52 | impl="org.onosproject.drivers.hp.HPPipelineV1"/> |
| 53 | </driver> |
Thomas Vachuska | 2272438 | 2017-10-24 11:10:12 -0700 | [diff] [blame] | 54 | |
Alessio Giorgetti | c1518bb | 2017-11-17 17:01:26 +0100 | [diff] [blame] | 55 | <driver name="hp-2920" extends="hp-switch" hwVersion=".*2920.*"> |
| 56 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 57 | impl="org.onosproject.drivers.hp.HPPipelineV2"/> |
| 58 | </driver> |
| 59 | |
| 60 | <driver name="hp-2930" extends="hp-switch" hwVersion=".*2930.*"> |
| 61 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 62 | impl="org.onosproject.drivers.hp.HPPipelineV3"/> |
| 63 | </driver> |
| 64 | |
| 65 | <driver name="hp-3500" extends="hp-switch" hwVersion=".*3500.*"> |
| 66 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 67 | impl="org.onosproject.drivers.hp.HPPipelineV1"/> |
| 68 | </driver> |
| 69 | |
| 70 | <driver name="hp-3800" extends="hp-switch" hwVersion=".*3800.*"> |
| 71 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 72 | impl="org.onosproject.drivers.hp.HPPipelineV2"/> |
| 73 | </driver> |
| 74 | |
| 75 | <driver name="hp-3810" extends="hp-switch" hwVersion=".*3810.*"> |
| 76 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 77 | impl="org.onosproject.drivers.hp.HPPipelineV3"/> |
| 78 | </driver> |
| 79 | |
| 80 | <driver name="hp-5400" extends="hp-switch" hwVersion=".*54[0-9][0-9]z.*"> |
| 81 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 82 | impl="org.onosproject.drivers.hp.HPPipelineV2"/> |
| 83 | </driver> |
| 84 | |
| 85 | <driver name="hp-5400R" extends="hp-switch" hwVersion=".*54[0-9][0-9]R.*"> |
| 86 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 87 | impl="org.onosproject.drivers.hp.HPPipelineV3"/> |
| 88 | </driver> |
| 89 | |
| 90 | <driver name="hp-6200" extends="hp-switch" hwVersion=".*6200.*"> |
| 91 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 92 | impl="org.onosproject.drivers.hp.HPPipelineV1"/> |
| 93 | </driver> |
| 94 | |
| 95 | <driver name="hp-6600" extends="hp-switch" hwVersion=".*6600.*"> |
| 96 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 97 | impl="org.onosproject.drivers.hp.HPPipelineV1"/> |
| 98 | </driver> |
| 99 | |
| 100 | <driver name="hp-8200" extends="hp-switch" hwVersion=".*82[0-9][0-9].*"> |
| 101 | <behaviour api="org.onosproject.net.behaviour.Pipeliner" |
| 102 | impl="org.onosproject.drivers.hp.HPPipelineV2"/> |
| 103 | </driver> |
| 104 | |
| 105 | <driver name="aruba-switch" extends="default" manufacturer="Aruba" swVersion=".*"/> |
| 106 | <driver name="aruba-7000" extends="aruba-switch" hwVersion=".*Aruba70[0-9][0-9].*"/> |
| 107 | <driver name="aruba-7200" extends="aruba-switch" hwVersion=".*Aruba72[0-9][0-9].*"/> |
Thomas Vachuska | 2272438 | 2017-10-24 11:10:12 -0700 | [diff] [blame] | 108 | |
Jovana Vuleta | 1de6126 | 2017-06-14 11:10:29 +0200 | [diff] [blame] | 109 | </drivers> |