ColDen
Senior Member
It was purchased 3 years ago.DS220+ is a rather old device. What version of DSM is installed? What versions of VIFS/SMB are supported?
It was purchased 3 years ago.DS220+ is a rather old device. What version of DSM is installed? What versions of VIFS/SMB are supported?
YesDoes user that you're specifying have access to mount point on NAS?
Here are the manual commands that you can try, one at a time... this is directly from BACKUPMON's code. Please send some feedback if you get any errors during any of these steps, OK? Also, wasn't sure if you tried SMB versions other than 3.02, but it would be good to try starting with 2.0, 2.1 and up. v2.1 seems to be a good compromise, since it's able to handle many of the older and newer devices. 3.02 doesn't work on some routers, but it does work on our GT-AX6000.Rights, no issues from various other PCs or devices.
mkdir -p "/tmp/mnt/primary"
chmod 777 "/tmp/mnt/primary"
modprobe md4
mount -t cifs "\\\\192.168.50.62\\Backups" "/tmp/mnt/primary" -o "vers=2.1,username=admin,password=admin"
...
... (you should be able to see the contents of your network drive at this point)
...
cd /tmp/mnt/primary
ls
...
... (did you see anything?)
...
cd /tmp/mnt
umount -l "/tmp/mnt/primary"
Good tip. In checking the settings on my Synology I had to set it to use SMB minimum of 1.0 maximum of 3.0.Here are the manual commands that you can try, one at a time... this is directly from BACKUPMON's code. Please send some feedback if you get any errors during any of these steps, OK? Also, wasn't sure if you tried SMB versions other than 3.02, but it would be good to try starting with 2.0, 2.1 and up. v2.1 seems to be a good compromise, since it's able to handle many of the older and newer devices. 3.02 doesn't work on some routers, but it does work on our GT-AX6000.
Code:mkdir -p "/tmp/mnt/primary" chmod 777 "/tmp/mnt/primary" modprobe md4 mount -t cifs "\\\\192.168.50.62\\Backups" "/tmp/mnt/primary" -o "vers=2.1,username=admin,password=admin" ... ... (you should be able to see the contents of your network drive at this point) ... cd /tmp/mnt/primary ls ... ... (did you see anything?) ... cd /tmp/mnt umount -l "/tmp/mnt/primary"
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!