Essentially
Network Config on Debian
- Under
/etc/network/interfaces or @/etc/network/interfaces.d/bridge
- Lets assume the current config is as follows:
# eth0
allow-hotplug eth0
iface eth0 inet dhcp
- The following config needs to be added. If static required please amend
# The br0 bridge settings
auto br0
iface br0 inet dhcp
bridge_ports eth0
Reference
|