diff options
author | kn <kn@cvs.openbsd.org> | 2020-08-05 14:55:41 +0000 |
---|---|---|
committer | kn <kn@cvs.openbsd.org> | 2020-08-05 14:55:41 +0000 |
commit | 2b460438c7fc2845172607cc24b7cebdc252e390 (patch) | |
tree | 8c0fa11ce6d7c0aad32eccbd2ed37f7d1e491594 /sbin | |
parent | ebe3c668d5327ef9b5529f8245e45fb67997d1b4 (diff) |
Document tpmr ioctls and synopsis
Add missing TPMR section to ifconfig(8) by moving the commands from the
driver's manual to it (copy/paste) and document the ioctl(2) interface in
tpmr(4).
Indenting tpmr's first EXAMPLE while here; from jmc.
OK jmc
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ifconfig/ifconfig.8 | 50 |
1 files changed, 48 insertions, 2 deletions
diff --git a/sbin/ifconfig/ifconfig.8 b/sbin/ifconfig/ifconfig.8 index 225d0f3e8fe..739e1f4ea32 100644 --- a/sbin/ifconfig/ifconfig.8 +++ b/sbin/ifconfig/ifconfig.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ifconfig.8,v 1.353 2020/07/26 18:34:10 kn Exp $ +.\" $OpenBSD: ifconfig.8,v 1.354 2020/08/05 14:55:40 kn Exp $ .\" $NetBSD: ifconfig.8,v 1.11 1996/01/04 21:27:29 pk Exp $ .\" $FreeBSD: ifconfig.8,v 1.16 1998/02/01 07:03:29 steve Exp $ .\" @@ -31,7 +31,7 @@ .\" .\" @(#)ifconfig.8 8.4 (Berkeley) 6/1/94 .\" -.Dd $Mdocdate: July 26 2020 $ +.Dd $Mdocdate: August 5 2020 $ .Dt IFCONFIG 8 .Os .Sh NAME @@ -204,6 +204,7 @@ At least the following devices can be created on demand: .Xr svlan 4 , .Xr switch 4 , .Xr tap 4 , +.Xr tpmr 4 , .Xr trunk 4 , .Xr tun 4 , .Xr vether 4 , @@ -831,6 +832,51 @@ is set to zero, then entries will not be expired. .It Cm up Start the bridge forwarding packets. .El +.Sh TPMR +.nr nS 1 +.Bk -words +.Nm ifconfig +.Ar tpmr-interface +.Op Cm add Ar child-iface +.Op Cm del Ar child-iface +.Op Oo Fl Oc Ns Cm link0 +.Op Oo Fl Oc Ns Cm link1 +.Op Oo Fl Oc Ns Cm link2 +.Ek +The following options are available for a +.Xr tpmr 4 +interface: +.Bl -tag -width Ds +.It Cm add Ar child-iface +Add +.Ar child-iface +as a member. +.It Cm del Ar child-iface +Remove the member +.Ar child-iface . +.It Cm link0 +Disable the filtering of Ethernet frames destined for the TPMR +component reserved addresses, as specified by IEEE 802.1Q. +.It Cm -link0 +Enable the filtering of Ethernet frames destined for the TPMR +component reserved addresses, as specified by IEEE 802.1Q. +This is the default. +.It Cm link1 +Disable the filtering of IPv4 and IPv6 packets with +.Xr pf 4 . +.It Cm -link1 +Enable the filtering of IPv4 and IPv6 packets with +.Xr pf 4 . +Packets will appear to enter or leave the member port interfaces. +This is the default. +.It Cm link2 +Disable the filtering of 802.1Q VLAN and QinQ SVLAN packets. +.It Cm -link2 +Enable the filtering of 802.1Q VLAN and QinQ SVLAN packets. +.Xr pf 4 . +Packets will appear to enter or leave the member port interfaces. +This is the default. +.El .Sh CARP .nr nS 1 .Bk -words |