Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. config SUNRPC
  2. tristate
  3. config SUNRPC_GSS
  4. tristate
  5. config SUNRPC_XPRT_RDMA
  6. tristate
  7. depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS && EXPERIMENTAL
  8. default SUNRPC && INFINIBAND
  9. help
  10. This option allows the NFS client and server to support
  11. an RDMA-enabled transport.
  12. To compile RPC client RDMA transport support as a module,
  13. choose M here: the module will be called xprtrdma.
  14. If unsure, say N.
  15. config RPCSEC_GSS_KRB5
  16. tristate
  17. depends on SUNRPC && CRYPTO
  18. prompt "Secure RPC: Kerberos V mechanism" if !(NFS_V4 || NFSD_V4)
  19. default y
  20. select SUNRPC_GSS
  21. select CRYPTO_MD5
  22. select CRYPTO_DES
  23. select CRYPTO_CBC
  24. help
  25. Choose Y here to enable Secure RPC using the Kerberos version 5
  26. GSS-API mechanism (RFC 1964).
  27. Secure RPC calls with Kerberos require an auxiliary user-space
  28. daemon which may be found in the Linux nfs-utils package
  29. available from http://linux-nfs.org/. In addition, user-space
  30. Kerberos support should be installed.
  31. If unsure, say Y.
  32. config RPCSEC_GSS_SPKM3
  33. tristate "Secure RPC: SPKM3 mechanism (EXPERIMENTAL)"
  34. depends on SUNRPC && EXPERIMENTAL
  35. select SUNRPC_GSS
  36. select CRYPTO
  37. select CRYPTO_MD5
  38. select CRYPTO_DES
  39. select CRYPTO_CAST5
  40. select CRYPTO_CBC
  41. help
  42. Choose Y here to enable Secure RPC using the SPKM3 public key
  43. GSS-API mechanism (RFC 2025).
  44. Secure RPC calls with SPKM3 require an auxiliary userspace
  45. daemon which may be found in the Linux nfs-utils package
  46. available from http://linux-nfs.org/.
  47. If unsure, say N.