Products‎ > ‎HOWTOs and other docs‎ > ‎XEN‎ > ‎

Debian: create bridge with no IP assigned

add the following lines to the /etc/network/interfaces
auto br0
iface br0 inet manual
        pre-up    brctl addbr $IFACE
        up        ifconfig    $IFACE up
        down      ifconfig    $IFACE down
        post-down brctl delbr $IFACE

tested on squeeze
Comments