svn commit: r356773 - in stable: 11/share/man/man4 12/share/man/man4

Kyle Evans kevans at FreeBSD.org
Thu Jan 16 03:16:09 UTC 2020


Author: kevans
Date: Thu Jan 16 03:16:08 2020
New Revision: 356773
URL: https://svnweb.freebsd.org/changeset/base/356773

Log:
  MFC r356688, r356694: tap(4) manpage improvements
  
  r356688:
  Install tap(4) manpage as vmnet(4) as well
  
  If one comes across a vmnet interface, this is a useful pointer to have
  towards what it actually is if they're otherwise unfamiliar.
  
  r356694:
  tap(4): also note that we drop configured addresses
  
  This provides a specific pointer for users of tap(4) to understand why their
  interfaces are losing their addresses, and specifically how to workaround
  this if they need different behavior.
  
  This manpage received a .Dd bump earlier today in r35688, so no bump occurs
  this time.

Modified:
  stable/12/share/man/man4/Makefile
  stable/12/share/man/man4/tap.4
Directory Properties:
  stable/12/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/11/share/man/man4/Makefile
  stable/11/share/man/man4/tap.4
Directory Properties:
  stable/11/   (props changed)

Modified: stable/12/share/man/man4/Makefile
==============================================================================
--- stable/12/share/man/man4/Makefile	Thu Jan 16 03:14:01 2020	(r356772)
+++ stable/12/share/man/man4/Makefile	Thu Jan 16 03:16:08 2020	(r356773)
@@ -749,7 +749,9 @@ MLINKS+=stf.4 if_stf.4
 MLINKS+=stge.4 if_stge.4
 MLINKS+=syncache.4 syncookies.4
 MLINKS+=syscons.4 sc.4
-MLINKS+=tap.4 if_tap.4
+MLINKS+=tap.4 if_tap.4 \
+	tap.4 vmnet.4 \
+	tap.4 if_vmnet.4
 MLINKS+=tdfx.4 tdfx_linux.4
 MLINKS+=ti.4 if_ti.4
 MLINKS+=tl.4 if_tl.4

Modified: stable/12/share/man/man4/tap.4
==============================================================================
--- stable/12/share/man/man4/tap.4	Thu Jan 16 03:14:01 2020	(r356772)
+++ stable/12/share/man/man4/tap.4	Thu Jan 16 03:16:08 2020	(r356773)
@@ -1,11 +1,12 @@
 .\" $FreeBSD$
 .\" Based on PR#2411
 .\"
-.Dd April 29, 2019
+.Dd January 13, 2020
 .Dt TAP 4
 .Os
 .Sh NAME
-.Nm tap
+.Nm tap ,
+.Nm vmnet
 .Nd Ethernet tunnel software network interface
 .Sh SYNOPSIS
 .Cd device tuntap
@@ -280,6 +281,7 @@ On the last close of the data device, the interface is
 brought down
 (as if with
 .Dq ifconfig tap Ns Sy N No down )
+and has all of its configured addresses deleted
 unless the device is a
 .Em VMnet
 device, or has


More information about the svn-src-all mailing list