No empty .Rs/.Re
[netbsd-mini2440.git] / share / man / man4 / faith.4
blob5e9e20d9fcf7e7650eff18669324440b1c80bc5e
1 .\"     $NetBSD: faith.4,v 1.9 2001/06/30 01:01:36 itojun Exp $
2 .\"     $KAME: faith.4,v 1.10 2001/06/30 00:42:48 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 FAITH 4
33 .Os
34 .Sh NAME
35 .Nm faith
36 .Nd IPv6-to-IPv4 TCP relay capturing interface
37 .Sh SYNOPSIS
38 .Cd "pseudo-device faith"
39 .Sh DESCRIPTION
40 The
41 .Nm
42 interface captures IPv6 TCP traffic,
43 for implementing userland IPv6-to-IPv4 TCP relay
44 like
45 .Xr faithd 8 .
46 .Pp
47 .Nm
48 interfaces are dynamically created and destroyed with the
49 .Xr ifconfig 8
50 .Cm create
51 and
52 .Cm destroy
53 subcommands.
54 .Pp
55 Special action will be taken when IPv6 TCP traffic is seen on a router,
56 and routing table suggests to route it to
57 .Nm
58 interface.
59 In this case, the packet will be accepted by the router,
60 regardless of list of IPv6 interface addresses assigned to the router.
61 The packet will be captured by an IPv6 TCP socket, if it has
62 .Dv IN6P_FAITH
63 flag turned on and it has matching address/port pairs.
64 In result,
65 .Nm
66 will let you capture IPv6 TCP traffic to some specific destination addresses.
67 Userland programs, such as
68 .Xr faithd 8
69 can use this behavior to relay IPv6 TCP traffic to IPv4 TCP traffic.
70 The program can accept some specific IPv6 TCP traffic, perform
71 .Xr getsockname 2
72 to get the IPv6 destination address specified by the client,
73 and perform application-specific address mapping to relay IPv6 TCP to IPv4 TCP.
74 .Pp
75 .Dv IN6P_FAITH
76 flag on IPv6 TCP socket can be set by using
77 .Xr setsockopt 2 ,
78 with level equals to
79 .Dv IPPROTO_IPV6
80 and optname equals to
81 .Dv IPv6_FAITH .
82 .Pp
83 To handle error reports by ICMPv6, some of ICMPv6 packets routed to
84 .Nm
85 interface will be delivered to IPv6 TCP, as well.
86 .Pp
87 To understand how
88 .Nm
89 can be used, take a look at source code of
90 .Xr faithd 8 .
91 .Pp
93 .Nm
94 interface implements potentially dangerous operation,
95 great care must be taken when configuring
96 .Nm
97 interface.
98 To avoid possible misuse,
99 .Xr sysctl 8
100 variable
101 .Li net.inet6.ip6.keepfaith
102 must be set to
103 .Li 1
104 prior to the use of the interface.
105 When
106 .Li net.inet6.ip6.keepfaith
108 .Li 0 ,
109 no packet will be captured by
111 interface.
114 interface is intended to be used on routers, not on hosts.
116 .Sh SEE ALSO
117 .Xr inet 4 ,
118 .Xr inet6 4 ,
119 .Xr faithd 8
121 .%A Jun-ichiro itojun Hagino
122 .%A Kazu Yamamoto
123 .%T "An IPv6-to-IPv4 transport relay translator"
124 .%B RFC 3142
125 .%O ftp://ftp.isi.edu/in-notes/rfc3142.txt
126 .%D June 2001
128 .Sh HISTORY
129 The FAITH IPv6-to-IPv4 TCP relay translator was first appeared in
130 WIDE hydrangea IPv6 stack.