Comments on: How to Create NIC Teaming or Bonding in CentOS 8 / RHEL 8 https://www.tecmint.com/create-nic-channel-bonding-in-redhat-centos-fedora/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Fri, 14 Aug 2020 05:49:32 +0000 hourly 1 By: Amol Jawarkar https://www.tecmint.com/create-nic-channel-bonding-in-redhat-centos-fedora/comment-page-1/#comment-887083 Sun, 30 Apr 2017 02:51:40 +0000 http://www.tecmint.com/?p=636#comment-887083 In reply to Joginder.

Hi Joginder,

Bonding needs at least 2 nic. You can refer to below article.

https://www.kernel.org/doc/Documentation/networking/bonding.txt

]]>
By: Amol Jawarkar https://www.tecmint.com/create-nic-channel-bonding-in-redhat-centos-fedora/comment-page-1/#comment-887081 Sun, 30 Apr 2017 02:49:44 +0000 http://www.tecmint.com/?p=636#comment-887081 Hi,

To create bonding, Follow below steps.

1. create a file ifcfg-bondX and add below lines.

DEVICE=bond0
IPADDR=192.168.0.1
NETMASK=255.255.255.0
ONBOOT=yes
HOTPLUG=no
BOOTPROTO=none
USERCTL=no
BONDING_OPTS=”bonding parameters separated by spaces” # Such as BONDING_OPTS=”miimon=100 mode=1″
NM_CONTROLLED=no

2. After creating bonding interface, its time to configure slave interface.

3. Edit interface files and add below lines.

DEVICE=ethX
BOOTPROTO=none
ONBOOT=yes
HOTPLUG=no
MASTER=bond0
SLAVE=yes
USERCTL=no
NM_CONTROLLED=no

4. Restart the network service to load the newly added configuration.
#service network restart

This is explained a bit further at below link.
https://www.kernel.org/doc/Documentation/networking/bonding.txt

]]>
By: Joginder https://www.tecmint.com/create-nic-channel-bonding-in-redhat-centos-fedora/comment-page-1/#comment-859619 Sat, 14 Jan 2017 19:43:45 +0000 http://www.tecmint.com/?p=636#comment-859619 We trying to configure em2 and em3 two bonds in Redhat 6.7 but not success ,
Bond0 and bond1 configured W/O any issue but due to some oracle dB limitation we em2 and em3 two bonds
Please suggest

]]>
By: Ravi Saive https://www.tecmint.com/create-nic-channel-bonding-in-redhat-centos-fedora/comment-page-1/#comment-757831 Tue, 08 Mar 2016 05:51:17 +0000 http://www.tecmint.com/?p=636#comment-757831 In reply to muthukumar.

@Muthu,

Open each file and modify the MAC address, that’s it and don’t forget to restart the network service.

]]>
By: muthukumar https://www.tecmint.com/create-nic-channel-bonding-in-redhat-centos-fedora/comment-page-1/#comment-757681 Mon, 07 Mar 2016 11:49:22 +0000 http://www.tecmint.com/?p=636#comment-757681 i have configured. but eth0 and eth1 are same mac address. could you please help me on this issue.

]]>