1 .\" $NetBSD: gre.4,v 1.28 2002/06/10 02:49:35 itojun Exp $
3 .\" Copyright 1998 (c) The NetBSD Foundation, Inc.
4 .\" All rights reserved.
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Heiko W.Rupp <hwr@pilhuhn.de>
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
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 .\" 3. All advertising materials mentioning features or use of this software
18 .\" must display the following acknowledgement:
19 .\" This product includes software developed by the NetBSD
20 .\" Foundation, Inc. and its contributors.
21 .\" 4. Neither the name of the The NetBSD Foundation nor the names of its
22 .\" contributors may be used to endorse or promote products derived
23 .\" from this software without specific prior written permission.
25 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 .\" POSSIBILITY OF SUCH DAMAGE.
37 .\" $FreeBSD: src/share/man/man4/gre.4,v 1.7 2006/10/19 07:41:47 danger Exp $
44 .Nd encapsulating network device
46 To compile this driver into the kernel, place the following line
47 in the kernel configuration file:
48 .Bd -ragged -offset indent
49 .Cd "pseudo-device gre"
52 Alternatively, to load this driver as a module at boot time,
53 place the following line in
55 .Bd -literal -offset indent
61 network interface pseudo device encapsulates datagrams
63 These encapsulated datagrams are routed to a destination host,
64 where they are decapsulated and further routed to their final destination.
67 appears to the inner datagrams as one hop.
70 interfaces are dynamically created and destroyed with the
77 This driver currently supports the following modes of operation:
78 .Bl -tag -width indent
79 .It "GRE encapsulation (IP protocol number 47)"
80 Encapsulated datagrams are
81 prepended an outer datagram and a GRE header.
82 The GRE header specifies
83 the type of the encapsulated datagram and thus allows for tunneling other
85 GRE mode is also the default tunnel mode on Cisco routers.
86 This is also the default mode of operation of the
89 .\"As part of the GRE mode,
91 .\"also supports Cisco WCCP protocol, both version 1 and version 2.
92 .\"Since there is no reliable way to distinguish between WCCP versions, it
93 .\"should be configured manually using the
98 .\"flag is not set (default), then WCCP version 1 is selected.
99 .It "MOBILE encapsulation (IP protocol number 55)"
101 encapsulated into IP, but with a shorter encapsulation.
103 IP header is modified and the modifications are inserted between the
104 so modified header and the original payload.
107 only for IP-in-IP encapsulation.
112 interfaces support a number of
115 .Bl -tag -width ".Dv GRESADDRS"
117 Set the IP address of the local tunnel end.
118 This is the source address
119 set by or displayed by
125 Set the IP address of the remote tunnel end.
126 This is the destination address
127 set by or displayed by
133 Query the IP address that is set for the local tunnel end.
135 address the encapsulation header carries as local address (i.e., the real
136 address of the tunnel start point).
138 Query the IP address that is set for the remote tunnel end.
140 address the encapsulated packets are sent to (i.e., the real address of
141 the remote tunnel endpoint).
143 Set the operation mode to the specified IP protocol value.
145 protocol is passed to the interface in
146 .Po Vt "struct ifreq" Pc Ns Li -> Ns Va ifr_flags .
147 The operation mode can also be given as
149 .Bl -tag -width ".Cm -link0" -compact
161 flag is not used to choose encapsulation, but to modify the
162 internal route search for the remote tunnel endpoint, see the
166 Query operation mode.
169 Note that the IP addresses of the tunnel endpoints may be the same as the
172 for the interface (as if IP is encapsulated), but need not be.
174 Configuration example:
176 Host X-- Host A ----------------tunnel---------- Cisco D------Host E
179 +------Host B----------Host C----------+
184 .Bd -literal -offset indent
187 ifconfig greN A D netmask 0xffffffff linkX up
188 ifconfig greN tunnel A D
193 .Bd -literal -offset indent
195 ip unnumbered D ! e.g. address from Ethernet interface
196 tunnel source D ! e.g. address from Ethernet interface
198 ip route C <some interface and mask>
200 ip route X mask tunnelX
207 .Bd -literal -offset indent
211 ifconfig greN tunnel D A
214 If all goes well, you should see packets flowing ;-)
216 If you want to reach Host A over the tunnel (from Host D (Cisco)), then
217 you have to have an alias on Host A for e.g.\& the Ethernet interface like:
219 .Dl "ifconfig <etherif> alias Y"
223 .Dl "ip route Y mask tunnelX"
225 A similar setup can be used to create a link between two private networks
226 (for example in the 192.168 subnet) over the Internet:
228 192.168.1.* --- Router A -------tunnel-------- Router B --- 192.168.2.*
231 +------ the Internet ------+
234 Assuming router A has the (external) IP address A and the internal address
235 192.168.1.1, while router B has external address B and internal address
236 192.168.2.1, the following commands will configure the tunnel:
239 .Bd -literal -offset indent
241 ifconfig greN 192.168.1.1 192.168.2.1 link1
242 ifconfig greN tunnel A B
243 route add -net 192.168.2 -netmask 255.255.255.0 192.168.2.1
247 .Bd -literal -offset indent
249 ifconfig greN 192.168.2.1 192.168.1.1 link1
250 ifconfig greN tunnel B A
251 route add -net 192.168.1 -netmask 255.255.255.0 192.168.1.1
254 Note that this is a safe situation where the
256 flag (as discussed in the
258 section below) may (and probably should) be set.
262 interfaces is set to 1476 by default, to match the value used by Cisco routers.
263 This may not be an optimal value, depending on the link between the two tunnel
265 It can be adjusted via
268 For correct operation, the
270 device needs a route to the destination that is less specific than the
272 (Basically, there needs to be a route to the decapsulating host that
273 does not run over the tunnel, as this would be a loop.)
274 If the addresses are ambiguous, doing the
275 .Nm ifconfig Cm tunnel
280 IP addresses will help to find a route outside the tunnel.
284 to actually mark the interface as
288 must be given last on its command line.
290 The kernel must be set to forward datagrams by setting the
291 .Va net.inet.ip.forwarding
293 variable to non-zero.
303 A description of GRE encapsulation can be found in RFC 1701 and RFC 1702.
305 A description of MOBILE encapsulation can be found in RFC 2004.
307 .An Heiko W. Rupp Aq Mt hwr@pilhuhn.de
310 .Fn gre_compute_route
313 toggles the last bit of the
314 IP-address to provoke the search for a less specific route than the
315 one directly over the tunnel to prevent loops.
316 This is possibly not the best solution.
318 To avoid the address munging described above, turn on the
323 This implies that the GRE packet destination and the ifconfig remote host
324 are not the same IP addresses, and that the GRE destination does not route
329 The GRE RFCs are not yet fully implemented (no GRE options).