Despite what is said in an earlier comment, qemu(1) has no information
on -netdev stream or -netdev dgram.
The best help I could find comes from the patch description:
https://patchew.org/QEMU/20221021090922.170074-1-lviv...@redhat.com/
Example use:
-netdev stream,id=socket0,server=off,addr.typ
Public bug reported:
Most of qemu socket accepting options (such as chardev) accept among
other things a "reconnect" option.
netdev socket however returns: Invalid parameter 'reconnect'
It would make sense that available options for socket links be at least
partially normalized (also see issue
h
Thanks for the response. I'm not sure, how would I run qemu with a fd=
socketpair on the command line?
The wiki (https://wiki.qemu.org/index.php/Documentation/Networking)
suggests for example to use:
-netdev socket,id=mynet0,listen=:1234
-netdev socket,id=mynet0,connect=:1234
This would allow ho