I have 3 samba shares on my POGO and are trying to restrict 2 of them with passwords. Right now there all wide open and anyone can access. Through googling i added "Jamie" to the smbpasswd and enabled "USER" security and added that user to the allowed users for that share and when i access it from Win7 i enter the username and password in normal format as well as "pogo\Jamie" as if i enter the "Jamie" it says it logging onto my computer instead of the POGO. Heres my smb.conf;
basically i want to protect the DATA share with a password as it contains sensitive data.
[global]
dns proxy = no
log file = /var/log/samba/%m.log
load printers = no
netbios name = POGO
printing = bsd
server string = POGO
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE SO_RCVBUF=131072 SO_SNDBUF=131072 SO_KEEPALIVE
workgroup = WORKGROUP
os level = 20
disable spools = yes
printcap name = /dev/null
security = user
map to guest = Bad User
max log size = 50
[External Drive]
path = /media/External
read only = no
public = yes
writable = yes
force user = root
[Data]
path = /media/Data
valid users = Jamie
read only = no
public = no
writable = yes
force user = root
[/code]