Configuring a network bridge on Fedora Linux is a relatively simple process. This tutorial will walk you through the steps of setting up a network bridge on Fedora Linux.
sudo su
to gain root access.yum install bridge-utils
.brctl show
to view the current bridge configuration.brctl addbr br0
.ifconfig br0 192.168.1.1 netmask 255.255.255.0 up
.brctl addif br0 eth0
.ifconfig eth0 0.0.0.0 up
.brctl show
to view the new bridge configuration.service network restart
.ifconfig
to view the new bridge configuration.Once you have completed these steps, your network bridge should be configured and ready to use.