diff --git a/GIT-VIRL-HS-Fulda/!Experiments/cumulus-ospf.virl b/GIT-VIRL-HS-Fulda/!Experiments/cumulus-ospf.virl
new file mode 100644
index 0000000000000000000000000000000000000000..f7c118d2319add548fadd84511a26d6a36e2fd5b
--- /dev/null
+++ b/GIT-VIRL-HS-Fulda/!Experiments/cumulus-ospf.virl
@@ -0,0 +1,322 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.9" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.9/virl.xsd">
+    <extensions>
+        <entry key="management_network" type="String">exclusive</entry>
+    </extensions>
+    <node name="cumulusvx-1" type="SIMPLE" subtype="CumulusVX" location="386,146">
+        <extensions>
+            <entry key="config" type="String">#!/bin/bash&#xD;
+&#xD;
+# vars&#xD;
+IP="10.0.0.1"&#xD;
+HOSTNAME="cumulusvx-1"&#xD;
+&#xD;
+# test touch&#xD;
+touch /tmp/cumulusvx-config&#xD;
+&#xD;
+# add VIRL user&#xD;
+useradd -m cisco -s /bin/bash&#xD;
+echo "cisco:cisco" | chpasswd&#xD;
+addgroup cisco sudo&#xD;
+&#xD;
+# set hostname&#xD;
+echo "$IP	$HOSTNAME" &gt;&gt;/etc/hosts&#xD;
+echo "$HOSTNAME" &gt;/etc/hostname&#xD;
+hostname $HOSTNAME&#xD;
+&#xD;
+# add network interface config&#xD;
+cat &lt;&lt; EOF &gt;&gt;/etc/network/interfaces&#xD;
+&#xD;
+auto lo:1&#xD;
+iface lo:1&#xD;
+address $IP/32&#xD;
+&#xD;
+auto swp1&#xD;
+iface swp1&#xD;
+address $IP/32&#xD;
+&#xD;
+auto swp2&#xD;
+iface swp2&#xD;
+address $IP/32&#xD;
+EOF&#xD;
+&#xD;
+ifup -a&#xD;
+&#xD;
+# add ospf daemon to quagga&#xD;
+sed -i.bak -e s/"ospfd=no"/"ospfd=yes"/g /etc/quagga/daemons&#xD;
+sed -i.bak -e s/"zebra=no"/"zebra=yes"/g /etc/quagga/daemons&#xD;
+service quagga restart&#xD;
+&#xD;
+# add quagga config&#xD;
+cat &lt;&lt; EOF &gt; /etc/quagga/Quagga.conf&#xD;
+hostname $HOSTNAME&#xD;
+log file /var/log/quagga/ospfd.log&#xD;
+log timestamp precision 6&#xD;
+username cumulus nopassword&#xD;
+!&#xD;
+service integrated-vtysh-config&#xD;
+!&#xD;
+password cn321&#xD;
+enable password cn321&#xD;
+!&#xD;
+interface swp1&#xD;
+ ip ospf network point-to-point&#xD;
+!&#xD;
+interface swp2&#xD;
+ ip ospf network point-to-point&#xD;
+!&#xD;
+router ospf&#xD;
+ ospf router-id $IP&#xD;
+ network $IP/32 area 0.0.0.0&#xD;
+!&#xD;
+line vty&#xD;
+!&#xD;
+EOF&#xD;
+&#xD;
+service quagga restart</entry>
+        </extensions>
+        <interface id="0" name="swp1"/>
+        <interface id="1" name="swp2"/>
+    </node>
+    <node name="cumulusvx-2" type="SIMPLE" subtype="CumulusVX" location="629,146">
+        <extensions>
+            <entry key="config" type="String">#!/bin/bash&#xD;
+&#xD;
+# vars&#xD;
+IP="10.0.0.2"&#xD;
+HOSTNAME="cumulusvx-2"&#xD;
+&#xD;
+# test touch&#xD;
+touch /tmp/cumulusvx-config&#xD;
+&#xD;
+# add VIRL user&#xD;
+useradd -m cisco -s /bin/bash&#xD;
+echo "cisco:cisco" | chpasswd&#xD;
+addgroup cisco sudo&#xD;
+&#xD;
+# set hostname&#xD;
+echo "$IP	$HOSTNAME" &gt;&gt;/etc/hosts&#xD;
+echo "$HOSTNAME" &gt;/etc/hostname&#xD;
+hostname $HOSTNAME&#xD;
+&#xD;
+# add network interface config&#xD;
+cat &lt;&lt; EOF &gt;&gt;/etc/network/interfaces&#xD;
+&#xD;
+auto lo:1&#xD;
+iface lo:1&#xD;
+address $IP/32&#xD;
+&#xD;
+auto swp1&#xD;
+iface swp1&#xD;
+address $IP/32&#xD;
+&#xD;
+auto swp2&#xD;
+iface swp2&#xD;
+address $IP/32&#xD;
+EOF&#xD;
+&#xD;
+ifup -a&#xD;
+&#xD;
+# add ospf daemon to quagga&#xD;
+sed -i.bak -e s/"ospfd=no"/"ospfd=yes"/g /etc/quagga/daemons&#xD;
+sed -i.bak -e s/"zebra=no"/"zebra=yes"/g /etc/quagga/daemons&#xD;
+service quagga restart&#xD;
+&#xD;
+# add quagga config&#xD;
+cat &lt;&lt; EOF &gt; /etc/quagga/Quagga.conf&#xD;
+hostname $HOSTNAME&#xD;
+log file /var/log/quagga/ospfd.log&#xD;
+log timestamp precision 6&#xD;
+username cumulus nopassword&#xD;
+!&#xD;
+service integrated-vtysh-config&#xD;
+!&#xD;
+password cn321&#xD;
+enable password cn321&#xD;
+!&#xD;
+interface swp1&#xD;
+ ip ospf network point-to-point&#xD;
+!&#xD;
+interface swp2&#xD;
+ ip ospf network point-to-point&#xD;
+!&#xD;
+router ospf&#xD;
+ ospf router-id $IP&#xD;
+ network $IP/32 area 0.0.0.0&#xD;
+!&#xD;
+line vty&#xD;
+!&#xD;
+EOF&#xD;
+&#xD;
+service quagga restart</entry>
+        </extensions>
+        <interface id="0" name="swp1"/>
+        <interface id="1" name="swp2"/>
+    </node>
+    <node name="cumulusvx-3" type="SIMPLE" subtype="CumulusVX" location="629,275">
+        <extensions>
+            <entry key="config" type="String">#!/bin/bash&#xD;
+&#xD;
+# vars&#xD;
+IP="10.0.0.3"&#xD;
+LEAF_IP="10.21.0.1"&#xD;
+HOSTNAME="cumulusvx-3"&#xD;
+&#xD;
+# test touch&#xD;
+touch /tmp/cumulusvx-config&#xD;
+&#xD;
+# add VIRL user&#xD;
+useradd -m cisco -s /bin/bash&#xD;
+echo "cisco:cisco" | chpasswd&#xD;
+addgroup cisco sudo&#xD;
+&#xD;
+# set hostname&#xD;
+echo "$IP	$HOSTNAME" &gt;&gt;/etc/hosts&#xD;
+echo "$HOSTNAME" &gt;/etc/hostname&#xD;
+hostname $HOSTNAME&#xD;
+&#xD;
+# add network interface config&#xD;
+cat &lt;&lt; EOF &gt;&gt;/etc/network/interfaces&#xD;
+&#xD;
+auto lo:1&#xD;
+iface lo:1&#xD;
+address $IP/32&#xD;
+&#xD;
+auto lo:2&#xD;
+iface lo:2&#xD;
+address $LEAF_IP/24&#xD;
+&#xD;
+auto swp1&#xD;
+iface swp1&#xD;
+address $IP/32&#xD;
+&#xD;
+auto swp2&#xD;
+iface swp2&#xD;
+address $IP/32&#xD;
+EOF&#xD;
+&#xD;
+ifup -a&#xD;
+&#xD;
+# add ospf daemon to quagga&#xD;
+sed -i.bak -e s/"ospfd=no"/"ospfd=yes"/g /etc/quagga/daemons&#xD;
+sed -i.bak -e s/"zebra=no"/"zebra=yes"/g /etc/quagga/daemons&#xD;
+service quagga restart&#xD;
+&#xD;
+# add quagga config&#xD;
+cat &lt;&lt; EOF &gt; /etc/quagga/Quagga.conf&#xD;
+hostname $HOSTNAME&#xD;
+log file /var/log/quagga/ospfd.log&#xD;
+log timestamp precision 6&#xD;
+username cumulus nopassword&#xD;
+!&#xD;
+service integrated-vtysh-config&#xD;
+!&#xD;
+password cn321&#xD;
+enable password cn321&#xD;
+!&#xD;
+interface swp1&#xD;
+ ip ospf network point-to-point&#xD;
+!&#xD;
+interface swp2&#xD;
+ ip ospf network point-to-point&#xD;
+!&#xD;
+router ospf&#xD;
+ ospf router-id $IP&#xD;
+ network $IP/32 area 0.0.0.0&#xD;
+ network $LEAF_IP/24 area 0.0.0.0&#xD;
+!&#xD;
+line vty&#xD;
+!&#xD;
+EOF&#xD;
+&#xD;
+service quagga restart</entry>
+        </extensions>
+        <interface id="0" name="swp1"/>
+        <interface id="1" name="swp2"/>
+    </node>
+    <node name="cumulusvx-4" type="SIMPLE" subtype="CumulusVX" location="386,275">
+        <extensions>
+            <entry key="config" type="String">#!/bin/bash&#xD;
+&#xD;
+# vars&#xD;
+IP="10.0.0.4"&#xD;
+LEAF_IP="10.11.0.1"&#xD;
+HOSTNAME="cumulusvx-4"&#xD;
+&#xD;
+# test touch&#xD;
+touch /tmp/cumulusvx-config&#xD;
+&#xD;
+# add VIRL user&#xD;
+useradd -m cisco -s /bin/bash&#xD;
+echo "cisco:cisco" | chpasswd&#xD;
+addgroup cisco sudo&#xD;
+&#xD;
+# set hostname&#xD;
+echo "$IP	$HOSTNAME" &gt;&gt;/etc/hosts&#xD;
+echo "$HOSTNAME" &gt;/etc/hostname&#xD;
+hostname $HOSTNAME&#xD;
+&#xD;
+# add network interface config&#xD;
+cat &lt;&lt; EOF &gt;&gt;/etc/network/interfaces&#xD;
+&#xD;
+auto lo:1&#xD;
+iface lo:1&#xD;
+address $IP/32&#xD;
+&#xD;
+auto lo:2&#xD;
+iface lo:2&#xD;
+address $LEAF_IP/24&#xD;
+&#xD;
+auto swp1&#xD;
+iface swp1&#xD;
+address $IP/32&#xD;
+&#xD;
+auto swp2&#xD;
+iface swp2&#xD;
+address $IP/32&#xD;
+EOF&#xD;
+&#xD;
+ifup -a&#xD;
+&#xD;
+# add ospf daemon to quagga&#xD;
+sed -i.bak -e s/"ospfd=no"/"ospfd=yes"/g /etc/quagga/daemons&#xD;
+sed -i.bak -e s/"zebra=no"/"zebra=yes"/g /etc/quagga/daemons&#xD;
+service quagga restart&#xD;
+&#xD;
+# add quagga config&#xD;
+cat &lt;&lt; EOF &gt; /etc/quagga/Quagga.conf&#xD;
+hostname $HOSTNAME&#xD;
+log file /var/log/quagga/ospfd.log&#xD;
+log timestamp precision 6&#xD;
+username cumulus nopassword&#xD;
+!&#xD;
+service integrated-vtysh-config&#xD;
+!&#xD;
+password cn321&#xD;
+enable password cn321&#xD;
+!&#xD;
+interface swp1&#xD;
+ ip ospf network point-to-point&#xD;
+!&#xD;
+interface swp2&#xD;
+ ip ospf network point-to-point&#xD;
+!&#xD;
+router ospf&#xD;
+ ospf router-id $IP&#xD;
+ network $IP/32 area 0.0.0.0&#xD;
+ network $LEAF_IP/24 area 0.0.0.0&#xD;
+!&#xD;
+line vty&#xD;
+!&#xD;
+EOF&#xD;
+&#xD;
+service quagga restart</entry>
+        </extensions>
+        <interface id="0" name="swp1"/>
+        <interface id="1" name="swp2"/>
+    </node>
+    <connection dst="/virl:topology/virl:node[4]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[1]"/>
+    <connection dst="/virl:topology/virl:node[3]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[2]"/>
+    <connection dst="/virl:topology/virl:node[3]/virl:interface[2]" src="/virl:topology/virl:node[2]/virl:interface[1]"/>
+    <connection dst="/virl:topology/virl:node[4]/virl:interface[2]" src="/virl:topology/virl:node[2]/virl:interface[2]"/>
+</topology>
diff --git a/GIT-VIRL-HS-Fulda/!Experiments/smb-lxc.virl b/GIT-VIRL-HS-Fulda/!Experiments/smb-lxc.virl
new file mode 100644
index 0000000000000000000000000000000000000000..8753cda62c6264d5b74c46838a856dc2a5caa51e
--- /dev/null
+++ b/GIT-VIRL-HS-Fulda/!Experiments/smb-lxc.virl
@@ -0,0 +1,542 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.9" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.9/virl.xsd">
+    <extensions>
+        <entry key="management_network" type="String">exclusive</entry>
+    </extensions>
+    <node name="flat-1" type="ASSET" subtype="FLAT" location="288,78">
+        <interface id="0" name="link0"/>
+    </node>
+    <node name="iosv-1" type="SIMPLE" subtype="IOSv" location="397,74">
+        <extensions>
+            <entry key="AutoNetkit.mgmt_ip" type="string"></entry>
+            <entry key="config" type="String">!&#xD;
+! Last configuration change at 21:23:40 UTC Thu Sep 3 2015&#xD;
+!&#xD;
+version 15.5&#xD;
+service timestamps debug datetime msec&#xD;
+service timestamps log datetime msec&#xD;
+no service password-encryption&#xD;
+!&#xD;
+hostname iosv-1&#xD;
+!&#xD;
+boot-start-marker&#xD;
+boot-end-marker&#xD;
+!&#xD;
+!&#xD;
+vrf definition Mgmt-intf&#xD;
+ !&#xD;
+ address-family ipv4&#xD;
+ exit-address-family&#xD;
+ !&#xD;
+ address-family ipv6&#xD;
+ exit-address-family&#xD;
+!&#xD;
+enable password cisco&#xD;
+!&#xD;
+no aaa new-model&#xD;
+ethernet lmi ce&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+mmi polling-interval 60&#xD;
+no mmi auto-configure&#xD;
+no mmi pvc&#xD;
+mmi snmp-timeout 180&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+no ip domain lookup&#xD;
+ip cef&#xD;
+ipv6 unicast-routing&#xD;
+ipv6 cef&#xD;
+!&#xD;
+multilink bundle-name authenticated&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+redundancy&#xD;
+!&#xD;
+no cdp run&#xD;
+!&#xD;
+! &#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+interface Loopback0&#xD;
+ description Loopback&#xD;
+ ip address 192.168.0.1 255.255.255.255&#xD;
+!&#xD;
+interface GigabitEthernet0/0&#xD;
+ description OOB Management&#xD;
+ vrf forwarding Mgmt-intf&#xD;
+ ip address 10.255.0.116 255.255.0.0&#xD;
+ duplex full&#xD;
+ speed auto&#xD;
+ media-type rj45&#xD;
+!&#xD;
+interface GigabitEthernet0/1&#xD;
+ description to iosvl2-3&#xD;
+ ip address 10.0.0.1 255.255.0.0&#xD;
+ ip nat inside&#xD;
+ ip virtual-reassembly in&#xD;
+ ip ospf cost 1&#xD;
+ duplex full&#xD;
+ speed auto&#xD;
+ media-type rj45&#xD;
+!&#xD;
+interface GigabitEthernet0/2&#xD;
+ description to flat-1&#xD;
+ ip address 172.16.1.89 255.255.255.0&#xD;
+ ip nat outside&#xD;
+ ip virtual-reassembly in&#xD;
+ duplex full&#xD;
+ speed auto&#xD;
+ media-type rj45&#xD;
+!&#xD;
+router ospf 1&#xD;
+ passive-interface Loopback0&#xD;
+ network 10.0.0.0 0.0.255.255 area 0&#xD;
+ network 192.168.0.1 0.0.0.0 area 0&#xD;
+!&#xD;
+ip forward-protocol nd&#xD;
+!&#xD;
+!&#xD;
+no ip http server&#xD;
+no ip http secure-server&#xD;
+ip nat pool flatpool 172.16.1.89 172.16.1.89 prefix-length 30&#xD;
+ip nat inside source list 1 pool flatpool overload&#xD;
+ip route 0.0.0.0 0.0.0.0 172.16.1.254&#xD;
+!&#xD;
+!&#xD;
+!&#xD;
+access-list 1 permit 10.0.0.0 0.255.255.255&#xD;
+!&#xD;
+control-plane&#xD;
+!&#xD;
+banner exec `&#xD;
+**************************************************************************&#xD;
+* IOSv is strictly limited to use for evaluation, demonstration and IOS  *&#xD;
+* education. IOSv is provided as-is and is not supported by Cisco's      *&#xD;
+* Technical Advisory Center. Any use or disclosure, in whole or in part, *&#xD;
+* of the IOSv Software or Documentation to any third party for any       *&#xD;
+* purposes is expressly prohibited except as otherwise authorized by     *&#xD;
+* Cisco in writing.                                                      *&#xD;
+**************************************************************************`&#xD;
+banner incoming `&#xD;
+**************************************************************************&#xD;
+* IOSv is strictly limited to use for evaluation, demonstration and IOS  *&#xD;
+* education. IOSv is provided as-is and is not supported by Cisco's      *&#xD;
+* Technical Advisory Center. Any use or disclosure, in whole or in part, *&#xD;
+* of the IOSv Software or Documentation to any third party for any       *&#xD;
+* purposes is expressly prohibited except as otherwise authorized by     *&#xD;
+* Cisco in writing.                                                      *&#xD;
+**************************************************************************`&#xD;
+banner login `&#xD;
+**************************************************************************&#xD;
+* IOSv is strictly limited to use for evaluation, demonstration and IOS  *&#xD;
+* education. IOSv is provided as-is and is not supported by Cisco's      *&#xD;
+* Technical Advisory Center. Any use or disclosure, in whole or in part, *&#xD;
+* of the IOSv Software or Documentation to any third party for any       *&#xD;
+* purposes is expressly prohibited except as otherwise authorized by     *&#xD;
+* Cisco in writing.                                                      *&#xD;
+**************************************************************************`&#xD;
+!&#xD;
+line con 0&#xD;
+ password cisco&#xD;
+line aux 0&#xD;
+line vty 0 4&#xD;
+ exec-timeout 720 0&#xD;
+ password cisco&#xD;
+ login&#xD;
+ transport input telnet ssh&#xD;
+!&#xD;
+no scheduler allocate&#xD;
+!&#xD;
+end</entry>
+        </extensions>
+        <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.1" netPrefixLenV4="16"/>
+        <interface id="1" name="GigabitEthernet0/2"/>
+    </node>
+    <node name="iosvl2-1" type="SIMPLE" subtype="IOSvL2" location="251,242">
+        <extensions>
+            <entry key="config" type="string">! IOSvL2 Config generated on 2015-09-03 21:26
+! by autonetkit_0.18.1
+!
+version 15.2
+service timestamps debug datetime msec
+service timestamps log datetime msec
+no service password-encryption
+service compress-config
+no service config
+enable password cisco
+ip classless
+ip subnet-zero
+no ip domain lookup
+!
+line vty 0 4
+transport input ssh telnet
+exec-timeout 720 0
+password cisco
+login
+!
+line con 0
+password cisco
+!
+hostname iosvl2-1
+!
+boot-start-marker
+boot-end-marker
+!
+!
+!
+no aaa new-model
+!
+!
+!
+!
+!
+!
+!
+!
+ip cef
+no ipv6 cef
+!
+!
+spanning-tree mode pvst
+spanning-tree extend system-id
+!
+vlan internal allocation policy ascending
+!
+!
+!
+!
+vrf definition Mgmt-intf
+!
+ address-family ipv4
+ exit-address-family
+ !
+ address-family ipv6
+ exit-address-family
+!
+!
+!
+!
+!
+interface Loopback0
+  description Loopback
+!
+interface GigabitEthernet0/0
+  description Mapped to Vlan1 for management
+  ! Configured on launch
+  switchport mode access
+  no shutdown
+!
+interface GigabitEthernet0/1
+  description to iosvl2-3
+  switchport trunk encapsulation dot1q
+  switchport mode trunk
+  no shutdown
+!
+interface GigabitEthernet0/2
+  description to server-1
+  switchport access vlan 2
+  switchport mode access
+  no shutdown
+!
+interface Vlan1
+  description OOB Management
+  ! Configured on launch
+  vrf forwarding Mgmt-intf
+  no ip address
+!
+!
+ip forward-protocol nd
+!
+no ip http server
+no ip http secure-server
+!
+!
+!
+!
+!
+!
+control-plane
+!
+!
+!
+end
+        </entry>
+            <entry key="AutoNetkit.mgmt_ip" type="string"></entry>
+        </extensions>
+        <interface id="0" name="GigabitEthernet0/1"/>
+        <interface id="1" name="GigabitEthernet0/2"/>
+        <interface id="2" name="GigabitEthernet0/3"/>
+    </node>
+    <node name="iosvl2-2" type="SIMPLE" subtype="IOSvL2" location="517,242">
+        <extensions>
+            <entry key="config" type="string">! IOSvL2 Config generated on 2015-09-03 21:26
+! by autonetkit_0.18.1
+!
+version 15.2
+service timestamps debug datetime msec
+service timestamps log datetime msec
+no service password-encryption
+service compress-config
+no service config
+enable password cisco
+ip classless
+ip subnet-zero
+no ip domain lookup
+!
+line vty 0 4
+transport input ssh telnet
+exec-timeout 720 0
+password cisco
+login
+!
+line con 0
+password cisco
+!
+hostname iosvl2-2
+!
+boot-start-marker
+boot-end-marker
+!
+!
+!
+no aaa new-model
+!
+!
+!
+!
+!
+!
+!
+!
+ip cef
+no ipv6 cef
+!
+!
+spanning-tree mode pvst
+spanning-tree extend system-id
+!
+vlan internal allocation policy ascending
+!
+!
+!
+!
+vrf definition Mgmt-intf
+!
+ address-family ipv4
+ exit-address-family
+ !
+ address-family ipv6
+ exit-address-family
+!
+!
+!
+!
+!
+interface Loopback0
+  description Loopback
+!
+interface GigabitEthernet0/0
+  description Mapped to Vlan1 for management
+  ! Configured on launch
+  switchport mode access
+  no shutdown
+!
+interface GigabitEthernet0/1
+  description to iosvl2-3
+  switchport trunk encapsulation dot1q
+  switchport mode trunk
+  no shutdown
+!
+interface GigabitEthernet0/2
+  description to server-2
+  switchport access vlan 2
+  switchport mode access
+  no shutdown
+!
+interface Vlan1
+  description OOB Management
+  ! Configured on launch
+  vrf forwarding Mgmt-intf
+  no ip address
+!
+!
+ip forward-protocol nd
+!
+no ip http server
+no ip http secure-server
+!
+!
+!
+!
+!
+!
+control-plane
+!
+!
+!
+end
+        </entry>
+            <entry key="AutoNetkit.mgmt_ip" type="string"></entry>
+        </extensions>
+        <interface id="0" name="GigabitEthernet0/1"/>
+        <interface id="1" name="GigabitEthernet0/2"/>
+        <interface id="2" name="GigabitEthernet0/3"/>
+    </node>
+    <node name="iosvl2-3" type="SIMPLE" subtype="IOSvL2" location="391,172">
+        <extensions>
+            <entry key="config" type="string">! IOSvL2 Config generated on 2015-09-03 21:26
+! by autonetkit_0.18.1
+!
+version 15.2
+service timestamps debug datetime msec
+service timestamps log datetime msec
+no service password-encryption
+service compress-config
+no service config
+enable password cisco
+ip classless
+ip subnet-zero
+no ip domain lookup
+!
+line vty 0 4
+transport input ssh telnet
+exec-timeout 720 0
+password cisco
+login
+!
+line con 0
+password cisco
+!
+hostname iosvl2-3
+!
+boot-start-marker
+boot-end-marker
+!
+!
+!
+no aaa new-model
+!
+!
+!
+!
+!
+!
+!
+!
+ip cef
+no ipv6 cef
+!
+!
+spanning-tree mode pvst
+spanning-tree extend system-id
+!
+vlan internal allocation policy ascending
+!
+!
+!
+!
+vrf definition Mgmt-intf
+!
+ address-family ipv4
+ exit-address-family
+ !
+ address-family ipv6
+ exit-address-family
+!
+!
+!
+!
+!
+interface Loopback0
+  description Loopback
+!
+interface GigabitEthernet0/0
+  description Mapped to Vlan1 for management
+  ! Configured on launch
+  switchport mode access
+  no shutdown
+!
+interface GigabitEthernet0/1
+  description to iosvl2-2
+  switchport trunk encapsulation dot1q
+  switchport mode trunk
+  no shutdown
+!
+interface GigabitEthernet0/2
+  description to iosvl2-1
+  switchport trunk encapsulation dot1q
+  switchport mode trunk
+  no shutdown
+!
+interface GigabitEthernet0/3
+  description to iosv-1
+  switchport access vlan 2
+  switchport mode access
+  no shutdown
+!
+interface Vlan1
+  description OOB Management
+  ! Configured on launch
+  vrf forwarding Mgmt-intf
+  no ip address
+!
+!
+ip forward-protocol nd
+!
+no ip http server
+no ip http secure-server
+!
+!
+!
+!
+!
+!
+control-plane
+!
+!
+!
+end
+        </entry>
+            <entry key="AutoNetkit.mgmt_ip" type="string"></entry>
+        </extensions>
+        <interface id="0" name="GigabitEthernet0/1"/>
+        <interface id="1" name="GigabitEthernet0/2"/>
+        <interface id="2" name="GigabitEthernet0/3"/>
+    </node>
+    <node name="lxc-1" type="SIMPLE" subtype="lxc" location="259,323">
+        <interface id="0" name="eth1"/>
+    </node>
+    <node name="lxc-2" type="SIMPLE" subtype="lxc" location="527,321">
+        <interface id="0" name="eth1"/>
+    </node>
+    <connection dst="/virl:topology/virl:node[5]/virl:interface[1]" src="/virl:topology/virl:node[4]/virl:interface[1]"/>
+    <connection dst="/virl:topology/virl:node[3]/virl:interface[1]" src="/virl:topology/virl:node[5]/virl:interface[2]"/>
+    <connection dst="/virl:topology/virl:node[2]/virl:interface[1]" src="/virl:topology/virl:node[5]/virl:interface[3]"/>
+    <connection dst="/virl:topology/virl:node[1]/virl:interface[1]" src="/virl:topology/virl:node[2]/virl:interface[2]"/>
+    <connection dst="/virl:topology/virl:node[3]/virl:interface[3]" src="/virl:topology/virl:node[6]/virl:interface[1]"/>
+    <connection dst="/virl:topology/virl:node[7]/virl:interface[1]" src="/virl:topology/virl:node[4]/virl:interface[3]"/>
+</topology>