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
Mount CD/DVD & ISO image in AIX 6.1
Viewed 4186 times since Tue, Jul 17, 2018
How to check dual path in AIX
Viewed 14254 times since Fri, Jun 8, 2018
Changing Ethernet Media Speed for AIX
Viewed 3542 times since Tue, Apr 16, 2019
AIX, user gets “pwd: The file access permissions do not allow the specified action.”
Viewed 11509 times since Tue, Mar 16, 2021
AIX: How to determine which application created the OS core file
Viewed 2603 times since Mon, Jun 11, 2018
AIX: Script to create a file with commands to remove missing & failed paths
Viewed 3381 times since Tue, Jun 12, 2018
AIX Changing ’defined’ or ’missing’ hard disk states to ’Available’ in IBM Smart Analytics System for AIX environment
Viewed 9893 times since Wed, May 22, 2019
AIX FC Performance improvements for IBM AIX FC and FCoE device driver stacks
Viewed 6085 times since Fri, Jan 31, 2020
Part 1, The basics of network troubleshooting
Viewed 5437 times since Tue, May 22, 2018
AIX lspath Missing path
Viewed 10201 times since Fri, Oct 5, 2018