When I send a SMB2 NEGOTIATE request packet the samba server does not send a response. Tested with Version 3.6.0pre1-GIT-1007dd3-test
What are you using to generate the packet ? Can you attach a packet trace and debug level 10 please ? Jeremy.
Ok, I just tested with a Windows7 client, and the current git v3-6-test code certainly does respond directly to a SMB2 Negprot request as the first packet on a new TCP connection. The only way this might not happen is if you have "security = share" set in your smb.conf. Is this the case ? Jeremy.
Ping - can you let me know if you're using "security = share" please ? Jeremy.
Sorry for the delay responsing, I've been busy moving. I am using the "security = share". Not sure why this should happen with that setting, can you explain? thanks, Mike PS - Do you still want me to post a packet trace and debug log? If so it might be a few more days but I will (eventually) get to it. :)
Ok, that makes sense. I've pushed a fix for this to master and v3-6-test. Perviously if "security = share" we disabled SMB2 support internally, and would quit if we receive an SMB2 packet (just like we would if we received any non-SMB packet). Now we will map "security = share" to the two parameters "security = user" and "map to guest = bad user" internally. Please test out the fixed code and close out this bug if it works for you. Jeremy.
It's working now, thanks!