Configuring Network Adapters for Redundancy
Audience: System Administrators
Date: October 15, 2001You can protect against network adapter failure using AIX's Etherchannel support.Etherchannel allows you to create a "logical" ethernet adapter out of 2 physical adapters.If the primary network adapter fails, AIX seemlessly moves network traffic to thesurviving adapter using the same IP address.The Etherchannel function is available in AIX 4.3.3+. Documentation is scarce, so here'sa quick "how to". In this example, we assume we have two physical adapters (ent1 andent2) that we want to group as a logical interface:
smit => devices => communications => etherchannel =>"Add an Etherchannel"
(fastpath "smit etherchannel")
Add An EtherchannelType or select values in entry fields.Press Enter AFTER making all desired changes.[Entry Fields]Etherchannel Adapters ent1 ent2Enable ALTERNATE ETHERCHANNEL address noALTERNATE ETHERCHANNEL address []Mode netif_backupInternet Address to Ping []Number of Retries []Retry Timeout (sec) []
This will create a "logical" interface using the next available adapter name ("ent3"). Fromhere, configure an IP address on the logical interface ent3.
Comments:
ALTERNATE ETHERCHANNEL = yes
allows you to specify a "MAC" address. (Notnecessary)
Mode = round-robin
provides higher aggregate bandwidth by distributing outgoing packets over multiple network adapters. However "round-robin" does not distributeincoming packets, nor does it provide adapter failover. Use "netif_backup" if you wantfailover.
Internet Address to Ping:
IP address for "keep alive". Optional as most failures detectedat link layer Bruce Spencer, baspence@us.ibm.com
Leave a Comment