90 | | In this section we will modify the GENI-in-a-Box RSpec named "three-nodes-lan.rspec" to be used at ProtoGENI. Here is the contents of the file before the modifications: |
91 | | {{{ |
92 | | <rspec type="request" |
93 | | xmlns="http://www.geni.net/resources/rspec/3" |
94 | | xmlns:flack="http://www.protogeni.net/resources/rspec/ext/flack/1" |
95 | | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
96 | | xsi:schemaLocation="http://www.geni.net/resources/rspec/3 |
97 | | http://www.geni.net/resources/rspec/3/request.xsd"> |
98 | | |
99 | | <node client_id="left" component_manager_id="urn:publicid:IDN+pgeni.gpolab.bbn.com+authority+cm" exclusive="true"> |
100 | | <sliver_type name="raw-pc"> |
101 | | <disk_image name="urn:publicid:IDN+pgeni.gpolab.bbn.com+image+emulab-ops:UBUNTU1004-STD" os="Linux" version="Ubuntu10.04"/> |
102 | | </sliver_type> |
103 | | <interface client_id="left:if0"> |
104 | | </interface> |
105 | | </node> |
106 | | |
107 | | <node client_id="right" component_manager_id="urn:publicid:IDN+pgeni.gpolab.bbn.com+authority+cm" exclusive="true"> |
108 | | <sliver_type name="raw-pc"> |
109 | | <disk_image name="urn:publicid:IDN+pgeni.gpolab.bbn.com+image+emulab-ops:UBUNTU1004-STD" os="Linux" version="Ubuntu10.04"/> |
110 | | </sliver_type> |
111 | | <interface client_id="right:if0"> |
112 | | </interface> |
113 | | </node> |
114 | | |
115 | | <node client_id="middle" component_manager_id="urn:publicid:IDN+pgeni.gpolab.bbn.com+authority+cm" exclusive="true"> |
116 | | <sliver_type name="raw-pc"> |
117 | | <disk_image name="urn:publicid:IDN+pgeni.gpolab.bbn.com+image+emulab-ops:UBUNTU1004-STD" os="Linux" version="Ubuntu10.04"/> |
118 | | </sliver_type> |
119 | | <interface client_id="middle:if0"> |
120 | | </interface> |
121 | | </node> |
122 | | |
123 | | <link client_id="lan0"> |
124 | | <component_manager name="urn:publicid:IDN+pgeni.gpolab.bbn.com+authority+cm"/> |
125 | | <interface_ref client_id="left:if0"/> |
126 | | <interface_ref client_id="right:if0"/> |
127 | | <interface_ref client_id="middle:if0"/> |
128 | | <property source_id="left:if0" dest_id="right:if0"/> |
129 | | <property source_id="left:if0" dest_id="middle:if0"/> |
130 | | <property source_id="right:if0" dest_id="left:if0"/> |
131 | | <property source_id="right:if0" dest_id="middle:if0"/> |
132 | | <property source_id="middle:if0" dest_id="left:if0"/> |
133 | | <property source_id="middle:if0" dest_id="right:if0"/> |
134 | | <link_type name="lan"/> |
135 | | </link> |
136 | | </rspec> |
137 | | }}} |
138 | | |
139 | | Edit the file "three-nodes-lan.rspec" to introduce the modification needed for this RSpec to work at ProGENI: |
| 90 | In this section we will modify the GENI-in-a-Box RSpec named "three-nodes-lan.rspec" to be used at ProtoGENI. Edit the file "three-nodes-lan.rspec" to introduce the modification needed: |