Viktor Jaep
Part of the Furniture
Here's solid proof that the RT-AC86U does SMB v2.1...Can you, please, post the output of# mount
?
My shows that the share is mounted using SMB v2.0; whereas trying to mount using SMB v2.1 throws an "Invalid argument error".
Bash:ladmin@GT-AC2900-1:/tmp/home/root# mount -t cifs -o "vers=2.0,username=******,password=******" "\\\\192.168.0.2\\backups (at Files)" /tmp/mnt/backups ladmin@GT-AC2900-1:/tmp/home/root# mount | grep /tmp/mnt tmpfs on /tmp/mnt type tmpfs (rw,noexec,relatime,size=16k) tmpfs on /tmp/mnt type tmpfs (rw,noexec,relatime,size=16k) /dev/sda1 on /tmp/mnt/Storage type ext4 (rw,nodev,relatime,data=ordered) \\192.168.0.2\backups (at Files) on /tmp/mnt/backups type cifs (rw,relatime,vers=2.0,sec=ntlmssp,cache=strict,username=ladmin,domain=GT-AC2900-2,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.0.2,file_mode=0755,dir_mode=0755,nounix,serverino,mapposix,rsize=65536,wsize=65536,actimeo=1)
Code:
ViktorJp@RT-AC86U-BE10:/tmp/home/root# mount -t cifs \\\\192.168.86.9\\Backups /tmp/mnt/jangofett -o "vers=2.1,username=*****,password=*****"
ViktorJp@RT-AC86U-BE10:/tmp/home/root# mount | grep /tmp/mnt
tmpfs on /tmp/mnt type tmpfs (rw,noexec,relatime,size=16k)
tmpfs on /tmp/mnt type tmpfs (rw,noexec,relatime,size=16k)
/dev/sda1 on /tmp/mnt/PNY-USB type ext4 (rw,nodev,relatime,data=ordered)
\\192.168.86.9\Backups on /tmp/mnt/jangofett type cifs (rw,relatime,vers=2.1,sec=ntlmssp,cache=strict,username=admin,domain=JANGOFETT,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.86.9,file_mode=0755,dir_mode=0755,nounix,serverino,mapposix,rsize=1048576,wsize=1048576,actimeo=1)
Not sure that it matters... but the order that the UNC/Path is being called in my mount statement is different than yours. What if you used v2.1 using the same order as my mount statement to see?