Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

[Samba] NT_STATUS_ACCESS_DENIED

Status
Not open for further replies.

bblackmoor

Programmer
Apr 5, 2007
2
I am new to Samba, but not to Linux. I hope someone here can point me in the right direction.

I have installed Samba and it appears to be working, at least as far as I have tested it. However, I have hit a snag in my testing. I have searched Google for several hours but I have not found a solution.

On the Linux machine, named "annwn", I have set up a share, using the least restrictive "share" type permissions (this is only for testing: once I get things working, I will lock things down more). The directory to be shared is /var/media:

drwxrwxr-x 5 root media 4096 Apr 5 11:22 media

I have created a user called "smbguest", and added this user to the "media" group. I have then set "smbguest" as the guest user, and created a "media" share for the /var/media directory:


[global]
workgroup = MORTSHIRE
server string = Samba Server
security = SHARE
guest account = smbguest
log file = /var/log/samba/%m.log
max log size = 50
dns proxy = No
wins support = Yes
guest ok = Yes
hosts allow = 192.168.1., 127.0.0.1
cups options = raw

[media]
comment = media on annwn.mortshire
path = /var/media
writeable = yes
browseable = yes
guest ok = yes


testparm says that the smb.conf file is valid. Then I restarted samba. But when I test this share by running (on annwn, as root) smbclient, the share connects, but will not permit a "dir" command. It returns the error NT_STATUS_ACCESS_DENIED.


[root@annwn samba]# smbclient //annwn/media
Password:
Domain=[MORTSHIRE] OS=[Unix] Server=[Samba 3.0.23c-2]
Server not using user level security and no password supplied.
smb: \> dir
NT_STATUS_ACCESS_DENIED listing \*

57237 blocks of size 4194304. 4158 blocks available


I have gone so far as to chmod both /var and /var/media to 777, and chown'ed them both to smbguest:smbguest, to see if that would make a difference. It didn't. I still get NT_STATUS_ACCESS_DENIED.

I am stumped. Does anyone have a clue they'd be willing to share?

--
bblackmoor@blackgate.net
2007-04-05
 
In the [media] section you may add this:
force user = smbguest

and then:
smbclient //annwn/me -N

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Okay, I have tried that. It made no difference.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top