Simple configuration example

After logging in, you can paste the code below under Types > Add and get a virtual network with 3 VMs, which are fully meshed connected.

Triangle {
description = "Three interconnected hosts"
id="TriangleTestbed"
host { 
id="h1"
port { id="eth1" }
port { id="eth2" }
}
host {
id="h2"
port { id="eth1" }
port { id="eth2" }
}
host {
id="h3"
port { id="eth1" }
port { id="eth2" }
}
link {
id="l1"
port { id="src" }
port { id="dst" }
}
link {
id="l2"
port { id="src" }
port { id="dst" }
}
link {
id="l3"
port { id="src" }
port { id="dst" }
}
adjacency h1.eth1, l1.src
adjacency h2.eth2, l1.dst
adjacency h2.eth1, l2.src
adjacency h3.eth2, l2.dst
adjacency h1.eth2, l3.src
adjacency h3.eth1, l3.dst
}

Visualization of a virtual network with 3 VMs which are fully meshed connected.

 

Version: 28.09.2021