Skip to Content
Linux Administration Cookbook
book

Linux Administration Cookbook

by Adam K. Dean
December 2018
Beginner
826 pages
22h 54m
English
Packt Publishing
Content preview from Linux Administration Cookbook

Adding a new route to our routing table

If we're working in a network with non-obvious destinations, we might need to add a specific route to our setup.

This is generally seen in cluster scenarios and setups where a route may be accessible via another channel, but may not be advertised by that same channel.

In the following code, we're going to tell our VM that if it wants to talk to any address on the 172.16.0.0/12 network, it must send traffic via eth1 and gateway 192.168.33.11 (which is our centos2 VM):

$ sudo ip route add 172.16.0.0/12 via 192.168.33.11 dev eth1

Checking our routing table, we can see if our route is in place:

$ ip routedefault via 10.0.2.2 dev eth0 proto dhcp metric 100 10.0.2.0/24 dev eth0 proto kernel scope link src ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Practical Linux Security Cookbook - Second Edition

Practical Linux Security Cookbook - Second Edition

Tajinder Kalsi
Mastering Linux Administration

Mastering Linux Administration

Alexandru Calcatinge, Julian Balog

Publisher Resources

ISBN: 9781789342529Supplemental Content