xref: /freebsd/share/man/man4/vlan.4 (revision 262e143bd46171a6415a5b28af260a5efa2a3db8)
1.\"
2.\" Copyright (c) 2001 Yar Tikhiy
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\"    notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\"    notice, this list of conditions and the following disclaimer in the
12.\"    documentation and/or other materials provided with the distribution.
13.\"
14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24.\" SUCH DAMAGE.
25.\"
26.\" $FreeBSD$
27.\"
28.Dd August 28, 2005
29.Dt VLAN 4
30.Os
31.Sh NAME
32.Nm vlan
33.Nd "IEEE 802.1Q VLAN network interface"
34.Sh SYNOPSIS
35To compile this driver into the kernel,
36place the following lines in your
37kernel configuration file:
38.Bd -ragged -offset indent
39.Cd "device miibus"
40.Cd "device vlan"
41.Ed
42.Pp
43Alternatively, to load the driver as a
44module at boot time, place the following line in
45.Xr loader.conf 5 :
46.Bd -literal -offset indent
47if_vlan_load="YES"
48.Ed
49.Sh DESCRIPTION
50The
51.Nm
52driver demultiplexes frames tagged according to
53the IEEE 802.1Q standard into logical
54.Nm
55network interfaces, which allows routing/bridging between
56multiple VLANs through a single switch trunk port.
57.Pp
58Each
59.Nm
60interface is created at runtime using interface cloning.
61This is
62most easily done with the
63.Xr ifconfig 8
64.Cm create
65command or using the
66.Va cloned_interfaces
67variable in
68.Xr rc.conf 5 .
69.Pp
70To function, a
71.Nm
72interface must be assigned a parent interface and
73numeric VLAN tag using
74.Xr ifconfig 8 .
75A single parent can be assigned to multiple
76.Nm
77interfaces provided they have different tags.
78The parent interface is likely to be an Ethernet card connected
79to a properly configured switch port.
80The VLAN tag should match one of those set up in the switched
81network.
82.Sh HARDWARE
83The
84.Nm
85driver supports efficient operation over parent interfaces that can provide
86help in processing VLANs.
87Such interfaces are automatically recognized by their capabilities.
88Depending on the level of sophistication found in a physical
89interface, it may do full VLAN processing or just be able to
90receive and transmit frames exceeding the maximum Ethernet frame size
91by the length of a 802.1Q header.
92The capabilities may be user-controlled by the respective parameters to
93.Xr ifconfig 8 ,
94.Cm vlanhwtag
95and
96.Cm vlanmtu .
97However, a physical interface is not obliged to react to them:
98It may have either capability enabled permanently without
99a way to turn it off.
100The whole issue is very specific to a particular device and its driver.
101.Pp
102By now, the list of physical interfaces able of full VLAN processing
103in the hardware is limited to the following devices:
104.Xr bge 4 ,
105.Xr em 4 ,
106.Xr ixgb 4 ,
107.Xr nge 4 ,
108.Xr re 4 ,
109.Xr ti 4 ,
110.Xr txp 4 ,
111and
112.Xr vge 4 .
113.Pp
114The rest of the Ethernet interfaces can run
115VLANs using software emulation in the
116.Nm
117driver.
118However, most of them lack the capability
119of transmitting and receiving oversized frames.
120Assigning such an interface as the parent to
121.Nm
122will result in a reduced MTU on the corresponding
123.Nm
124interfaces.
125In the modern Internet, this is likely to cause
126.Xr tcp 4
127connectivity problems due to massive, inadequate
128.Xr icmp 4
129filtering that breaks the Path MTU Discovery mechanism.
130.Pp
131The interfaces that support oversized frames are as follows:
132.Bl -tag -width ".Xr fxp 4 " -offset indent
133.It Xr bfe 4
134supports long frames for
135.Nm
136natively.
137.It Xr dc 4
138supports long frames for
139.Nm
140natively.
141.It Xr de 4
142requires defining
143.Dv BIG_PACKET
144in the
145.Pa /usr/src/sys/pci/if_de.c
146source file and rebuilding the kernel
147or module.
148The hack works only for the 21041, 21140, and 21140A chips.
149.It Xr fxp 4
150supports long frames for
151.Nm
152natively.
153.It Xr gem 4
154supports long frames for
155.Nm
156natively.
157.It Xr hme 4
158supports long frames for
159.Nm
160natively.
161.It Xr rl 4
162supports long frames for
163.Nm
164natively.
165.It Xr sis 4
166supports long frames for
167.Nm
168natively.
169.It Xr sk 4
170supports long frames for
171.Nm
172natively.
173.It Xr ste 4
174supports long frames for
175.Nm
176natively.
177.It Xr tl 4
178has support for long frames.
179.It Xr tx 4
180supports long frames for
181.Nm
182natively.
183.It Xr xl 4
184supports long frames only if the card is built on a newer chip
185(Cyclone and above).
186.El
187.Pp
188The
189.Nm
190driver automatically recognizes devices that natively support oversized frames
191for
192.Nm
193use and calculates the appropriate frame MTU based on the
194capabilities of the parent interface.
195The other interfaces listed above can handle oversized frames,
196but they do not advertise this ability of theirs.
197The MTU setting on
198.Nm
199can be corrected manually if used in conjunction with such parent interface.
200.Sh SEE ALSO
201.Xr kqueue 2 ,
202.Xr miibus 4 ,
203.Xr ifconfig 8
204.Sh BUGS
205No 802.1Q features except VLAN tagging are implemented.
206.Pp
207.Dv EVFILT_NETDEV
208events on a
209.Nm
210interface will be sent through
211.Xr kqueue 2
212only if the parent interface uses
213.Xr miibus 4
214for link state notification.
215