Displaying 4 results from an estimated 4 matches for "shareus".
Did you mean:
shares
2006 Feb 03
4
Unable to mount SMB drive
I have a Windows Server 2003 system I'm trying to back up to a Linux host.
when I access the share with smbclient, I can "see" the files (`ls` returns a
list of files, etc)
smbclient -U shareuser //server/sharename password
But, when I try to actually mount the drive, I get "permission denied" errors
trying to access the drive. (EG: using `df`) Running the following command
takes about 10 seconds:
smbmount //server/sharename /mnt/servername -o \
credentials=/path/to/creden...
2019 May 02
2
username map with “security = ads”
Not tested, just brain farts ;-)
Setup a member, Allow guest access. ( in global : guest ok = yes )
This allow local users to access the server ( not shares )
On the shares
Deny "domain users" and/or authenticated users.
Allow the local group for local users.
Not tested but technicaly is could work.
Which is almost the same as a standalone with and without user authentication.
2019 May 02
0
username map with “security = ads”
...ers to access the server ( not shares )
>
> On the shares
> Deny "domain users" and/or authenticated users.
> Allow the local group for local users.
Not sure if I follow. Is this what you imagined:
[global]
guest ok = yes
…
[someshare]
valid users = @shareusers
…
? I’m not seeing any config option to reject access by all domain
users.
> Not tested but technicaly is could work.
> Which is almost the same as a standalone with and without user authentication.
We’re testing the split config setup right now, let’s see how
this works out.
Tha...
2012 Mar 26
0
DenyMode on read only shares
...ly = Yes
oplocks = No
level2 oplocks = No
share modes = No
locking = No
path = /path/
guest ok = Yes
force user = sambauser
force group = users
hosts deny = 0.0.0.0/0, ALL
hosts allow = 192.168.1.0/27, 192.168.1.32/27, 127.0.0.0/8
[share-rw]
read only = No
path = /path/
guest ok = No
valid users = shareuser
force user = sambauser
force group = users
hosts deny = 0.0.0.0/0, ALL
hosts allow = 192.168.1.0/27, 192.168.1.32/27, 127.0.0.0/8
Thanks.