I need to change the network interface in Ubuntu 14.04 from eth0 to br0 bridge interface. I tried to install bridge-utils package but I couldn't find that package. Can anyone help how change it to br0 with static IP address.
Thanks in advance!
I need to change the network interface in Ubuntu 14.04 from eth0 to br0 bridge interface. I tried to install bridge-utils package but I couldn't find that package. Can anyone help how change it to br0 with static IP address.
Thanks in advance!
After giving some try finally got it worked.
Solution: 1. Install bridge-utils package, if ubuntu couldn't locate the package download and install it manually. For packages go through the link
For Static IP
auto br0
iface br0 inet static
For Dynamic IP:
auto br0
iface br0 inet dhcp
Thanks!