7 lines
200 B
Bash
Executable file
7 lines
200 B
Bash
Executable file
#!/bin/sh
|
|
# Pre-create TAP interfaces for both VMs. Requires root.
|
|
set -eu
|
|
. "$(dirname "$0")/env.sh"
|
|
|
|
"$QEMU_VM" network attach "$NETWORK" "$PROXY_VM"
|
|
"$QEMU_VM" network attach "$NETWORK" "$IDP_VM"
|