Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Creating Bridged Interfaces (Mostly for KVM)

Sena Heydari edited this page Feb 24, 2016 · 3 revisions

##THIS PAGE NEEDS MASSIVE BUILD-OUT AND REVISION

Very Simple Example of DHCP Interface Being Turned Into Bridge

  • Assuming interfece em1 and bridge br0, in /etc/sysconfig/network-scripts/ifcfg-em1, modify to:

    # BOOTPROTO="dhcp" (or whatever protocol)
    BRIDGE=br0 (or whatever name)
    
  • Assuming creation of bridge interface br0, create /etc/sysconfig/network-scripts/ifcfg-br0:

    DEVICE=br0
    BOOTPROTO=dhcp
    ONBOOT=yes
    TYPE=Bridge
    
  • The good old systemctl restart network

Clone this wiki locally