Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. config SUNRPC
  2. tristate
  3. config SUNRPC_GSS
  4. tristate
  5. config SUNRPC_BACKCHANNEL
  6. bool
  7. depends on SUNRPC
  8. config SUNRPC_XPRT_RDMA
  9. tristate
  10. depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS && EXPERIMENTAL
  11. default SUNRPC && INFINIBAND
  12. help
  13. This option allows the NFS client and server to support
  14. an RDMA-enabled transport.
  15. To compile RPC client RDMA transport support as a module,
  16. choose M here: the module will be called xprtrdma.
  17. If unsure, say N.
  18. config RPCSEC_GSS_KRB5
  19. tristate "Secure RPC: Kerberos V mechanism"
  20. depends on SUNRPC && CRYPTO
  21. depends on CRYPTO_MD5 && CRYPTO_DES && CRYPTO_CBC && CRYPTO_CTS
  22. depends on CRYPTO_ECB && CRYPTO_HMAC && CRYPTO_SHA1 && CRYPTO_AES
  23. depends on CRYPTO_ARC4
  24. default y
  25. select SUNRPC_GSS
  26. help
  27. Choose Y here to enable Secure RPC using the Kerberos version 5
  28. GSS-API mechanism (RFC 1964).
  29. Secure RPC calls with Kerberos require an auxiliary user-space
  30. daemon which may be found in the Linux nfs-utils package
  31. available from http://linux-nfs.org/. In addition, user-space
  32. Kerberos support should be installed.
  33. If unsure, say Y.