Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 "Secure RPC: Kerberos V mechanism"
  17. depends on SUNRPC && CRYPTO
  18. depends on CRYPTO_MD5 && CRYPTO_DES && CRYPTO_CBC && CRYPTO_CTS
  19. depends on CRYPTO_ECB && CRYPTO_HMAC && CRYPTO_SHA1 && CRYPTO_AES
  20. depends on CRYPTO_ARC4
  21. default y
  22. select SUNRPC_GSS
  23. help
  24. Choose Y here to enable Secure RPC using the Kerberos version 5
  25. GSS-API mechanism (RFC 1964).
  26. Secure RPC calls with Kerberos require an auxiliary user-space
  27. daemon which may be found in the Linux nfs-utils package
  28. available from http://linux-nfs.org/. In addition, user-space
  29. Kerberos support should be installed.
  30. If unsure, say Y.