From 44d63e4998939079c4a1f0fecf352177c16ffcd6 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 14 May 2020 19:32:33 -0300 Subject: Fix: net: user: adds id param for the newer qemu --- kvmx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'kvmx') diff --git a/kvmx b/kvmx index 2d6d7a7..eb1ee5b 100755 --- a/kvmx +++ b/kvmx @@ -464,8 +464,12 @@ function kvmx_up { fi if [ -z "$net" ] || [ "$net" == "user" ]; then - #net_opts="user,hostfwd=tcp:127.0.0.1:$SSH-:22,hostfwd=udp:127.0.0.1:$XDMCP_PORT-:177$hostfwd -net nic,model=$nic_model" - net_opts="user,hostfwd=tcp:127.0.0.1:$SSH-:22$hostfwd -net nic,model=$nic_model" + if [ "$new_qemu" == "0" ]; then + #net_opts="user,hostfwd=tcp:127.0.0.1:$SSH-:22,hostfwd=udp:127.0.0.1:$XDMCP_PORT-:177$hostfwd -net nic,model=$nic_model" + net_opts="user,hostfwd=tcp:127.0.0.1:$SSH-:22$hostfwd -net nic,model=$nic_model" + else + net_opts="user,id=net0,hostfwd=tcp:127.0.0.1:$SSH-:22$hostfwd -net nic,model=$nic_model" + fi elif [ "$net" == "tap" ]; then # Thanks to kvm-manager tap="${VM}0" -- cgit v1.2.3