Interface Bridging in CentOS 6.5

Issues related to configuring your network
Post Reply
arora.mitesh
Posts: 1
Joined: 2014/05/09 07:13:57

Interface Bridging in CentOS 6.5

Post by arora.mitesh » 2014/05/09 07:17:11

Hello All,

I am trying to bridge 2 NIC Cards to connect this device in inline mode so that I can add artifical packet loss using tc.

I am unable to make the the 2 interfaces as bridge. any help in this would be appreciated.

Cheers,
Mitesh

User avatar
Super Jamie
Posts: 310
Joined: 2014/01/10 23:44:51

Re: Interface Bridging in CentOS 6.5

Post by Super Jamie » 2014/05/23 08:28:53

Code: Select all

/etc/sysconfig/network-scripts/ifcfg-eth0
TYPE=Ethernet
DEVICE=eth0
ONBOOT=yes
BRIDGE=br0
NM_CONTROLLED=no

/etc/sysconfig/network-scripts/ifcfg-eth1
TYPE=Ethernet
DEVICE=eth1
ONBOOT=yes
BRIDGE=br0
NM_CONTROLLED=no

/etc/sysconfig/network-scripts/ifcfg-br0
TYPE=Bridge
DEVICE=br0
ONBOOT=yes
NM_CONTROLLED=no

Post Reply