Sync usage with man page.
[netbsd-mini2440.git] / share / man / man4 / tun.4
blob23da3be5081cf67fe05d6fd1f8d30e755ddb5754
1 .\" $NetBSD: tun.4,v 1.22 2008/04/30 13:10:54 martin Exp $
2 .\"
3 .\" Copyright (c) 1996-2006 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by der Mouse.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGE.
29 .\"
30 .Dd April 8, 2006
31 .Dt TUN 4
32 .Os
33 .Sh NAME
34 .Nm tun
35 .Nd tunnel software network interface
36 .Sh SYNOPSIS
37 .Cd pseudo-device tun
38 .Sh DESCRIPTION
39 The
40 .Nm tun
41 interface is a software loopback mechanism that can be loosely
42 described as the network interface analog of the
43 .Xr pty 4 ,
44 that is,
45 .Nm tun
46 does for network interfaces what the
47 .Nm pty
48 driver does for terminals.
49 .Pp
50 The
51 .Nm tun
52 driver, like the
53 .Nm pty
54 driver, provides two interfaces: an interface like the usual facility
55 it is simulating
56 .Po
57 a network interface in the case of
58 .Nm tun ,
59 or a terminal for
60 .Nm pty
61 .Pc ,
62 and a character-special device
63 .Dq control
64 interface.
65 .Pp
66 To use a
67 .Nm tun
68 device, the administrator must first create the interface.
69 This can be done by using the
70 .Xr ifconfig 8
71 .Cm create
72 command, or via the
73 .Dv SIOCIFCREATE
74 ioctl.
76 .Fn open
77 call on
78 .Pa /dev/tun Ns Sy N ,
79 will also create a network interface with the same unit number of
80 that device if it doesn't exist yet.
81 .Pp
82 The network interfaces should be named
83 .Sy tun Ns Ar 0 ,
84 .Sy tun Ns Ar 1 ,
85 etc.
86 Each interface supports the usual network-interface
87 .Xr ioctl 2 Ns s ,
88 such as
89 .Dv SIOCSIFADDR
90 and
91 .Dv SIOCSIFNETMASK ,
92 and thus can be used with
93 .Xr ifconfig 8
94 like any other interface.
95 At boot time, they are
96 .Dv POINTOPOINT
97 interfaces, but this can be changed; see the description of the control
98 device, below.
99 When the system chooses to transmit a packet on the
100 network interface, the packet can be read from the control device
102 it appears there as
103 .Dq output
104 .Pc ;
105 writing a packet to the control device generates an input
106 packet on the network interface, as if the
107 .Pq non-existent
108 hardware had just received it.
110 The tunnel device, normally
111 .Pa /dev/tun Ns Sy N ,
112 is exclusive-open
114 it cannot be opened if it is already open
116 and is restricted to the super-user
117 .Pq regardless of file system permissions .
119 .Fn read
120 call will return an error
121 .Pq Er EHOSTDOWN
122 if the interface is not
123 .Dq ready
124 (which means that the interface
125 address has not been set).
126 Once the interface is ready,
127 .Fn read
128 will return a packet if one is available; if not, it will either block
129 until one is or return
130 .Er EAGAIN ,
131 depending on whether non-blocking I/O has been enabled.
132 If the packet
133 is longer than is allowed for in the buffer passed to
134 .Fn read ,
135 the extra data will be silently dropped.
137 Packets can be optionally prepended with the destination address as presented
138 to the network interface output routine
139 .Pq Sq Li tunoutput .
140 The destination address is in
141 .Sq Li struct sockaddr
142 format.
143 The actual length of the prepended address is in the member
144 .Sq Li sa_len .
145 The packet data follows immediately.
147 .Xr write 2
148 call passes a packet in to be
149 .Dq received
150 on the pseudo-interface.
151 Each
152 .Fn write
153 call supplies exactly one packet; the packet length is taken from the
154 amount of data provided to
155 .Fn write .
156 Writes will not block; if the packet cannot be accepted for a
157 transient reason
158 .Pq e.g., no buffer space available ,
159 it is silently dropped; if the reason is not transient
160 .Pq e.g., packet too large ,
161 an error is returned.
163 .Dq link-layer mode
164 is on
165 .Pq see Dv TUNSLMODE No below ,
166 the actual packet data must be preceded by a
167 .Sq Li struct sockaddr .
168 The driver currently only inspects the
169 .Sq Li sa_family
170 field.
171 The following
172 .Xr ioctl 2
173 calls are supported
174 .Pq defined in Aq Pa net/if_tun.h :
175 .Bl -tag -width TUNSIFMODE
176 .It Dv TUNSDEBUG
177 The argument should be a pointer to an
178 .Va int ;
179 this sets the internal debugging variable to that value.
180 What, if anything, this variable controls is not documented here;
181 see the source code.
182 .It Dv TUNGDEBUG
183 The argument should be a pointer to an
184 .Va int ;
185 this stores the internal debugging variable's value into it.
186 .It Dv TUNSIFMODE
187 The argument should be a pointer to an
188 .Va int ;
189 its value must be either
190 .Dv IFF_POINTOPOINT
192 .Dv IFF_BROADCAST
193 (optionally
194 .Dv IFF_MULTICAST
195 may be or'ed into the value).
196 The type of the corresponding
197 .Em tun Ns Sy n
198 interface is set to the supplied type.
199 If the value is anything else, an
200 .Er EINVAL
201 error occurs.
202 The interface must be down at the time; if it is up, an
203 .Er EBUSY
204 error occurs.
205 .It Dv TUNSLMODE
206 The argument should be a pointer to an
207 .Va int ;
208 a non-zero value turns off
209 .Dq multi-af
210 mode and turns on
211 .Dq link-layer
212 mode, causing packets read from the tunnel device to be prepended with
213 network destination address.
214 .It Dv TUNGIFHEAD
215 The argument should be a pointer to an
216 .Va int ;
217 the ioctl sets the value to one if the device is in
218 .Dq multi-af
219 mode, and zero otherwise.
220 .It Dv TUNSIFHEAD
221 The argument should be a pointer to an
222 .Va int ;
223 a non-zero value turns off
224 .Dq link-layer
225 mode, and enables
226 .Dq multi-af
227 mode, where every packet is preceded with a four byte address family.
228 .It Dv FIONBIO
229 Turn non-blocking I/O for reads off or on, according as the argument
230 .Va int Ns 's
231 value is or isn't zero
232 .Pq Writes are always nonblocking .
233 .It Dv FIOASYNC
234 Turn asynchronous I/O for reads
236 i.e., generation of
237 .Dv SIGIO
238 when data is available to be read
239 .Pc off or on, according as the argument
240 .Va int Ns 's
241 value is or isn't zero.
242 .It Dv FIONREAD
243 If any packets are queued to be read, store the size of the first one
244 into the argument
245 .Va int ;
246 otherwise, store zero.
247 .It Dv TIOCSPGRP
248 Set the process group to receive
249 .Dv SIGIO
250 signals, when asynchronous I/O is enabled, to the argument
251 .Va int
252 value.
253 .It Dv TIOCGPGRP
254 Retrieve the process group value for
255 .Dv SIGIO
256 signals into the argument
257 .Va int
258 value.
261 The control device also supports
262 .Xr select 2
263 for read; selecting for write is pointless, and always succeeds, since
264 writes are always non-blocking.
266 On the last close of the data device, by default, the interface is
267 brought down
268 .Po as if with
269 .Dq ifconfig tun Ns Sy n No down
270 .Pc .
271 All queued packets are thrown away.
272 If the interface is up when the data device is not open
273 output packets are always thrown away rather than letting
274 them pile up.
275 .Sh SEE ALSO
276 .Xr inet 4 ,
277 .Xr intro 4
278 .Sh HISTORY
279 .An -split
280 IPv6 support comes mostly from
282 and was added in
283 .Nx 4.0
285 .An Rui Paulo
286 .Aq rpaulo@NetBSD.org .