December 2018
Beginner
826 pages
22h 54m
English
If we're working in a network with non-obvious destinations, we might need to add a specific route to our setup.
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 ...