[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 6/8] net: update netdev dgram man page with unix socket
From: |
Jason Wang |
Subject: |
[PULL 6/8] net: update netdev dgram man page with unix socket |
Date: |
Fri, 2 Aug 2024 11:19:27 +0800 |
From: Laurent Vivier <lvivier@redhat.com>
Add the description of "-netdev dgram" with a unix domain socket.
The code has been added but the man page has not been updated.
Fixes: 784e7a253104 ("net: dgram: add unix socket")
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
qemu-options.hx | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/qemu-options.hx b/qemu-options.hx
index 2614eea4d7..23a53a7190 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -3500,6 +3500,29 @@ SRST
-device virtio-net,netdev=net0,mac=52:54:00:12:34:56 \\
-netdev
dgram,id=net0,local.type=inet,local.host=localhost,local.port=1235,remote.type=inet,remote.host=localhost,remote.port=1234
+``-netdev
dgram,id=str,local.type=unix,local.path=path[,remote.type=unix,remote.path=path]``
+ Configure a network backend to connect to another QEMU virtual
+ machine or a proxy using a datagram oriented unix socket.
+
+ ``local.path=path``
+ filesystem path to use to bind the socket
+
+ ``remote.path=path``
+ filesystem path to use as a destination (see sendto(2))
+
+ Example (two guests connected using an UDP/UNIX socket):
+
+ .. parsed-literal::
+
+ # first VM
+ |qemu_system| linux.img \\
+ -device virtio-net,netdev=net0,mac=52:54:00:12:34:56 \\
+ -netdev
dgram,id=net0,local.type=unix,local.path=/tmp/qemu0,remote.type=unix,remote.path=/tmp/qemu1
+ # second VM
+ |qemu_system| linux.img \\
+ -device virtio-net,netdev=net0,mac=52:54:00:12:34:57 \\
+ -netdev
dgram,id=net0,local.type=unix,local.path=/tmp/qemu1,remote.type=unix,remote.path=/tmp/qemu0
+
``-netdev dgram,id=str,local.type=fd,local.str=file-descriptor``
Configure a network backend to connect to another QEMU virtual
machine or a proxy using a datagram oriented socket file descriptor.
--
2.42.0
- [PULL 0/8] Net patches, Jason Wang, 2024/08/01
- [PULL 1/8] rtl8139: Fix behaviour for old kernels., Jason Wang, 2024/08/01
- [PULL 2/8] virtio-net: Ensure queue index fits with RSS, Jason Wang, 2024/08/01
- [PULL 3/8] virtio-net: Fix network stall at the host side waiting for kick, Jason Wang, 2024/08/01
- [PULL 4/8] net: update netdev stream/dgram man page, Jason Wang, 2024/08/01
- [PULL 5/8] net: update netdev stream man page with unix socket, Jason Wang, 2024/08/01
- [PULL 6/8] net: update netdev dgram man page with unix socket,
Jason Wang <=
- [PULL 7/8] net: update netdev stream man page with the reconnect parameter, Jason Wang, 2024/08/01
- [PULL 8/8] net: Reinstate '-net nic, model=help' output as documented in man page, Jason Wang, 2024/08/01
- Re: [PULL 0/8] Net patches, Richard Henderson, 2024/08/02