Hi again. Two samba questions in one day :)
Using Samba client/server 4.1.6-3.18.1 x86_64
This one concerns my connecting from a windows 8.1 machine to my shared folder on the openSUSE machine. Though I have no problem with the connection, I get this error in the log.smbd file|:
"check_ntlm_password: Authentication for user [sparkz_alot@msn.com] -> [sparkz_alot@msn.com] FAILED with error NT_STATUS_NO_SUCH_USER"
Since you can't create a user with the "@" symbol, how have you you folks solved this situation?
Here is my conf file should you need it:
btw, right now it just defaults me to "nobody", which is rather insulting :)
Thanks
Using Samba client/server 4.1.6-3.18.1 x86_64
This one concerns my connecting from a windows 8.1 machine to my shared folder on the openSUSE machine. Though I have no problem with the connection, I get this error in the log.smbd file|:
"check_ntlm_password: Authentication for user [sparkz_alot@msn.com] -> [sparkz_alot@msn.com] FAILED with error NT_STATUS_NO_SUCH_USER"
Since you can't create a user with the "@" symbol, how have you you folks solved this situation?
Here is my conf file should you need it:
Code:
# smb.conf is the main Samba configuration file. You find a full commented
# version at /usr/share/doc/packages/samba/examples/smb.conf.SUSE if the
# samba-doc package is installed.
[global]
max log size = 50
log level = 3
map to guest = Bad User
public = Yes
write raw = no
local master = Yes
read raw = no
debug timestamp = Yes
debug level = 2
security = user
logfile = /var/log/samba/%m.log
workgroup = LOCAL
passdb backend = tdbsam
name resolve order = bcast hosts lmhosts wins
os level = 65
server string = Samba Server
netbios name = lenovo
#[homes]
# comment = Home Directories
# valid users = %S, %D%w%S
# browseable = No
# read only = No
# inherit acls = Yes
# guest ok = Yes
## Share disabled by YaST
# [profiles]
# comment = Network Profiles Service
# path = %H
# read only = No
# store dos attributes = Yes
# create mask = 0600
# directory mask = 0700
#[users]
# comment = All users
# path = /home
# read only = No
# inherit acls = Yes
# veto files = /aquota.user/groups/shares/
# guest ok = Yes
## Share disabled by YaST
# [groups]
# comment = All groups
# path = /home/groups
# read only = No
# inherit acls = Yes
## Share disabled by YaST
# [printers]
# comment = All Printers
; path = /var/tmp
; printable = Yes
; create mask = 0600
; browseable = No
## Share disabled by YaST
# [print$]
# comment = Printer Drivers
# path = /var/lib/samba/drivers
# write list = @ntadmin root
# force group = ntadmin
# create mask = 0664
# directory mask = 0775
[shared]
comment = shared folder
path = /export
read only = No
guest OK = Yes
Thanks