Advertisement
ffilz

Ceph EXPORT config

Oct 3rd, 2023
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. EXPORT
  2. {
  3. # Export Id (mandatory, each EXPORT must have a unique Export_Id)
  4. Export_Id = 901;
  5.  
  6. # Exported path (mandatory)
  7. Path = "/";
  8.  
  9. # Pseudo Path (required for NFS v4)
  10. Pseudo = "/export/ceph";
  11.  
  12. # Required for access (default is None)
  13. # Could use CLIENT blocks instead
  14. Access_Type = RW;
  15.  
  16. SecType = "sys";
  17.  
  18. Protocols = 3,4;
  19.  
  20. MaxRead = 9000000;
  21. MaxWrite = 9000000;
  22.  
  23. Squash = No_Root_Squash;
  24.  
  25. # Exporting FSAL
  26. FSAL {
  27. Name = CEPH;
  28. cmount_path = "/";
  29. }
  30. }
  31.  
  32. #EXPORT
  33. #{
  34. # # Export Id (mandatory, each EXPORT must have a unique Export_Id)
  35. # Export_Id = 902;
  36. #
  37. # # Exported path (mandatory)
  38. # Path = "/one";
  39. #
  40. # # Pseudo Path (required for NFS v4)
  41. # Pseudo = "/export/ceph/one";
  42. #
  43. # # Required for access (default is None)
  44. # # Could use CLIENT blocks instead
  45. # Access_Type = RW;
  46. #
  47. # SecType = "sys";
  48. #
  49. # Protocols = 3,4;
  50. #
  51. # MaxRead = 9000000;
  52. # MaxWrite = 9000000;
  53. #
  54. # Squash = No_Root_Squash;
  55. #
  56. # # Exporting FSAL
  57. # FSAL {
  58. # Name = CEPH;
  59. # cmount_path = "/";
  60. # }
  61. #}
  62. #
  63. #EXPORT
  64. #{
  65. # # Export Id (mandatory, each EXPORT must have a unique Export_Id)
  66. # Export_Id = 903;
  67. #
  68. # # Exported path (mandatory)
  69. # Path = "/two";
  70. #
  71. # # Pseudo Path (required for NFS v4)
  72. # Pseudo = "/export/ceph/two";
  73. #
  74. # # Required for access (default is None)
  75. # # Could use CLIENT blocks instead
  76. # Access_Type = RW;
  77. #
  78. # SecType = "sys";
  79. #
  80. # Protocols = 3,4;
  81. #
  82. # MaxRead = 9000000;
  83. # MaxWrite = 9000000;
  84. #
  85. # Squash = No_Root_Squash;
  86. #
  87. # # Exporting FSAL
  88. # FSAL {
  89. # Name = CEPH;
  90. # cmount_path = "/";
  91. # }
  92. #}
  93.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement