-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,6 +101,7 @@ fi | |
# this mac address is used to allocate a specific IP to the VM | ||
# when tap device is in use. | ||
${SSH} core@${VM_IP} 'sudo bash -x -s' <<EOF | ||
nmcli connection delete tap0 | ||
nmcli connection add type tun ifname tap0 con-name tap0 mode tap autoconnect yes 802-3-ethernet.cloned-mac-address 5A:94:EF:E4:0C:EE | ||
EOF | ||
|
||
|
@@ -109,6 +110,8 @@ EOF | |
${SSH} core@${VM_IP} 'sudo bash -x -s' <<EOF | ||
podman create --name=gvisor-tap-vsock quay.io/crcont/gvisor-tap-vsock:latest | ||
podman cp gvisor-tap-vsock:/vm /usr/local/bin/gvforwarder | ||
mkdir -p /usr/share/udhcpc | ||
podman cp gvisor-tap-vsock:/usr/share/udhcpc/default.script /usr/share/udhcpc/default.script | ||
podman rm gvisor-tap-vsock | ||
tee /etc/systemd/system/[email protected] <<TEE | ||
[Unit] | ||
|
@@ -120,11 +123,11 @@ After=sys-devices-virtual-net-%i.device | |
[Service] | ||
Environment=GV_VSOCK_PORT="1024" | ||
EnvironmentFile=-/etc/sysconfig/gv-user-network | ||
ExecStart=/usr/local/bin/gvforwarder -preexisting -iface %i -url vsock://2:\\\${GV_VSOCK_PORT}/connect | ||
ExecStart=/usr/local/bin/gvforwarder -iface %i -url vsock://2:\\\${GV_VSOCK_PORT}/connect -debug | ||
[Install] | ||
WantedBy=multi-user.target | ||
TEE | ||
TEE | ||
systemctl daemon-reload | ||
systemctl enable [email protected] | ||
systemctl start [email protected] | ||
|