VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.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 INET6_AH
21         tristate "IPv6: AH transformation"
22         depends on IPV6
23         select XFRM
24         select CRYPTO
25         select CRYPTO_HMAC
26         select CRYPTO_MD5
27         select CRYPTO_SHA1
28         ---help---
29           Support for IPsec AH.
30
31           If unsure, say Y.
32
33 config INET6_ESP
34         tristate "IPv6: ESP transformation"
35         depends on IPV6
36         select XFRM
37         select CRYPTO
38         select CRYPTO_HMAC
39         select CRYPTO_MD5
40         select CRYPTO_SHA1
41         select CRYPTO_DES
42         ---help---
43           Support for IPsec ESP.
44
45           If unsure, say Y.
46
47 config INET6_IPCOMP
48         tristate "IPv6: IPComp transformation"
49         depends on IPV6
50         select XFRM
51         select CRYPTO
52         select CRYPTO_DEFLATE
53         ---help---
54           Support for IP Paylod Compression (RFC3173), typically needed
55           for IPsec.
56
57           If unsure, say Y.
58
59 config IPV6_TUNNEL
60         tristate "IPv6: IPv6-in-IPv6 tunnel"
61         depends on IPV6
62         ---help---
63           Support for IPv6-in-IPv6 tunnels described in RFC 2473.
64
65           If unsure, say N.
66