~ TJM
/smb.conf
Samba config file. Remedies error of NT_STATUS_ACCESS_DENIED (Google for info on this error). I am behind a router that provides firewall security for my LAN.
## /etc/samba/smb.conf ###
[global]
netbios name = SEA160
workgroup = MSHOME
security = share
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=8192 SO_SNDBUF=8192
local master = no
domain master = no
wins server = 192.168.1.102, 192.168.1.101
wins support = no
hosts allow = 192.0.0.0/8, 127.
interfaces = 192.168.1.103
bind interfaces only = yes
log file = /var/log/samba-log
max log size = 1000
syslog = 0
dns proxy = no
[share]
path = /data/share
force directory mode = 0777
force create mode = 0777
force user = nobody
force group = nobody
public = yes
writeable = yes
read only = no
## eof ###