Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 2 | # |
| 3 | # TIPC configuration |
| 4 | # |
| 5 | |
Jan Engelhardt | a31b19c | 2007-05-23 14:49:38 -0700 | [diff] [blame] | 6 | menuconfig TIPC |
Kees Cook | f887cc4 | 2012-10-02 11:20:02 -0700 | [diff] [blame] | 7 | tristate "The TIPC Protocol" |
| 8 | depends on INET |
Xin Long | c530189 | 2020-08-16 17:32:03 +0800 | [diff] [blame] | 9 | depends on IPV6 || IPV6=n |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 10 | help |
Per Liden | c11ac3f | 2006-01-16 16:32:18 +0100 | [diff] [blame] | 11 | The Transparent Inter Process Communication (TIPC) protocol is |
| 12 | specially designed for intra cluster communication. This protocol |
| 13 | originates from Ericsson where it has been used in carrier grade |
| 14 | cluster applications for many years. |
Allan Stephens | 7981d6f | 2010-01-19 14:23:57 -0800 | [diff] [blame] | 15 | |
Per Liden | c11ac3f | 2006-01-16 16:32:18 +0100 | [diff] [blame] | 16 | For more information about TIPC, see http://tipc.sourceforge.net. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 17 | |
| 18 | This protocol support is also available as a module ( = code which |
| 19 | can be inserted in and removed from the running kernel whenever you |
| 20 | want). The module will be called tipc. If you want to compile it |
Mauro Carvalho Chehab | cd238ef | 2019-06-12 14:52:48 -0300 | [diff] [blame] | 21 | as a module, say M here and read <file:Documentation/kbuild/modules.rst>. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 22 | |
| 23 | If in doubt, say N. |
| 24 | |
Patrick McHardy | a29a194 | 2013-04-17 06:18:28 +0000 | [diff] [blame] | 25 | config TIPC_MEDIA_IB |
| 26 | bool "InfiniBand media type support" |
| 27 | depends on TIPC && INFINIBAND_IPOIB |
| 28 | help |
| 29 | Saying Y here will enable support for running TIPC on |
| 30 | IP-over-InfiniBand devices. |
Erik Hugne | d0f9193 | 2015-03-05 10:23:49 +0100 | [diff] [blame] | 31 | config TIPC_MEDIA_UDP |
| 32 | bool "IP/UDP media type support" |
| 33 | depends on TIPC |
| 34 | select NET_UDP_TUNNEL |
| 35 | help |
| 36 | Saying Y here will enable support for running TIPC over IP/UDP |
| 37 | bool |
| 38 | default y |
Tuong Lien | fc1b6d6 | 2019-11-08 12:05:11 +0700 | [diff] [blame] | 39 | config TIPC_CRYPTO |
| 40 | bool "TIPC encryption support" |
| 41 | depends on TIPC |
| 42 | select CRYPTO |
| 43 | select CRYPTO_AES |
| 44 | select CRYPTO_GCM |
| 45 | help |
| 46 | Saying Y here will enable support for TIPC encryption. |
| 47 | All TIPC messages will be encrypted/decrypted by using the currently most |
| 48 | advanced algorithm: AEAD AES-GCM (like IPSec or TLS) before leaving/ |
| 49 | entering the TIPC stack. |
| 50 | Key setting from user-space is performed via netlink by a user program |
| 51 | (e.g. the iproute2 'tipc' tool). |
| 52 | bool |
| 53 | default y |
GhantaKrishnamurthy MohanKrishna | c30b70d | 2018-03-21 14:37:44 +0100 | [diff] [blame] | 54 | |
| 55 | config TIPC_DIAG |
| 56 | tristate "TIPC: socket monitoring interface" |
| 57 | depends on TIPC |
| 58 | default y |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 59 | help |
GhantaKrishnamurthy MohanKrishna | c30b70d | 2018-03-21 14:37:44 +0100 | [diff] [blame] | 60 | Support for TIPC socket monitoring interface used by ss tool. |
| 61 | If unsure, say Y. |