Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # XFRM configuration |
| 3 | # |
Sam Ravnborg | 6a2e9b7 | 2005-07-11 21:13:56 -0700 | [diff] [blame] | 4 | config XFRM |
| 5 | bool |
| 6 | depends on NET |
Eric Dumazet | 97e219b | 2017-02-07 15:37:15 -0800 | [diff] [blame] | 7 | select GRO_CELLS |
Sam Ravnborg | 6a2e9b7 | 2005-07-11 21:13:56 -0700 | [diff] [blame] | 8 | |
Steffen Klassert | 25393d3 | 2017-02-15 09:39:44 +0100 | [diff] [blame] | 9 | config XFRM_OFFLOAD |
| 10 | bool |
| 11 | depends on XFRM |
| 12 | |
Jan Beulich | 7e15252 | 2012-05-15 01:57:44 +0000 | [diff] [blame] | 13 | config XFRM_ALGO |
| 14 | tristate |
| 15 | select XFRM |
| 16 | select CRYPTO |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | config XFRM_USER |
Masahide NAKAMURA | 654b32c | 2006-08-23 19:12:56 -0700 | [diff] [blame] | 19 | tristate "Transformation user configuration interface" |
Jan Beulich | 7e15252 | 2012-05-15 01:57:44 +0000 | [diff] [blame] | 20 | depends on INET |
| 21 | select XFRM_ALGO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | ---help--- |
Masahide NAKAMURA | 654b32c | 2006-08-23 19:12:56 -0700 | [diff] [blame] | 23 | Support for Transformation(XFRM) user configuration interface |
| 24 | like IPsec used by native Linux tools. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | If unsure, say Y. |
| 27 | |
Masahide NAKAMURA | c11f1a1 | 2006-08-23 22:38:14 -0700 | [diff] [blame] | 28 | config XFRM_SUB_POLICY |
Kees Cook | f215bf4 | 2012-10-02 11:20:07 -0700 | [diff] [blame] | 29 | bool "Transformation sub policy support" |
| 30 | depends on XFRM |
Masahide NAKAMURA | c11f1a1 | 2006-08-23 22:38:14 -0700 | [diff] [blame] | 31 | ---help--- |
| 32 | Support sub policy for developers. By using sub policy with main |
| 33 | one, two policies can be applied to the same packet at once. |
| 34 | Policy which lives shorter time in kernel should be a sub. |
| 35 | |
| 36 | If unsure, say N. |
| 37 | |
Shinta Sugimoto | d047365 | 2007-02-08 13:13:07 -0800 | [diff] [blame] | 38 | config XFRM_MIGRATE |
Kees Cook | f215bf4 | 2012-10-02 11:20:07 -0700 | [diff] [blame] | 39 | bool "Transformation migrate database" |
| 40 | depends on XFRM |
Shinta Sugimoto | d047365 | 2007-02-08 13:13:07 -0800 | [diff] [blame] | 41 | ---help--- |
| 42 | A feature to update locator(s) of a given IPsec security |
| 43 | association dynamically. This feature is required, for |
| 44 | instance, in a Mobile IPv6 environment with IPsec configuration |
| 45 | where mobile nodes change their attachment point to the Internet. |
| 46 | |
| 47 | If unsure, say N. |
| 48 | |
Masahide NAKAMURA | 8ea8434 | 2007-12-20 20:44:02 -0800 | [diff] [blame] | 49 | config XFRM_STATISTICS |
Kees Cook | f215bf4 | 2012-10-02 11:20:07 -0700 | [diff] [blame] | 50 | bool "Transformation statistics" |
| 51 | depends on INET && XFRM && PROC_FS |
Masahide NAKAMURA | 8ea8434 | 2007-12-20 20:44:02 -0800 | [diff] [blame] | 52 | ---help--- |
| 53 | This statistics is not a SNMP/MIB specification but shows |
| 54 | statistics about transformation error (or almost error) factor |
| 55 | at packet processing for developer. |
| 56 | |
| 57 | If unsure, say N. |
| 58 | |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 59 | config XFRM_IPCOMP |
| 60 | tristate |
Jan Beulich | 7e15252 | 2012-05-15 01:57:44 +0000 | [diff] [blame] | 61 | select XFRM_ALGO |
Herbert Xu | 6fccab6 | 2008-07-25 02:54:40 -0700 | [diff] [blame] | 62 | select CRYPTO |
| 63 | select CRYPTO_DEFLATE |
| 64 | |
Sam Ravnborg | 6a2e9b7 | 2005-07-11 21:13:56 -0700 | [diff] [blame] | 65 | config NET_KEY |
| 66 | tristate "PF_KEY sockets" |
Jan Beulich | 7e15252 | 2012-05-15 01:57:44 +0000 | [diff] [blame] | 67 | select XFRM_ALGO |
Sam Ravnborg | 6a2e9b7 | 2005-07-11 21:13:56 -0700 | [diff] [blame] | 68 | ---help--- |
| 69 | PF_KEYv2 socket family, compatible to KAME ones. |
| 70 | They are required if you are going to use IPsec tools ported |
| 71 | from KAME. |
| 72 | |
| 73 | Say Y unless you know what you are doing. |
| 74 | |
Shinta Sugimoto | f6ed0ec | 2007-02-08 13:15:05 -0800 | [diff] [blame] | 75 | config NET_KEY_MIGRATE |
Kees Cook | f215bf4 | 2012-10-02 11:20:07 -0700 | [diff] [blame] | 76 | bool "PF_KEY MIGRATE" |
| 77 | depends on NET_KEY |
Shinta Sugimoto | f6ed0ec | 2007-02-08 13:15:05 -0800 | [diff] [blame] | 78 | select XFRM_MIGRATE |
| 79 | ---help--- |
| 80 | Add a PF_KEY MIGRATE message to PF_KEYv2 socket family. |
| 81 | The PF_KEY MIGRATE message is used to dynamically update |
| 82 | locator(s) of a given IPsec security association. |
| 83 | This feature is required, for instance, in a Mobile IPv6 |
| 84 | environment with IPsec configuration where mobile nodes |
| 85 | change their attachment point to the Internet. Detail |
| 86 | information can be found in the internet-draft |
| 87 | <draft-sugimoto-mip6-pfkey-migrate>. |
| 88 | |
| 89 | If unsure, say N. |
Sam Ravnborg | 6a2e9b7 | 2005-07-11 21:13:56 -0700 | [diff] [blame] | 90 | |