I'm trying to set up a simple file share.
I do smbtree and it returns nothing. smbtree -d3 returns:
Code:
lp_load_ex: refreshing parameters
Initialising global parameters
rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)
params.c:pm_process() - Processing configuration file "/etc/samba/smb.conf"
Processing section "[global]"
interpret_interface: Adding interface 192.168.0.1/255.255.255.0
added interface 192.168.0.1/255 ip=192.168.0.1 bcast=192.168.0.255 netmask=255.255.255.0
Enter root's password:
Connecting to 192.168.0.100 at port 445
Doing spnego session setup (blob length=74)
got OID=1.3.6.1.4.1.311.2.2.10
got principal=not_defined_in_RFC4178@please_ignore
Got challenge flags:
Got NTLMSSP neg_flags=0x608a8215
NTLMSSP: Set final flags:
Got NTLMSSP neg_flags=0x60088215
NTLMSSP Sign/Seal - Initialising with flags:
Got NTLMSSP neg_flags=0x60088215
SPNEGO login failed: Logon failure
Connecting to 192.168.0.100 at port 445
Doing spnego session setup (blob length=74)
got OID=1.3.6.1.4.1.311.2.2.10
got principal=not_defined_in_RFC4178@please_ignore
Got challenge flags:
Got NTLMSSP neg_flags=0x608a8215
NTLMSSP: Set final flags:
Got NTLMSSP neg_flags=0x60088215
NTLMSSP Sign/Seal - Initialising with flags:
Got NTLMSSP neg_flags=0x60088215
SPNEGO login failed: Logon failure
smbstatus shows no shares.
testparm -s returns:
Code:
Load smb config files from /etc/samba/smb.conf
rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)
Processing section "[misc]"
Loaded services file OK.
Server role: ROLE_STANDALONE
[global]
workgroup = WORKGROUP
server string = blah
interfaces = 192.168.0.1/255.255.255.0
smb passwd file = /etc/samba/passwd_smb
name resolve order = hosts, lmhosts, bcast
winbind use default domain = Yes
idmap config * : backend = tdb
valid users = me, you
guest ok = Yes
[misc]
comment = blah
path = /home/misc
What's "idmap config * : backend = tdb"? Is that some new implementation in samba version 4? I've only used 2 and 3. Googleing it seems to have something to do with winbind, but I'm still fuzzy on what it's doing exactly.
The main issue here is that I do not have access to my files on my windows computer. net view <linux smb server> returns:
Code:
System error 53 has occurred.
The network path was not found.
I can ping both PCs from the other with IP address and netbios name.
How do I get access to my file share?
Thanks.