Page tree

Versions Compared

Key

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

...

Differences between articles,

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

Code Block
auto lo
iface lo inet loopback

auto br0
iface br0 inet static
        address 192.168.0.10
        network 192.168.0.0
        netmask 255.255.255.0
        broadcast 192.168.0.255
        gateway 192.168.0.1
        dns-nameservers 192.168.0.5 8.8.8.8
        dns-search example.com
        bridge_ports eth0
        bridge_stp off
        bridge_fd 0
        bridge_maxwait 0

https://www.theurbanpenguin.com/ubuntu-server-creating-a-bridge-interface/ - mentions for KVM too,

...