aboutsummaryrefslogtreecommitdiff
path: root/cheat/.cheat/network
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2018-01-24 01:19:18 +0100
committerneodarz <neodarz@neodarz.net>2018-01-24 01:19:18 +0100
commit59d0e0a9591e3dc50f15c47a71fdf97117d1ff7a (patch)
tree5a71d993f24a959bc9dd7f0ab0c572c2fa3d6eee /cheat/.cheat/network
parent92d3ce5139a7a72afe56c2ac3a8991c33dca364c (diff)
downloaddotfiles_ascii-59d0e0a9591e3dc50f15c47a71fdf97117d1ff7a.tar.xz
dotfiles_ascii-59d0e0a9591e3dc50f15c47a71fdf97117d1ff7a.zip
add more cheat
Diffstat (limited to '')
-rw-r--r--cheat/.cheat/network15
1 files changed, 15 insertions, 0 deletions
diff --git a/cheat/.cheat/network b/cheat/.cheat/network
new file mode 100644
index 0000000..57a6016
--- /dev/null
+++ b/cheat/.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
+```