Committed by
Gerrit Code Review
[Emu] SONA: OpenstackSwitching
Added the sona pipeline information to onos-drivers xml file Added the driver information to network-config file Change-Id: I7a90100813b15f3dcb1b18c102a697b941450e6b
Showing
2 changed files
with
34 additions
and
12 deletions
... | @@ -3,8 +3,8 @@ | ... | @@ -3,8 +3,8 @@ |
3 | "org.onosproject.openstackswitching" : { | 3 | "org.onosproject.openstackswitching" : { |
4 | "openstackswitching" : { | 4 | "openstackswitching" : { |
5 | "do_not_push_flows" : "false", | 5 | "do_not_push_flows" : "false", |
6 | - "neutron_server" : "http://127.0.0.1:9696/v2.0/", | 6 | + "neutron_server" : "http://10.40.101.209:9696/v2.0/", |
7 | - "keystone_server" : "http://127.0.0.1:5000/v2.0/", | 7 | + "keystone_server" : "http://10.40.101.209:5000/v2.0/", |
8 | "user_name" : "admin", | 8 | "user_name" : "admin", |
9 | "password" : "nova" | 9 | "password" : "nova" |
10 | } | 10 | } |
... | @@ -29,27 +29,44 @@ | ... | @@ -29,27 +29,44 @@ |
29 | }, | 29 | }, |
30 | "org.onosproject.cordvtn" : { | 30 | "org.onosproject.cordvtn" : { |
31 | "cordvtn" : { | 31 | "cordvtn" : { |
32 | - "ovsdbNodes" : [ | 32 | + "nodes" : [ |
33 | { | 33 | { |
34 | - "host" : "compute-01", | 34 | + "hostname" : "compute-01", |
35 | - "ip" : "128.199.162.106", | 35 | + "ovsdbIp" : "10.40.101.208", |
36 | - "port" : "6640", | 36 | + "ovsdbPort" : "6640", |
37 | "bridgeId" : "of:0000000000000001" | 37 | "bridgeId" : "of:0000000000000001" |
38 | }, | 38 | }, |
39 | { | 39 | { |
40 | - "host" : "compute-02", | 40 | + "hostname" : "compute-02", |
41 | - "ip" : "103.253.145.133", | 41 | + "ovsdbIp" : "10.40.101.227", |
42 | - "port" : "6640", | 42 | + "ovsdbPort" : "6640", |
43 | "bridgeId" : "of:0000000000000002" | 43 | "bridgeId" : "of:0000000000000002" |
44 | }, | 44 | }, |
45 | { | 45 | { |
46 | - "host" : "network", | 46 | + "hostname" : "network", |
47 | - "ip" : "128.199.125.11", | 47 | + "ovsdbIp" : "10.40.101.209", |
48 | - "port" : "6640", | 48 | + "ovsdbPort" : "6640", |
49 | "bridgeId" : "of:0000000000000003" | 49 | "bridgeId" : "of:0000000000000003" |
50 | } | 50 | } |
51 | ] | 51 | ] |
52 | } | 52 | } |
53 | } | 53 | } |
54 | + }, | ||
55 | + "devices" : { | ||
56 | + "of:0000000000000001" : { | ||
57 | + "basic" : { | ||
58 | + "driver" : "sona" | ||
59 | + } | ||
60 | + }, | ||
61 | + "of:0000000000000002" : { | ||
62 | + "basic" : { | ||
63 | + "driver" : "sona" | ||
64 | + } | ||
65 | + }, | ||
66 | + "of:0000000000000003" : { | ||
67 | + "basic" : { | ||
68 | + "driver" : "sona" | ||
69 | + } | ||
70 | + } | ||
54 | } | 71 | } |
55 | } | 72 | } | ... | ... |
... | @@ -153,5 +153,10 @@ | ... | @@ -153,5 +153,10 @@ |
153 | <driver name="aos" extends="ofdpa" | 153 | <driver name="aos" extends="ofdpa" |
154 | manufacturer="Accton" hwVersion=".*" swVersion="1.*"> | 154 | manufacturer="Accton" hwVersion=".*" swVersion="1.*"> |
155 | </driver> | 155 | </driver> |
156 | + <driver name="sona" extends="ovs" | ||
157 | + manufacturer="" hwVersion="" swVersion=""> | ||
158 | + <behaviour api="org.onosproject.net.behaviour.Pipeliner" | ||
159 | + impl="org.onosproject.driver.pipeline.OpenstackPipeline"/> | ||
160 | + </driver> | ||
156 | </drivers> | 161 | </drivers> |
157 | 162 | ... | ... |
-
Please register or login to post a comment