AIX Creating EtherChannel Devices from Command Line

I needed to create some EtherChannel devices on several AIX LPARs, and did not want to go through the smit panels every time.

I was testing network performance and wanted to add these to a script, so I could test standalone adapter configurations vs EtherChannel configurations, and leave my scripts running over night.

Here are the steps to create an EtherChannel device on AIX.

 

Create the eth device.  My primary Ethernet adapter is ent1 and the backup adapter is ent3.  This EtherChannel device will fail-over to the backup adapter and fail-back to the primary automatically.  The netaddr supplied is a reliable network device to ping to confirm which adapters are up or down, so I used the default gateway.

mkdev -c adapter -s pseudo -t ibm_ech -a adapter_names='ent1' -a backup_adapter='ent3' -a netaddr='192.168.2.1' -a num_retries='2' -a retry_time='1'

 

Create the et and en devices.

/usr/lib/methods/defif

 

Now add the IP address to the EtherChannel device.

chdev -l en4 -a netaddr=192.168.2.100 -a netmask=255.255.255.0 -a state=up

 

To clean up and delete the EtherChannel, just rmdev the ent, en and et devices, then configure one of the standalone adapters with the servers IP address as needed.

 

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
AIX Migrating from SDDPCM to AIXPCM (the easy way)
Viewed 21070 times since Mon, Dec 31, 2018
How to check dual path in AIX
Viewed 15440 times since Fri, Jun 8, 2018
sysdumpdev Command
Viewed 2647 times since Mon, Jul 16, 2018
0516-404 allocpThis system cannot fulfill the allocation
Viewed 10773 times since Thu, Sep 20, 2018
How to set Kernel Parameters in AIX ?
Viewed 16586 times since Tue, Jul 2, 2019
Troubleshooting Starts With Understanding Your Physical Disks’ Attributes
Viewed 4971 times since Sat, May 19, 2018
The new VIOS performance advisor tool part util
Viewed 4210 times since Tue, Jun 4, 2019
AIX Reviewing AIX Error and Boot Logs
Viewed 4386 times since Wed, Mar 20, 2019
0516-787 extendlv: Maximum allocation for logical volume error
Viewed 10332 times since Tue, Mar 12, 2019
7 Tips – Tuning Command Line History in Bash
Viewed 6820 times since Fri, Jul 5, 2019