Update Lab01 authored by Katharina Renk's avatar Katharina Renk
......@@ -138,6 +138,7 @@ and run the following commands:
ip address add 10.0.0.100/24 dev eth1
ip route del default
ip route add default via 10.0.0.1 dev eth1
ip link set dev eth1 mtu 1500
```
Afterwards, exit the bash:
```bash
......@@ -154,7 +155,8 @@ And execute following commands:
```bash
ip address add 192.168.0.100/24 dev eth1
ip route del default
ip route add default via 192.168.0.1 dev eth1
ip route add default via 192.168.0.1 dev eth1
ip link set dev eth1 mtu 1500
```
Afterwards, exit the bash:
```bash
......
......