From 679344c5b17c1d17140d38d2eb3d1e1b6221ec64 Mon Sep 17 00:00:00 2001 From: Ben Berry Date: Tue, 12 Mar 2019 15:10:05 -0700 Subject: [PATCH] document using ip command for linux --- sections/run_deploy.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sections/run_deploy.html b/sections/run_deploy.html index 0ef19ea..c33fc25 100644 --- a/sections/run_deploy.html +++ b/sections/run_deploy.html @@ -23,7 +23,8 @@

...

Add route to VirtualBox network:

$ sudo route add -net 10.244.0.0/16 192.168.50.6 # Mac OS X

-

$ sudo route add -net 10.244.0.0/16 gw 192.168.50.6 # Linux

+

$ sudo ip route add 10.244.0.0/16 via 192.168.50.6 # Linux (newer)

+

$ sudo route add -net 10.244.0.0/16 gw 192.168.50.6 # Linux (older)

$ route add 10.244.0.0/16 192.168.50.6 # Windows