mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-08-11 06:46:53 +00:00
11 lines
175 B
Bash
Executable File
11 lines
175 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
USER=$(whoami)
|
|
|
|
for NODE in 1 2 3 4 5; do
|
|
sudo ip tuntap add microvm-n$NODE mode tap user $USER
|
|
sudo ip addr add dev microvm-n$NODE 10.$NODE.0.1
|
|
done
|
|
|
|
|