diff options
Diffstat (limited to '')
-rw-r--r-- | cheat/.cheat/network | 15 |
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 +``` |