I have reserved 2 xl170 nodes. I want to create a profile with these w nodes connected over 25Gbps link.
The profile code I am running:
<rspec xmlns="
http://www.geni.net/resources/rspec/3"
xmlns:emulab="
http://www.protogeni.net/resources/rspec/ext/emulab/1"
xmlns:tour="
http://www.protogeni.net/resources/rspec/ext/apt-tour/1"
xmlns:jacks="
http://www.protogeni.net/resources/rspec/ext/jacks/1"
xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.geni.net/resources/rspec/3 http://www.geni.net/resources/rspec/3/request.xsd"
type="request">
<rspec_tour xmlns="
http://www.protogeni.net/resources/rspec/ext/apt-tour/1">
<description xmlns="" type="markdown">RDMA Project on CloudLab XL170 Nodes with 10Gb and 25Gb Links</description>
</rspec_tour>
<!-- Node 1 -->
<node client_id="xl1" exclusive="true">
<sliver_type name="raw">
<disk_image name="urn:publicid:IDN+
emulab.net+image+emulab-ops//UBUNTU22-64-STD"/>
</sliver_type>
<hardware_type name="xl170"/>
<interface client_id="xl1:interface-0"/>
<interface client_id="xl1:interface-2"/>
</node>
<!-- Node 2 -->
<node client_id="xl2" exclusive="true">
<sliver_type name="raw">
<disk_image name="urn:publicid:IDN+
emulab.net+image+emulab-ops//UBUNTU22-64-STD"/>
</sliver_type>
<hardware_type name="xl170"/>
<interface client_id="xl2:interface-1"/>
<interface client_id="xl2:interface-3"/>
</node>
<!-- 25 Gbps Link -->
<link client_id="link-25Gb">
<interface_ref client_id="xl1:interface-0"/>
<interface_ref client_id="xl2:interface-1"/>
<property source_id="xl1:interface-0" dest_id="xl2:interface-1" capacity="25000000"/>
<property source_id="xl2:interface-1" dest_id="xl1:interface-0" capacity="25000000"/>
</link>
<!-- 10 Gbps Link -->
<link client_id="link-10Gb">
<interface_ref client_id="xl1:interface-2"/>
<interface_ref client_id="xl2:interface-3"/>
<property source_id="xl1:interface-2" dest_id="xl2:interface-3" capacity="10000000"/>
<property source_id="xl2:interface-3" dest_id="xl1:interface-2" capacity="10000000"/>
</link>
</rspec>
However, when I instantiate it I get the following error:
*** No possible mapping for xl1
Too many links of type ethernet! (2 requested, 1 found)
*** No possible mapping for xl2
Too many links of type ethernet! (2 requested, 1 found)