1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <!-- |
---|
3 | This example RSpec shows how to request the OpenFlow datapath for |
---|
4 | the BBN ExoGENI Rack on shared OpenFlow VLAN 1750 |
---|
5 | |
---|
6 | AM: https://foam.gpolab.bbn.com:3626/foam/gapi/1 |
---|
7 | --> |
---|
8 | |
---|
9 | <rspec xmlns="http://www.geni.net/resources/rspec/3" |
---|
10 | xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" |
---|
11 | xmlns:openflow="http://www.geni.net/resources/rspec/ext/openflow/3" |
---|
12 | xs:schemaLocation="http://www.geni.net/resources/rspec/3 |
---|
13 | http://www.geni.net/resources/rspec/3/request.xsd |
---|
14 | http://www.geni.net/resources/rspec/ext/openflow/3 |
---|
15 | http://www.geni.net/resources/rspec/ext/openflow/3/of-resv.xsd" |
---|
16 | type="request"> |
---|
17 | |
---|
18 | <openflow:sliver description="Sliver to allow BBN ExoGENI and other OF Sites communication over over backbone VLAN 3716 " |
---|
19 | email="yourname@site.com"> |
---|
20 | |
---|
21 | <openflow:controller url="tcp:yourhost.site.com:33020" type="primary" /> |
---|
22 | |
---|
23 | <openflow:group name="Site-1750-nlr-3716"> |
---|
24 | <openflow:datapath component_id="urn:publicid:IDN+openflow:foam:foam.gpolab.bbn.com+datapath+06:d6:00:12:e2:b8:a5:d0" |
---|
25 | component_manager_id="urn:publicid:IDN+openflow:foam:foam.gpolab.bbn.com+authority+am"> |
---|
26 | <openflow:port num="5"/> <!-- to NLR 3716 --> |
---|
27 | <openflow:port num="15"/> <!-- to BBN ExoGENI rack --> |
---|
28 | </openflow:datapath> |
---|
29 | </openflow:group> |
---|
30 | |
---|
31 | <openflow:match> |
---|
32 | |
---|
33 | <openflow:use-group name="Site-1750-nlr-3716" /> |
---|
34 | |
---|
35 | <openflow:packet> |
---|
36 | <openflow:dl_type value="0x800,0x806"/> |
---|
37 | <openflow:nw_dst value="10.42.11.0/24"/> |
---|
38 | <openflow:nw_src value="10.42.11.0/24"/> |
---|
39 | </openflow:packet> |
---|
40 | |
---|
41 | </openflow:match> |
---|
42 | </openflow:sliver> |
---|
43 | |
---|
44 | </rspec> |
---|