[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/10] qemu-options: update to show preferred boolean syntax for
From: |
Daniel P . Berrangé |
Subject: |
[PATCH 04/10] qemu-options: update to show preferred boolean syntax for -netdev |
Date: |
Tue, 16 Feb 2021 19:10:21 +0000 |
The preferred syntax is to use "foo=on|off", rather than a bare
"foo" or "nofoo".
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
qemu-options.hx | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/qemu-options.hx b/qemu-options.hx
index bdf159c929..fb2050cda9 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -2406,8 +2406,8 @@ DEFHEADING(Network options:)
DEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
#ifdef CONFIG_SLIRP
- "-netdev user,id=str[,ipv4[=on|off]][,net=addr[/mask]][,host=addr]\n"
- " [,ipv6[=on|off]][,ipv6-net=addr[/int]][,ipv6-host=addr]\n"
+ "-netdev user,id=str[,ipv4=on|off][,net=addr[/mask]][,host=addr]\n"
+ " [,ipv6=on|off][,ipv6-net=addr[/int]][,ipv6-host=addr]\n"
" [,restrict=on|off][,hostname=host][,dhcpstart=addr]\n"
"
[,dns=addr][,ipv6-dns=addr][,dnssearch=domain][,domainname=domain]\n"
"
[,tftp=dir][,tftp-server-name=name][,bootfile=f][,hostfwd=rule][,guestfwd=rule]"
@@ -2454,8 +2454,8 @@ DEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
#endif
#ifdef __linux__
"-netdev
l2tpv3,id=str,src=srcaddr,dst=dstaddr[,srcport=srcport][,dstport=dstport]\n"
- "
[,rxsession=rxsession],txsession=txsession[,ipv6=on/off][,udp=on/off]\n"
- " [,cookie64=on/off][,counter][,pincounter][,txcookie=txcookie]\n"
+ "
[,rxsession=rxsession],txsession=txsession[,ipv6=on|off][,udp=on|off]\n"
+ " [,cookie64=on|off][,counter][,pincounter][,txcookie=txcookie]\n"
" [,rxcookie=rxcookie][,offset=offset]\n"
" configure a network backend with ID 'str' connected to\n"
" an Ethernet over L2TPv3 pseudowire.\n"
@@ -2884,7 +2884,7 @@ SRST
-device e1000,netdev=n1,mac=52:54:00:12:34:56 \\
-netdev
socket,id=n1,mcast=239.192.168.1:1102,localaddr=1.2.3.4
-``-netdev
l2tpv3,id=id,src=srcaddr,dst=dstaddr[,srcport=srcport][,dstport=dstport],txsession=txsession[,rxsession=rxsession][,ipv6][,udp][,cookie64][,counter][,pincounter][,txcookie=txcookie][,rxcookie=rxcookie][,offset=offset]``
+``-netdev
l2tpv3,id=id,src=srcaddr,dst=dstaddr[,srcport=srcport][,dstport=dstport],txsession=txsession[,rxsession=rxsession][,ipv6=on|off][,udp=on|off][,cookie64][,counter][,pincounter][,txcookie=txcookie][,rxcookie=rxcookie][,offset=offset]``
Configure a L2TPv3 pseudowire host network backend. L2TPv3 (RFC3931)
is a popular protocol to transport Ethernet (and other Layer 2) data
frames between two systems. It is present in routers, firewalls and
--
2.29.2
- [PATCH 00/10] qemu-options: always use key=on|off syntax for bool option docs, Daniel P . Berrangé, 2021/02/16
- [PATCH 01/10] gdbstub: use preferred boolean option syntax, Daniel P . Berrangé, 2021/02/16
- [PATCH 02/10] qemu-options: update to show preferred boolean syntax for -chardev, Daniel P . Berrangé, 2021/02/16
- [PATCH 03/10] qemu-options: update to show preferred boolean syntax for -spice, Daniel P . Berrangé, 2021/02/16
- [PATCH 05/10] qemu-options: update to show preferred boolean syntax for -incoming, Daniel P . Berrangé, 2021/02/16
- [PATCH 04/10] qemu-options: update to show preferred boolean syntax for -netdev,
Daniel P . Berrangé <=
- [PATCH 08/10] docs: update to show preferred boolean syntax for -vnc, Daniel P . Berrangé, 2021/02/16
- [PATCH 06/10] qemu-options: update to show preferred boolean syntax for -vnc, Daniel P . Berrangé, 2021/02/16
- [PATCH 07/10] docs: update to show preferred boolean syntax for -chardev, Daniel P . Berrangé, 2021/02/16
- [PATCH 09/10] docs: update to show preferred boolean syntax for -cpu, Daniel P . Berrangé, 2021/02/16
- [PATCH 10/10] target/i386: update to show preferred boolean syntax for -cpu, Daniel P . Berrangé, 2021/02/16