- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: networking
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2004 11:26 PM
01-24-2004 11:26 PM
networking
i have four network cards on one server, i know that tru64 supports load balancing on a group of network cards (NetLag), and also supports fail-over for balanced network cards (netrain)....
how could i make:
-load balancing with the same IP ?
-fail-over with the same IP also ?
thanX in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 04:27 AM
01-25-2004 04:27 AM
Re: networking
http://www.utterberg.com/howtos/teaming_howto.php
google for network teaming or network bonding.
also i got this from google.
http://sourceforge.net/projects/bonding/
hth
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 04:28 AM
01-25-2004 04:28 AM
Re: networking
> Try it out if you have 2 NIC. It's easy to do. rh7.x works, later kernel seems to handle fail over
better. I tried on 2.4.9 default 7.2 kernel, that does not seems to handle well when I unplug 1 NIC,
the bw drops. 2.4.20 handles very well when is disconnect on of the NIC. need to do more testing.
>
> [kent@kent kent]$ cat /etc/sysconfig/network-scripts/ifcfg-bond0
> DEVICE=bond0
> IPADDR=192.168.2.99
> NETMASK=255.255.255.0
> NETWORK=192.168.2.0
> BROADCAST=192.168.2.255
> GATEWAY=192.168.2.1
> ONBOOT=yes
> BOOTPROTO=none
> USERCTL=no
>
> [kent@kent kent]$ cat /etc/sysconfig/network-scripts/ifcfg-eth0
> DEVICE=eth0
> ONBOOT=yes
> BOOTPROTO=none
> MASTER=bond0
> SLAVE=yes
>
> [kent@kent kent]$ cat /etc/sysconfig/network-scripts/ifcfg-eth1
> DEVICE=eth1
> ONBOOT=yes
> BOOTPROTO=none
> MASTER=bond0
> SLAVE=yes
>
> [root@kent network-scripts]# cat ifcfg-bond0:0
> DEVICE=bond0:0
> IPADDR=192.168.2.196
> NETMASK=255.255.255.0
> NETWORK=192.168.2.0
>
> Restart Network...
>
> [root@kent network-scripts]# /sbin/ifconfig -a
> bond0 Link encap:Ethernet HWaddr 00:90:27:2C:7F:EA
> inet addr:192.168.2.99 Bcast:192.168.2.255 Mask:255.255.255.0
> UP BROADCAST RUNNING MASTER MULTICAST MTU:1500 Metric:1
> RX packets:12278869 errors:7 dropped:0 overruns:0 frame:7
> TX packets:8124496 errors:18 dropped:0 overruns:0 carrier:18
> collisions:6 txqueuelen:0
> RX bytes:464315659 (442.8 Mb) TX bytes:3228444502 (3078.8 Mb)
>
> bond0:0 Link encap:Ethernet HWaddr 00:90:27:2C:7F:EA
> inet addr:192.168.2.196 Bcast:192.168.2.255 Mask:255.255.255.0
> UP BROADCAST RUNNING MASTER MULTICAST MTU:1500 Metric:1
> RX packets:12278869 errors:7 dropped:0 overruns:0 frame:7
> TX packets:8124496 errors:18 dropped:0 overruns:0 carrier:18
> collisions:6 txqueuelen:0
> RX bytes:464315659 (442.8 Mb) TX bytes:3228444502 (3078.8 Mb)
>
> eth0 Link encap:Ethernet HWaddr 00:90:27:2C:7F:EA
> inet addr:192.168.2.99 Bcast:192.168.2.255 Mask:255.255.255.0
> UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1
> RX packets:11731921 errors:4 dropped:0 overruns:0 frame:4
> TX packets:7182275 errors:4 dropped:0 overruns:0 carrier:4
> collisions:0 txqueuelen:100
> RX bytes:326305683 (311.1 Mb) TX bytes:1996540149 (1904.0 Mb)
> Interrupt:11 Base address:0x6c00 Memory:e6600000-e6600038
>
> eth1 Link encap:Ethernet HWaddr 00:90:27:2C:7F:EA
> inet addr:192.168.2.99 Bcast:192.168.2.255 Mask:255.255.255.0
> UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1
> RX packets:546948 errors:3 dropped:0 overruns:0 frame:3
> TX packets:942221 errors:14 dropped:0 overruns:0 carrier:14
> collisions:6 txqueuelen:100
> RX bytes:138009976 (131.6 Mb) TX bytes:1231904353 (1174.8 Mb)
> Interrupt:10 Base address:0x7000 Memory:e6601000-e6601038
and some more info.
more:
> oops forgot you need the bonding module, exec this as root to enable the mod on the fly.
>
> insmod /lib/modules/2.4.20-19.8.SGI_XFS_1.2.0.kent/kernel/drivers/net/bonding.o
>
> and add this in /etc/modules.conf so it picks up during bootup.
>
> alias bond0 bonding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 06:45 AM
01-25-2004 06:45 AM
Re: networking
I would not try this on a production server without having tried it and run for 30-60 days on a test box.
Seems workable though.
The nice part is unlike HP-UX, Linux will tolerate two physical devioces on the same subnet.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 05:59 PM
01-25-2004 05:59 PM
Re: networking
is this methods can be done for any linux systems ,that i have a linux 9 system
fadia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 07:00 PM
01-25-2004 07:00 PM
Re: networking
You have also full manual here, although the guys already have provided you with more than enough:
http://www.redhat.com/docs/manuals/enterprise/RHEL-3-Manual/ref-guide/s1-networkscripts-interfaces.html#S2-NETWORKSCRIPTS-INTERFACES-CHAN