aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/cheat/network
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/cheat/network')
-rw-r--r--dotfiles/cheat/network15
1 files changed, 15 insertions, 0 deletions
diff --git a/dotfiles/cheat/network b/dotfiles/cheat/network
new file mode 100644
index 0000000..57a6016
--- /dev/null
+++ b/dotfiles/cheat/network
@@ -0,0 +1,15 @@
+# Get internet on virtual machine
+
+## Set ip
+
+```
+ip addr add 10.1.1.2/16 dev eth1
+ip link set eth1 up
+```
+
+## Set route
+
+```
+ip route add 192.168.1.0/24 dev eth0
+ip route add default via 192.168.1.254
+```