update to 2.6.9-rc1
[linux-flexiantxendom0-3.2.10.git] / net / ipv6 / Kconfig
1 #
2 # IPv6 configuration
3
4 config IPV6_PRIVACY
5         bool "IPv6: Privacy Extensions (RFC 3041) support"
6         depends on IPV6
7         ---help---
8           Privacy Extensions for Stateless Address Autoconfiguration in IPv6
9           support.  With this option, additional periodically-alter 
10           pseudo-random global-scope unicast address(es) will assigned to
11           your interface(s).
12         
13           By default, kernel do not generate temporary addresses.
14           To use temporary addresses, do
15         
16                 echo 2 >/proc/sys/net/ipv6/conf/all/use_tempaddr 
17
18           See <file:Documentation/networking/ip-sysctl.txt> for details.
19
20 config IPV6_NDISC_NEW
21         bool
22         default y
23
24 config INET6_AH
25         tristate "IPv6: AH transformation"
26         depends on IPV6
27         select XFRM
28         select CRYPTO
29         select CRYPTO_HMAC
30         select CRYPTO_MD5
31         select CRYPTO_SHA1
32         ---help---
33           Support for IPsec AH.
34
35           If unsure, say Y.
36
37 config INET6_ESP
38         tristate "IPv6: ESP transformation"
39         depends on IPV6
40         select XFRM
41         select CRYPTO
42         select CRYPTO_HMAC
43         select CRYPTO_MD5
44         select CRYPTO_SHA1
45         select CRYPTO_DES
46         ---help---
47           Support for IPsec ESP.
48
49           If unsure, say Y.
50
51 config INET6_IPCOMP
52         tristate "IPv6: IPComp transformation"
53         depends on IPV6
54         select XFRM
55         select INET6_TUNNEL
56         select CRYPTO
57         select CRYPTO_DEFLATE
58         ---help---
59           Support for IP Paylod Compression (RFC3173), typically needed
60           for IPsec.
61
62           If unsure, say Y.
63
64 config INET6_TUNNEL
65         tristate "IPv6: tunnel transformation"
66         depends on IPV6
67         select XFRM
68         ---help---
69           Support for generic IPv6-in-IPv6 tunnel transformation, which is
70           required by the IPv6-in-IPv6 tunneling module as well as tunnel mode
71           IPComp.
72           
73           If unsure, say Y.
74
75 config IPV6_TUNNEL
76         tristate "IPv6: IPv6-in-IPv6 tunnel"
77         depends on IPV6
78         select INET6_TUNNEL
79         ---help---
80           Support for IPv6-in-IPv6 tunnels described in RFC 2473.
81
82           If unsure, say N.
83