Advertisement
ffilz

basic21.conf

Jan 9th, 2017
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. [root@localhost src]# cat /etc/ganesha/basic21.conf
  2. ###################################################
  3. #
  4. # Cache Inode paramters
  5. #
  6. ###################################################
  7.  
  8. CacheInode
  9. {
  10. # Entries_HWMark = 50;
  11. Dir_max = 1;
  12. }
  13.  
  14. ###################################################
  15. #
  16. # NFSv4 Specific configuration stuff
  17. #
  18. ###################################################
  19. NFSv4
  20. {
  21. # Lifetime for NFSv4 Leases
  22. Lease_Lifetime = 20;
  23.  
  24. Graceless = true;
  25. }
  26.  
  27. ###################################################
  28. #
  29. # Kerberos parameters for use with RPCSEC_GSS
  30. #
  31. ###################################################
  32. NFS_KRB5
  33. {
  34. # Principal to be used
  35. PrincipalName = nfs ;
  36.  
  37. # Keytab Path
  38. KeytabPath = /etc/krb5.keytab ;
  39.  
  40. # TRUE = krb5 support enabled
  41. Active_krb5 = TRUE ;
  42.  
  43. }
  44.  
  45. CEPH {
  46. #nothing
  47. ceph_conf = "/home/ffilz/ganesha/ceph/build/ceph.conf";
  48. }
  49.  
  50. EXPORT
  51. {
  52. # Export Id (mandatory, each EXPORT must have a unique Export_Id)
  53. Export_Id = 901;
  54.  
  55. # Exported path (mandatory)
  56. Path = "/ceph";
  57.  
  58. # Pseudo Path (required for NFS v4)
  59. Pseudo = "/export/ceph";
  60.  
  61. # Required for access (default is None)
  62. # Could use CLIENT blocks instead
  63. Access_Type = RW;
  64.  
  65. SecType = "sys";
  66.  
  67. Protocols = 3,4;
  68.  
  69. MaxRead = 9000000;
  70. MaxWrite = 9000000;
  71.  
  72. Squash = No_Root_Squash;
  73.  
  74. # Exporting FSAL
  75. FSAL {
  76. Name = CEPH;
  77. }
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement