To set up routing in Linux using the ip
command, you can use the following steps:
Check the current routing table: You can use the ip route
command to view the current routing table. This will show you the routes that are currently configured on your system.
Add a new route: To add a new route to the routing table, you can use the ip route add
command. For example, to add a route to network 192.168.1.0/24
via the gateway 192.168.1.1
, you would run:
sudo ip route add 192.168.1.0/24 via 192.168.1.1
ip route del
command. For example, to delete the route to network 192.168.1.0/24
, you would run:sudo ip route del 192.168.1.0/24
ip route replace
command. For example, to change the gateway for the route to network 192.168.1.0/24
to 192.168.1.2
, you would run:sudo ip route replace 192.168.1.0/24 via 192.168.1.2
Keep in mind that these commands are just a few examples of the many options available with the ip
command for managing routing. You can use the ip route
command with various options to view, add, delete, and modify routes in the routing table. Consult the ip
command's documentation for more detailed instructions and options.