Issues accessing samba share
I am currently working on setting up a samba share. I am going to be sharing a raid array mounted at /storage, but I saw someone saying that they had an issues sharing a directory that is not on the boot volume so I am working with a /testsmb directory I made. The permissions are set 0755. I cannot connect to the samba share. The following is my smb.conf ... Any ideas?
[global]
workgroup = WORKGROUP
security = user
interfaces = lo, enp2s0, 192.168.2.101/24
bind interfaces only = yes
hosts allow = 127.0.0.1, 192.168.2.1, 192.168.254.100
passdb backend = tdbsam
printing = cups
printcap name = cups
load printers = yes
cups options = raw
[homes]
comment = Home Directories
valid users = %S, %D%w%S
browseable = No
read only = No
inherit acls = Yes
[printers]
comment = All Printers
path = /var/tmp
printable = Yes
create mask = 0600
browseable = No
[print$]
comment = Printer Drivers
path = /var/lib/samba/drivers
write list = root
create mask = 0664
directory mask = 0775
[storage]
comment = Storage.Subdomain.Domain.tld
path = /testsmb
valid users = matthew
browsable = yes
read only = no
create mask = 0755
Perfect, thank you!