rebonding network interface..

Sometime we got more than one network interface..

let say one Ethernet Card and one wifi cards..

this will show you how to combine this into one.. and

get better throughout speed.

1. edit /etc/modprobe.conf to add bonding interface.

alias bond0 bondingoptions bond1 mode=1 miimon=100

2. edit some of the networking scripts with these :

cd /etc/sysconfig/network-scripts
touch ifcfg-bond0
vi ifcfg-bond0

add these lines.

DEVICE=bond0
USERCTL=no
ONBOOT=yes
BROADCAST=192.168.100.255
NETWORK=192.168.100.0
NETMASK=255.255.255.0
GATEWAY=192.168.100.1
IPADDR=192.168.100.21
[ad#postad]
 and..
vi ifcfg-eth0

add..

DEVICE=eth0
USERCTL=no
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
HWADDR=00:0c:29:30:41:de
ONBOOT=yes

and

vi ifcfg-wlan0
DEVICE=wlan0
USERCTL=no
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
HWADDR=0c:0c:29:30:41:de
ONBOOT=yes

to start using it..

ifup bond0

.. it should enslave both network cards..

and determine the ip  address..

Related Post

One Response

  1. namran says:

    Note: Installation of NX Server for Linux requires the download and installation of three packages: client, node and server. The client is needed because it ships libraries used by the node. The node is needed because it ships tools needed by the server. Furthermore, the SSH server daemon (SSHD) needs to be up and running on each of the NX Node machines since NX relies on the mechanism provided by the SSH subsystem for handling user authentication.

    Reply

Leave a Reply to namran Cancel reply

Your email address will not be published. Required fields are marked *