svn commit: r341363 - stable/11/share/man/man4
Vincenzo Maffione
vmaffione at FreeBSD.org
Sat Dec 1 12:08:18 UTC 2018
Author: vmaffione
Date: Sat Dec 1 12:08:16 2018
New Revision: 341363
URL: https://svnweb.freebsd.org/changeset/base/341363
Log:
MFC r339548
man: fix vale(4) port naming
The current documentation describing the syntax of a VALE port is wrong.
This patch fixes it to make it consistent.
Differential Revision: https://reviews.freebsd.org/D17411
Modified:
stable/11/share/man/man4/vale.4
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/share/man/man4/vale.4
==============================================================================
--- stable/11/share/man/man4/vale.4 Sat Dec 1 11:52:13 2018 (r341362)
+++ stable/11/share/man/man4/vale.4 Sat Dec 1 12:08:16 2018 (r341363)
@@ -59,18 +59,18 @@ API.
.Pp
.Nm
ports are named
-.Pa vale[bdg:][port]
+.Pa valeSSS:PPP
where
.Pa vale
is the prefix indicating a VALE switch rather than a standard interface,
-.Pa bdg
+.Pa SSS
indicates a specific switch (the colon is a separator),
and
-.Pa port
+.Pa PPP
indicates a port within the switch.
-Bridge and port names are arbitrary strings, the only
-constraint being that the full name must fit within 16
-characters.
+Both SSS and PPP have the form [0-9a-zA-Z_]+ , the string cannot
+exceed IFNAMSIZ characters, and PPP cannot be the name of any
+existing OS network interface.
.Pp
See
.Xr netmap 4
@@ -97,22 +97,20 @@ Set to non-zero values to enable in-kernel diagnostics
Create one switch, with a traffic generator connected to one
port, and a netmap-enabled tcpdump instance on another port:
.Bd -literal -offset indent
-tcpdump -ni vale-a:1 &
-pkt-gen -i vale-a:0 -f tx &
+tcpdump -ni valea:1 &
+pkt-gen -i valea:0 -f tx &
.Ed
.Pp
Create two switches,
each connected to two qemu machines on different ports.
.Bd -literal -offset indent
-qemu -net nic -net netmap,ifname=vale-1:a ... &
-qemu -net nic -net netmap,ifname=vale-1:b ... &
-qemu -net nic -net netmap,ifname=vale-2:c ... &
-qemu -net nic -net netmap,ifname=vale-2:d ... &
+qemu -net nic -net netmap,ifname=vale1:a ... &
+qemu -net nic -net netmap,ifname=vale1:b ... &
+qemu -net nic -net netmap,ifname=vale2:c ... &
+qemu -net nic -net netmap,ifname=vale2:d ... &
.Ed
.Sh SEE ALSO
.Xr netmap 4
-.Pp
-.Xr http://info.iet.unipi.it/~luigi/vale/
.Pp
Luigi Rizzo, Giuseppe Lettieri: VALE, a switched ethernet for virtual machines,
June 2012, http://info.iet.unipi.it/~luigi/vale/
More information about the svn-src-all
mailing list