3
0
I have a samba share in an arch linux server, that I cannot access from OSX, but I can access it normally from any Windows machine. When I try to access it from the terminal (from OSX) with the anonymous user it returns an authentication error:
$ smbutil view -a //192.168.1.154/data
smbutil: server rejected the authentication: Authentication error
When I try to access it with guest access I get:
$ smbutil view -g //192.168.1.154/data
smbutil: server connection failed: Invalid argument
Here is my smb.conf:
[global]
workgroup = WORKGROUP
server string = Shares
security = user
map to guest = Bad User
logfile = /var/log/samba/%m.log
max log size = 50
dns proxy = no
[data]
path = /mnt/data
guest ok = yes
read only = no
browsable = yes
force user = nobody
force group = nobody
create mask = 0755
directory mask = 0755
Anything in the smb log on the Linux box? – D Schlachter – 2016-04-26T16:53:50.593
Not really. In fact, there is no evidence of me trying to access it. – svart – 2016-04-26T17:15:05.927
is this related? http://serverfault.com/questions/773370/ubuntu-anonymous-samba-share-now-not-accessible-from-osx-machine
– daigorocub – 2016-05-03T12:58:10.330