xref: /freebsd/share/man/man4/gif.4 (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1.\"	$FreeBSD$
2.\"	$KAME: gif.4,v 1.28 2001/05/18 13:15:56 itojun Exp $
3.\"
4.\" Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5.\" All rights reserved.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\"    notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\"    notice, this list of conditions and the following disclaimer in the
14.\"    documentation and/or other materials provided with the distribution.
15.\" 3. Neither the name of the project nor the names of its contributors
16.\"    may be used to endorse or promote products derived from this software
17.\"    without specific prior written permission.
18.\"
19.\" THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29.\" SUCH DAMAGE.
30.\"
31.Dd April 10, 1999
32.Dt GIF 4
33.Os
34.Sh NAME
35.Nm gif
36.Nd generic tunnel interface
37.Sh SYNOPSIS
38.Cd "device gif" Op Ar count
39.Sh DESCRIPTION
40The
41.Nm
42interface is a generic tunnelling pseudo device for IPv4 and IPv6.
43It can tunnel IPv[46] traffic over IPv[46].
44Therefore, there can be four possible configurations.
45The behavior of
46.Nm
47is mainly based on RFC2893 IPv6-over-IPv4 configured tunnel.
48On
49.Nx ,
50.Nm
51can also tunnel ISO traffic over IPv[46] using EON encapsulation.
52.Pp
53To use
54.Nm ,
55administrator needs to configure protocol and addresses used for the outer
56header.
57This can be done by using
58.Xr gifconfig 8 ,
59or
60.Dv SIOCSIFPHYADDR
61ioctl.
62Also, administrator needs to configure protocol and addresses used for the
63inner header, by using
64.Xr ifconfig 8 .
65Note that IPv6 link-local address
66.Pq those start with Li fe80::
67will be automatically configured whenever possible.
68You may need to remove IPv6 link-local address manually using
69.Xr ifconfig 8 ,
70when you would like to disable the use of IPv6 as inner header
71.Pq like when you need pure IPv4-over-IPv6 tunnel .
72Finally, use routing table to route the packets toward
73.Nm
74interface.
75.Pp
76.Nm
77can be configured to be ECN friendly.
78This can be configured by
79.Dv IFF_LINK1 .
80.Pp
81.Ss ECN friendly behavior
82.Nm
83can be configured to be ECN friendly, as described in
84.Dv draft-ietf-ipsec-ecn-02.txt .
85This is turned off by default, and can be turned on by
86.Dv IFF_LINK1
87interface flag.
88.Pp
89Without
90.Dv IFF_LINK1 ,
91.Nm
92will show a normal behavior, like described in RFC2893.
93This can be summarized as follows:
94.Bl -tag -width "Ingress" -offset indent
95.It Ingress
96Set outer TOS bit to
97.Dv 0 .
98.It Egress
99Drop outer TOS bit.
100.El
101.Pp
102With
103.Dv IFF_LINK1 ,
104.Nm
105will copy ECN bits
106.Po
107.Dv 0x02
108and
109.Dv 0x01
110on IPv4 TOS byte or IPv6 traffic class byte
111.Pc
112on egress and ingress, as follows:
113.Bl -tag -width "Ingress" -offset indent
114.It Ingress
115Copy TOS bits except for ECN CE
116.Po
117masked with
118.Dv 0xfe
119.Pc
120from
121inner to outer.
122set ECN CE bit to
123.Dv 0 .
124.It Egress
125Use inner TOS bits with some change.
126If outer ECN CE bit is
127.Dv 1 ,
128enable ECN CE bit on the inner.
129.El
130.Pp
131Note that the ECN friendly behavior violates RFC2893.
132This should be used in mutual agreement with the peer.
133.Pp
134.Ss Security
135Malicious party may try to circumvent security filters by using
136tunnelled packets.
137For better protection,
138.Nm
139performs martian filter and ingress filter against outer source address,
140on egress.
141Note that martian/ingress filters are no way complete.
142You may want to secure your node by using packet filters.
143Ingress filter can be turned off by
144.Dv IFF_LINK2
145bit.
146.\"
147.Sh SEE ALSO
148.Xr inet 4 ,
149.Xr inet6 4 ,
150.Xr gifconfig 8
151.Rs
152.%A	R. Gilligan
153.%A	E. Nordmark
154.%B	RFC2893
155.%T	Transition Mechanisms for IPv6 Hosts and Routers
156.%D	August 2000
157.%O	ftp://ftp.isi.edu/in-notes/rfc2893.txt
158.Re
159.Rs
160.%A	Sally Floyd
161.%A	David L. Black
162.%A	K. K. Ramakrishnan
163.%T	"IPsec Interactions with ECN"
164.%D	December 1999
165.%O	draft-ietf-ipsec-ecn-02.txt
166.Re
167.\"
168.Sh HISTORY
169The
170.Nm
171device first appeared in WIDE hydrangea IPv6 kit.
172.\"
173.Sh BUGS
174There are many tunnelling protocol specifications,
175defined differently from each other.
176.Nm
177may not interoperate with peers which are based on different specifications,
178and are picky about outer header fields.
179For example, you cannot usually use
180.Nm
181to talk with IPsec devices that use IPsec tunnel mode.
182.Pp
183The current code does not check if the ingress address
184.Pq outer source address
185configured to
186.Nm
187makes sense.
188Make sure to configure an address which belongs to your node.
189Otherwise, your node will not be able to receive packets from the peer,
190and your node will generate packets with a spoofed source address.
191.Pp
192If the outer protocol is IPv4,
193.Nm
194does not try to perform path MTU discovery for the encapsulated packet
195.Pq DF bit is set to 0 .
196.Pp
197If the outer protocol is IPv6, path MTU discovery for encapsulated packet
198may affect communication over the interface.
199The first bigger-than-pmtu packet may be lost.
200To avoid the problem, you may want to set the interface MTU for
201.Nm
202to 1240 or smaller, when outer header is IPv6 and inner header is IPv4.
203.Pp
204.Nm
205does not translate ICMP messages for outer header into inner header.
206.Pp
207In the past,
208.Nm
209had a multi-destination behavior, configurable via
210.Dv IFF_LINK0
211flag.
212The behavior was obsoleted and is no longer supported.
213