AIX, Networking↑ Adding and deleting a static network route using the command line

There are two commands that can be used to add a route on an AIX system.

The first one is route, and can be used to temporarily add a route to an AIX system. Meaning, if the system is rebooted, after the route has been added, the route will be lost again after the reboot.

The second command is chdev -l inet0 that can be used to permanently add a route on an AIX system. When this command is used, the route will persist during reboots, as this command writes to information of the route in to the ODM of AIX.

Let's say you have a need to add a route on a system to network 10.0.0.0. And that network uses a netmask of 255.255.255.0 (or "24" for the short mask notation). Finally, the gateway that can be used to access this network is 192.168.0.1. Obviously, please adjust this to your own situation.

To temporarily add a route on a system for this network, use the following route command:

# route add -net 10.0.0.0 -netmask 255.255.255.0 192.168.0.1

After running this command, you can use the netstat -nr command to confirm that the route indeed has been set up:

# netstat -nr | grep 192.168.0.1
172.30.224/24   192.168.0.1   UG   0   0   en1   -   -

To remove that route again, simply change the route command from "add" to "delete":

# route delete -net 10.0.0.0 -netmask 255.255.255.0 192.168.0.1

Again, confirm with the netstat -nr command that the route indeed has been removed.

Now, as mentioned earlier, the route command will only temporarily (until the next reboot) add a route on the AIX system. To make things permanent, use the chdev command. This command takes the following form:

chdev -l inet0 -a route=net,-netmask,[your-netmask-goes-here],-static,[your-network-address-goes-here],[your-gateway-goes-here]

For example:

# chdev -l inet0 -a route=net,-netmask,255.255.255.0,-static,10.0.0.0,
192.168.0.1
inet0 changed

This time, again, you can confirm with the netstat -nr command that the route has been set up. But now you can also confirm that the route has been added to the ODM, by using this command:

# lsattr -El inet0 -a route | grep 192.168.0.1
route net,-netmask,255.255.255.0,-static,10.0.0.0,192.168.0.1 Route True

At this point, you can reboot the system, and you'll notice that the route is still there, by repeating the netstat -nr and lsattr -El inet0 commands.

To remove this permanent route from the AIX system, simply change the chdev command above from "route" to "delroute":

# chdev -l inet0 -a delroute=net,-netmask,255.255.255.0,-static,10.0.0.0,
192.168.0.1
inet0 changed

Finally, again confirm using the netstat -nr and lsattr -El inet0 commands that the route indeed has been removed.

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments (1)
Comment By Arif Shaikh - Mon, Oct 5th, 2020 12:12 AM
hi
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
R2dump debug tool
Viewed 2018 times since Tue, Sep 8, 2020
AIX, Networking Etherchannel failover testing
Viewed 2472 times since Fri, Apr 19, 2019
Recovery from LED 552, 554, or 556 in AIX
Viewed 2496 times since Tue, Apr 16, 2019
AIX - How to get network speed and statistic of ethernet adapter in AIX
Viewed 13418 times since Fri, Jun 8, 2018
Customizing a NIM Client Restore With a Post-Install Script
Viewed 10841 times since Wed, May 30, 2018
Create a mksysb + SPOT using NIM (CLI)
Viewed 5477 times since Tue, Jul 17, 2018
Install and configure GNU’s screen on AIX
Viewed 8746 times since Thu, Feb 21, 2019
LVM: Extend an existing Volume Group by adding a new disk
Viewed 5471 times since Sat, Jun 2, 2018
Using the AIX splitvg command
Viewed 4131 times since Mon, Jun 3, 2019
IBM AIX commands you should not leave home without
Viewed 7002 times since Mon, Jun 11, 2018