如何使用qemu从主机到访客设置ssh?引导虚拟机时,无需任何特殊参数即可使用端口重定向,如下所示:
/usr/bin/qemu-system-x86_64 -hda ubuntu1204 -m 512 -redir tcp:7777::8001
但是当我尝试使用以下方法引导时:
/usr/bin/qemu-system-x86_64 \
-m 1024 \
-name vserialtest \
-hda ubuntu1204 \
-chardev socket,host=localhost,port=7777,server,nowait,id=port1-char \
-device virtio-serial \
-device virtserialport,id=port1,chardev=port1-char,name=org.fedoraproject.port.0 \
-net user,hostfwd=tcp:7777::8001
我收到以下错误,并且VM无法启动:
qemu-system-x86_64: -net user,hostfwd=tcp:7777::8001: invalid host
forwarding rule 'tcp:7777::8001'
qemu-system-x86_64: -net user,hostfwd=tcp:7777::8001: Device 'user'
could not be initialized
请注意,我可以不-net
带任何参数地引导VM ,但是没有问题,但是,我希望从主机到客户机设置ssh。从来宾到主机的SSH可以正常工作。
编辑
我尝试使用
-net user,hostfwd=tcp::7777-:8001
以及
-net user,hostfwd=tcp::7777:8001
但是错误仍然存在,并且虚拟机无法启动。