Kconfig 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. config NFSD
  2. tristate "NFS server support"
  3. depends on INET
  4. depends on FILE_LOCKING
  5. depends on BKL # fix as soon as lockd is done
  6. select LOCKD
  7. select SUNRPC
  8. select EXPORTFS
  9. select NFS_ACL_SUPPORT if NFSD_V2_ACL
  10. help
  11. Choose Y here if you want to allow other computers to access
  12. files residing on this system using Sun's Network File System
  13. protocol. To compile the NFS server support as a module,
  14. choose M here: the module will be called nfsd.
  15. You may choose to use a user-space NFS server instead, in which
  16. case you can choose N here.
  17. To export local file systems using NFS, you also need to install
  18. user space programs which can be found in the Linux nfs-utils
  19. package, available from http://linux-nfs.org/. More detail about
  20. the Linux NFS server implementation is available via the
  21. exports(5) man page.
  22. Below you can choose which versions of the NFS protocol are
  23. available to clients mounting the NFS server on this system.
  24. Support for NFS version 2 (RFC 1094) is always available when
  25. CONFIG_NFSD is selected.
  26. If unsure, say N.
  27. config NFSD_V2_ACL
  28. bool
  29. depends on NFSD
  30. config NFSD_V3
  31. bool "NFS server support for NFS version 3"
  32. depends on NFSD
  33. help
  34. This option enables support in your system's NFS server for
  35. version 3 of the NFS protocol (RFC 1813).
  36. If unsure, say Y.
  37. config NFSD_V3_ACL
  38. bool "NFS server support for the NFSv3 ACL protocol extension"
  39. depends on NFSD_V3
  40. select NFSD_V2_ACL
  41. help
  42. Solaris NFS servers support an auxiliary NFSv3 ACL protocol that
  43. never became an official part of the NFS version 3 protocol.
  44. This protocol extension allows applications on NFS clients to
  45. manipulate POSIX Access Control Lists on files residing on NFS
  46. servers. NFS servers enforce POSIX ACLs on local files whether
  47. this protocol is available or not.
  48. This option enables support in your system's NFS server for the
  49. NFSv3 ACL protocol extension allowing NFS clients to manipulate
  50. POSIX ACLs on files exported by your system's NFS server. NFS
  51. clients which support the Solaris NFSv3 ACL protocol can then
  52. access and modify ACLs on your NFS server.
  53. To store ACLs on your NFS server, you also need to enable ACL-
  54. related CONFIG options for your local file systems of choice.
  55. If unsure, say N.
  56. config NFSD_V4
  57. bool "NFS server support for NFS version 4 (EXPERIMENTAL)"
  58. depends on NFSD && PROC_FS && EXPERIMENTAL
  59. select NFSD_V3
  60. select FS_POSIX_ACL
  61. select SUNRPC_GSS
  62. help
  63. This option enables support in your system's NFS server for
  64. version 4 of the NFS protocol (RFC 3530).
  65. To export files using NFSv4, you need to install additional user
  66. space programs which can be found in the Linux nfs-utils package,
  67. available from http://linux-nfs.org/.
  68. If unsure, say N.