Encountered an interesting one during our pre-release testing: SMB2 to some of our server shares doesn't work properly. Mounted a known working share on 10.8 and it works there. Try the same thing again on 10.9 and it can't navigate or see folders down from the root folder.
However if you force 10.9 to mount the drive by using cifs://server.address/ which gets 10.9 to mount the share as SMB1 it works!
The only way round this that i've found is the following code:
# Create nsmb.conf file temporarily and tell it to force SMB1 use.
echo "[default]" >> ~/Library/Preferences/nsmb.conf
echo "smb_neg=smb1_only" >> ~/Library/Preferences/nsmb.conf
The catch is i've only made this work on a per user basis, rather than over the entire computer. Hopefully this will help anyone else having issues.
