Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Differences between articles,

https://insights.ubuntu.com/2015/11/10/converting-eth0-to-br0-and-getting-all-your-lxc-or-lxd-onto-your-lan/ - LXC/LXD specific bridging. This looks quite different than the other examples and not sure why

Code Block
languagebash
auto br0
iface br0 inet dhcp
    bridge-ifaces eth0 # Different than other examples.
    bridge-ports eth0
    up ifconfig eth0 up

iface eth0 inet manual # Different than other examples.


https://help.ubuntu.com/community/KVM/Networking - KVM specific, but also explains each item more,

...