Categories: TutorialsUbuntu

adding persistent static routes on ubuntu

When you need to access networks located on a different network segment, you need to have a route set up so the PC knows how to get to the other network segment. This generally just points to your main gateway, but you may want to set up additional static routes, where you don’t want the traffic going through your main default gateway.
(Note: For Ubuntu 18.04 and higher, this is now done using netplan configuration. Please see “Adding persistent static routes on Ubuntu 18.04 and higher using netplan for more info)
To set up a static route on Ubuntu so that it automatically gets created every time the PC starts, you need to modify the /etc/network/interfaces file.

$

Sponsored
sudo nano /etc/network/interfaces

The route will get set up when one of the interfaces comes up. Find the section that corresponds to the interface that this route will be set up on. Eg. eth0 or em1.
At the bottom of this section, add the following line:

up route add -net 192.168.40.0/24 gw 192.168.30.1 dev em1

Modify the above to suit the route you want to add.
Your file should now look something like this:

# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto em1
iface em1 inet static
address 192.168.30.2
netmask 255.255.255.0
broadcast 192.168.30.255
gateway 192.168.30.254
#persistent static routes
up route add -net 192.168.40.0/24 gw 192.168.30.1 dev em1

To make these changes take effect, you can run the following command to bring down the interface, and bring it back up again:

Sponsored
$ sudo ifdown em1 && sudo ifup em1

or simply try a reboot.
Run the following command to ensure the route has been set up correctly:

$ route -n

The post adding persistent static routes on ubuntu appeared first on Networking HowTos.

Ubuntu Server Admin

Recent Posts

Stop Wallpaper Moving when Switching Workspace in Ubuntu 24.04

For GNOME users who don’t like the default workspace switch animation, here’s an extension that…

13 hours ago

Warzone 2100 Released 4.6.0 with Spectator Host Mode

Warzone 2100, the free open-source 3D real-time strategy game, released new major 4.6.0 version few…

2 days ago

What our users make with Ubuntu Pro – Episode 2

How Vaultara achieved FedRAMP compliance with Ubuntu Pro Ubuntu Pro helps businesses worldwide to innovate…

2 days ago

How To Install Zabbix Server 7.4 On Ubuntu 22.04

Zabbix is smart monitoring system on your network. This software written by php mysql. So…

3 days ago

How To Install Zabbix Server 7.2 On Ubuntu 22.04

Zabbix is smart monitoring system on your network. This software written by php mysql. So…

3 days ago

SuperTuxKart 1.5 RC2 added GUI option to Choose Vulkan or DirectX 9

SuperTuxKart, the 3D kart racing game, announced the second release candidate for the next 1.5…

3 days ago