Page tree

Versions Compared

Key

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

...

Where to find reference on exact commands?

Bridge File

Common to to all,

Code Block
languagebash
auto br0
iface br0 inet dhcp # or static but keeping simple for now


    # Required
    bridge_ports eth0 # Binds the bridge to your existing ethernet
    bridge_fd 0      # ?
    
    # Looks to be options
    bridge_maxwait 0
    bridge_stp off



Reference

Differences between articles,

...

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

iface eth0 inet manual # Different than other examples.

...