1

У меня Samba работает на сервере Linux, и я получаю доступ к файлам с клиента Mac. У меня нет проблем с доступом к файлам через Samba, за исключением того, что на Mac все файлы отображаются с установленным разрешением исполняемого файла: rwx------ . На сервере файлы не являются исполняемыми: rw-rw---- .

Установлены ли разрешения, отображаемые клиентом, на сервере или на клиенте? Как я могу либо:

  1. заставить все файлы rw------- на клиенте, или
  2. передать разрешения от сервера до клиента?

1 ответ1

3

Разрешения установлены на сервере и на 100% зависят от ACL.

У вас есть два варианта, чтобы попытаться решить вашу проблему.

Первый вариант (который может лучше соответствовать вашим потребностям): попробуйте сопоставить / сопоставить списки ACL для Windows и Unix.

Отредактируйте файл smb.conf сервера SMB и добавьте эти параметры в раздел [global] :

[global]
nt acl support = yes
acl map full control = no

Два вышеуказанных параметра приведут к тому, что SMB-сервер попытается сопоставить / сопоставить списки ACL для Windows и Unix.

Из справочной страницы smb.conf :

Поддержка NT ACL (S)

       This boolean parameter controls whether smbd(8) will attempt to map
       UNIX permissions into Windows NT access control lists. The UNIX
       permissions considered are the traditional UNIX owner and group
       permissions, as well as POSIX ACLs set on any files or directories.

ACL карта полный контроль (S)

       This boolean parameter controls whether smbd(8) maps a POSIX ACE
       entry of "rwx" (read/write/execute), the maximum allowed POSIX
       permission set, into a Windows ACL of "FULL CONTROL". If this
       parameter is set to true any POSIX ACE entry of "rwx" will be
       returned in a Windows ACL as "FULL CONTROL", is this parameter is
       set to false any POSIX ACE entry of "rwx" will be returned as the
       specific Windows ACL bits representing read, write and execute.

2-й вариант (обходной путь): установите конкретные списки ACL для каждого из ваших общих ресурсов.

В двух словах, параметры RWX (чтение, запись и выполнение) определяются этими эквивалентными параметрами SMB:

  • writeable = no эквивалентно R (только для чтения)
  • writeable = yes эквивалентно RW (чтение и запись)
  • acl allow execute always = true или acl allow execute always = yes эквивалентно X (выполнить)

Чтобы установить права доступа к файлам / папкам для всех ваших общих ресурсов, необходимо отредактировать файл smb.conf на сервере, а затем добавить этот глобальный параметр:

[global]
acl allow execute always = false
guest ok = no
writeable = yes
available = yes
browseable = yes
printable = no
locking = yes

... который по умолчанию заставит все ваши общие папки запретить выполнение файлов (acl allow execute always = false), запретить гостевой доступ (guest ok = no), разрешить чтение и редактирование /(пере) запись доступа к файлам и папкам (доступно для writeable = yes), сделайте все свои общие ресурсы доступными для использования удаленными (клиентскими) пользователями (available = yes) и сделайте доступные общие ресурсы видимыми (просматриваемые browseable = yes), запретите использование своих общих ресурсов в качестве каталога спулинга для печати (printable = no) и принудительно заблокируйте ваши общие ресурсы, если клиент отправит такой запрос на сервер SMB (locking = yes).

Из справочной страницы smb.conf :

ACL позволяют всегда выполнять (S)

       This boolean parameter controls the behaviour of smbd(8) when
       receiving a protocol request of "open for execution" from a Windows
       client. With Samba 3.6 and older, the execution right in the ACL
       was not checked, so a client could execute a file even if it did
       not have execute rights on the file. In Samba 4.0, this has been
       fixed, so that by default, i.e. when this parameter is set to
       "False", "open for execution" is now denied when execution
       permissions are not present.

       If this parameter is set to "True", Samba does not check execute
       permissions on "open for execution", thus re-establishing the
       behaviour of Samba 3.6. This can be useful to smoothen upgrades
       from older Samba versions to 4.0 and newer. This setting is not
       meant to be used as a permanent setting, but as a temporary relief:
       It is recommended to fix the permissions in the ACLs and reset this
       parameter to the default after a certain transition period.

Примечание: если acl allow execute always = false не работает, попробуйте acl allow execute always = no .

Гость хорошо (S)

       If this parameter is yes for a service, then no password is
       required to connect to the service. Privileges will be those of the
       guest account.

       This parameter nullifies the benefits of setting restrict anonymous
       = 2

       See the section below on security for more information about this
       option.

записываемый (S)

       Inverted synonym for read only.

только для чтения (S)

       An inverted synonym is writeable.

       If this parameter is yes, then users of a service may not create or
       modify files in the service's directory.

       Note that a printable service (printable = yes) will ALWAYS allow
       writing to the directory (user privileges permitting), but only via
       spooling operations.

доступно (S)

       This parameter lets you "turn off" a service. If available = no,
       then ALL attempts to connect to the service will fail. Such
       failures are logged.

просматриваемый (S)

       This controls whether this share is seen in the list of available
       shares in a net view and in the browse list.

для печати (S)

       If this parameter is yes, then clients may open, write to and
       submit spool files on the directory specified for the service.

       Note that a printable service will ALWAYS allow writing to the
       service path (user privileges permitting) via the spooling of print
       data. The read only parameter controls only non-printing access to
       the resource.

блокировка (S)

       This controls whether or not locking will be performed by the
       server in response to lock requests from the client.

       If locking = no, all lock and unlock requests will appear to
       succeed and all lock queries will report that the file in question
       is available for locking.

       If locking = yes, real locking will be performed by the server.

       This option may be useful for read-only filesystems which may not
       need locking (such as CDROM drives), although setting this
       parameter of no is not really recommended even in this case.

       Be careful about disabling locking either globally or in a specific
       service, as lack of locking may result in data corruption. You
       should never need to set this parameter.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .