Repository : ssh://git@open-mesh.org/doc
On branches: backup-redmine/2019-11-07,master
commit f753fdda8536b0dcc4ef63e6d03db42c79b0cf64 Author: Sven Eckelmann sven@narfation.org Date: Sun Oct 27 19:00:56 2019 +0000
doc: open-mesh/Mixing_VM_with_gluon_hardware
f753fdda8536b0dcc4ef63e6d03db42c79b0cf64 open-mesh/Mixing_VM_with_gluon_hardware.textile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/open-mesh/Mixing_VM_with_gluon_hardware.textile b/open-mesh/Mixing_VM_with_gluon_hardware.textile index 4e43c1d..8c049f7 100644 --- a/open-mesh/Mixing_VM_with_gluon_hardware.textile +++ b/open-mesh/Mixing_VM_with_gluon_hardware.textile @@ -1,6 +1,6 @@ h1. Mixing VM with gluon hardware
-The "freifunk gluon":https://github.com/freifunk-gluon/gluon firmware is a relative common framework to create OpenWrt based firmware images for mesh networks with central VPN servers. The [[Emulation_Environment|emulation environments]] using Linux bridge as interconnect can be directly connected to a device running a gluon firmware. +The "freifunk gluon":https://github.com/freifunk-gluon/gluon firmware is a relative common framework to create OpenWrt based firmware images for mesh networks with central VPN servers. The [[Emulation_Environment|emulation environments]] using Linux bridge as virtual network can be directly connected to a device running a gluon firmware.
!gluon-vxlan.png!
@@ -21,7 +21,7 @@ The configured gluon hardware has to be connected via ethernet to the our emulat We must then create a vxlan interface on top of our normal ethernet interface, make sure that the ethernet interface is using an EUI64 based IPv6 link local address and insert the new interface in our bridge
<pre><code class="shell"> -cat > interconnect-add-vxlan.sh << "EOF" +cat > virtual-network-add-vxlan.sh << "EOF" #! /bin/sh
BRIDGE=br-qemu @@ -56,7 +56,7 @@ ip -6 link add "${VXLAN}" type vxlan \ ip link set "${VXLAN}" up master "${BRIDGE}" EOF
-chmod +x interconnect-add-vxlan.sh +chmod +x virtual-network-add-vxlan.sh
-sudo ./interconnect-add-vxlan.sh +sudo ./virtual-network-add-vxlan.sh </code></pre>