Como indicado em @Robert Riedl comentário o página man do smbtree deixe claro que a opção -N
--no-pass
suprimirá a solicitação de senha normal.
As possibilidades que vêm à mente e as soluções são as seguintes.
1) É possível que um alias tenha sido definido para smbtree
. Você pode verificar isso com o comando alias | grep smbtree
e, se obtiver uma saída semelhante a alias smbtree='smbtree -N'
ou alias smbtree='smbtree --nopass'
, poderá remover o alias com o comando unalias smbtree
2) Você descobriu um bug e deve denunciá-lo. que pode ser esmagado pelos desenvolvedores.
3) A única outra maneira que eu sei que isso pode ocorrer é se você designar uma seção como um Guest Service em smb.conf usando a linha guest ok = yes
na configuração de compartilhamento. Veja este trecho da página man relacionada
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.
Default: guest ok = no
A solução para isso é remover o guest ok = yes
da configuração de compartilhamento para que ele volte ao padrão.
Se, como você supõe, isso está relacionado à atribuição do grupo:
Se o parâmetro forçar o usuário também for definido, o grupo especificado no grupo forçar substituirá o grupo principal que estiver em vigor.
force group (S)
This specifies a UNIX group name that will be assigned as the default >primary group for all users connecting to this service.
This is useful for sharing files by ensuring that all access to files on >service will use the named group for their permissions checking. Thus, by >assigning permissions for this group to the files and directories within >this service the Samba administrator can restrict or allow sharing of these files.
In Samba 2.0.5 and above this parameter has extended functionality in the following way. If the group name listed here has a '+' character prepended to it then the current user accessing the share only has the primary group default assigned to this group if they are already assigned as a member of that group. This allows an administrator to decide that only users who are already in a particular group will create files with group ownership set to that group. This gives a finer granularity of ownership assignment. For example, the setting force group = +sys means that only users who are already in group sys will have their default primary group assigned to sys when accessing this Samba share. All other users will retain their ordinary primary group.
Default: force group =
Example: force group = agroup
Para aprofundar tudo sobre samba, visite aqui.
Fontes: