xref: /linux/net/tipc/Kconfig (revision 4ce06406958b67fdddcc2e6948237dd6ff6ba112)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# TIPC configuration
4#
5
6menuconfig TIPC
7	tristate "The TIPC Protocol"
8	depends on INET
9	help
10	  The Transparent Inter Process Communication (TIPC) protocol is
11	  specially designed for intra cluster communication. This protocol
12	  originates from Ericsson where it has been used in carrier grade
13	  cluster applications for many years.
14
15	  For more information about TIPC, see http://tipc.sourceforge.net.
16
17	  This protocol support is also available as a module ( = code which
18	  can be inserted in and removed from the running kernel whenever you
19	  want). The module will be called tipc. If you want to compile it
20	  as a module, say M here and read <file:Documentation/kbuild/modules.rst>.
21
22	  If in doubt, say N.
23
24config TIPC_MEDIA_IB
25	bool "InfiniBand media type support"
26	depends on TIPC && INFINIBAND_IPOIB
27	help
28	  Saying Y here will enable support for running TIPC on
29	  IP-over-InfiniBand devices.
30config TIPC_MEDIA_UDP
31	bool "IP/UDP media type support"
32	depends on TIPC
33	select NET_UDP_TUNNEL
34	default y
35	help
36	  Saying Y here will enable support for running TIPC over IP/UDP
37
38config TIPC_CRYPTO
39	bool "TIPC encryption support"
40	depends on TIPC
41	select CRYPTO
42	select CRYPTO_AES
43	select CRYPTO_GCM
44	default y
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
53config TIPC_DIAG
54	tristate "TIPC: socket monitoring interface"
55	depends on TIPC
56	default y
57	help
58	Support for TIPC socket monitoring interface used by ss tool.
59	If unsure, say Y.
60