On Tue, Jul 27, 2021 at 10:18:10PM +0200, Sebastian Benoit wrote:
> tpmr(4) connects only two ethernet ports with not much functionality, so the
> manpage is helpful by telling us bridge(4) as a more complete alternative.
> We now also have veb(4), so mention that as well.
>
> ok?
>
> diff --git share/man/man4/tpmr.4 share/man/man4/tpmr.4
> index ab9eba4cee3..de0b200d429 100644
> --- share/man/man4/tpmr.4
> +++ share/man/man4/tpmr.4
> @@ -43,7 +43,9 @@ configuration file for
> .Pp
> Other forms of Ethernet bridging are available using the
> .Xr bridge 4
> -driver.
> +Ethernet bridge driver and the
> +.Xr veb 4
> +Virtual Ethernet Bridge device.
> Link aggregation of Ethernet interfaces can be achieved
> using the
> .Xr aggr 4
> @@ -145,6 +147,7 @@ interfaces.
> .Xr bridge 4 ,
> .Xr pf 4 ,
> .Xr trunk 4 ,
> +.Xr veb 4 ,
> .Xr hostname.if 5 ,
> .Xr ifconfig 8 ,
> .Xr netstart 8
>
morning.
so tpmr(4), which is a small page anyway, says:
A TPMR is a simplified Ethernet bridge that provides
a subset of the functionality as found in bridge(4).
and
Other forms of Ethernet bridging are available using the
bridge(4) driver.
that's in (the only) 9 lines of text in DESCRIPTION. maybe the first
paragraph could read like this:
DESCRIPTION
The tpmr driver implements an 802.1Q (originally 802.1aj)
Two-Port MAC Relay (TPMR). A TPMR is a simplified Ethernet
bridge with exactly two member ports, and it
unconditionally relays Ethernet packets between those ports.
then you could use your changes to expand the reference to bridge and
veb.
jmc