A bridge brOnline
is connected to eth0
which provides access to the LAN / Internet. The setup is archived within modifying /etc/network/interfaces
like below.
Why? The aim of this adventure is establish a virtual network between several virtual machines and the system hosting the virtual bridge an the virtual machines (host).
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
auto MyBridge
iface MyBridge inet dhcp
bridge_port eth0
bridge_stp on
bridge_fd 0.0
How can I connect to the bridge from my host?
One important thing: Adding eth0
to the bridge makes it somehow unavailable to the host!
So before adding the interface eth0
to the bridge, which magic was connected to eth0
which enabled my browser the access to the local network? Can or how can I connect this magic to the bridge to have access to the LAN and can talk to the other clients connected to the bridge?