I have inserted 8 tap interfaces in a Cisco Libvirt xml file that will create a guestmachine running Ciscio iOs image:
<interface type="ethernet">
<start mode="onboot" />
<target dev="cisco-89" />
</interface>
<interface type="ethernet">
<start mode="onboot" />
<target dev="cisco-90" />
</interface>
<interface type="ethernet">
<start mode="onboot" />
<target dev="cisco-91" />
</interface>
<interface type="ethernet">
<start mode="onboot" />
<target dev="cisco-92" />
</interface>
<interface type="ethernet">
<start mode="onboot" />
<target dev="cisco-93" />
</interface>
etc
However, what I want to find out is, when I boot up the Cisco iOs image and type show interfaces summary, it gives me a list of:
GigabyteEthernet1 GigabyteEthernet2 GigabyteEthernet3 etc
How do I know which tap device is assigned to which GigabyteEthernet inside the guestmachine?
Do I assume that cisco-89 corresponds to GigabyteEthernet1?
Thanks in advance