xref: /dragonfly/share/man/man4/bridge.4 (revision 10cbe914)
1.\" Copyright 2001 Wasabi Systems, Inc.
2.\" All rights reserved.
3.\"
4.\" Written by Jason R. Thorpe for Wasabi Systems, Inc.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\" 3. All advertising materials mentioning features or use of this software
15.\"    must display the following acknowledgement:
16.\"	This product includes software developed for the NetBSD Project by
17.\"	Wasabi Systems, Inc.
18.\" 4. The name of Wasabi Systems, Inc. may not be used to endorse
19.\"    or promote products derived from this software without specific prior
20.\"    written permission.
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
23.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
26.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32.\" POSSIBILITY OF SUCH DAMAGE.
33.\"
34.\" $NetBSD: bridge.4,v 1.7 2005/06/23 12:47:38 peter Exp $
35.\" $DragonFly: src/share/man/man4/bridge.4,v 1.10 2007/07/29 17:27:45 swildner Exp $
36.\"
37.Dd August 30, 2006
38.Dt BRIDGE 4
39.Os
40.Sh NAME
41.Nm bridge
42.Nd network bridge device
43.Sh SYNOPSIS
44.Cd "pseudo-device bridge"
45.Sh DESCRIPTION
46The
47.Nm
48driver creates a logical link between two or more IEEE 802 networks
49that use the same (or
50.Dq similar enough )
51framing format.
52For example, it is possible to bridge Ethernet and 802.11 networks together,
53but it is not possible to bridge Ethernet and Token Ring together.
54.Pp
55To use
56.Nm ,
57the administrator must first create the interface and configure
58the bridge parameters.
59The bridge is created using the
60.Xr ifconfig 8
61.Cm create
62subcommand.
63See the
64.Xr ifconfig 8
65manual page for further information on configuring bridges.
66.Pp
67A bridge can be used to provide several services, such as a simple
68802.11-to-Ethernet bridge for wireless hosts, and traffic isolation.
69.Pp
70A bridge works like a hub, forwarding traffic from one interface
71to another.
72Multicast and broadcast packets are always forwarded to all
73interfaces that are part of the bridge.
74For unicast traffic, the bridge learns which MAC addresses are associated
75with which interfaces and will forward the traffic selectively.
76.Pp
77The
78.Nm
79driver implements the IEEE 802.1D Spanning Tree protocol (STP).
80Spanning Tree is used to detect and remove loops in a network topology.
81.Pp
82Packet filtering can be used with any firewall package that hooks in via the
83.Xr pfil 9
84framework.
85When filtering is enabled, bridged packets will pass through the filter
86inbound on the originating interface, on the bridge interface and outbound on
87the appropriate interfaces.
88Either stage can be disabled, this behaviour can be controlled using
89.Xr sysctl 8 :
90Set
91.Va net.link.bridge.pfil_member
92to
93.Li 1
94to enable filtering on the incoming and outgoing member interfaces
95and set
96.Va net.link.bridge.pfil_bridge
97to
98.Li 1
99to enable filtering on the bridge interface.
100.Pp
101ARP and REVARP packets are forwarded without being filtered and others
102that are not IP nor IPv6 packets are not forwarded when filtering is
103enabled.
104.Pp
105Note that packets to and from the bridging host will be seen by the
106filter on the interface with the appropriate address configured as well
107as on the interface on which the packet arrives or departs.
108.Pp
109The MTU of the first member interface to be added is used as the bridge MTU,
110all additional members are required to have exactly the same value.
111.Sh SEE ALSO
112.Xr pf 4 ,
113.Xr ifconfig 8
114.Sh HISTORY
115The
116.Nm
117driver first appeared in
118.Ox 2.5
119and found its way into
120.Dx 1.3 .
121.Sh AUTHORS
122.An -nosplit
123The
124.Nm
125driver was originally written by
126.An Jason L. Wright
127.Aq jason@thought.net
128as part of an undergraduate independent study at the University of
129North Carolina at Greensboro.
130.Pp
131This version of the
132.Nm
133driver has been heavily modified from the original version by
134.An Jason R. Thorpe
135.Aq thorpej@wasabisystems.com .
136.Sh BUGS
137The
138.Nm
139driver currently supports only Ethernet and Ethernet-like (e.g. 802.11)
140network devices, with exactly the same interface MTU size as the bridge device.
141