Skip to content

Commit

Permalink
debug changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasgun committed Feb 6, 2025
1 parent ac33611 commit ccc602e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions createdisk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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]
Expand All @@ -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]
Expand Down

0 comments on commit ccc602e

Please sign in to comment.