This may be a long shot:A shot in the dark:
I have an older NAS that supports only SMB v1. Modern devices (iPads, Mac OS) seem to not support it and only support SMB v2.
Is there a function where the router connects to a NAS via SMB v1 and exposes it to the network as a SMB V2?
mkdir /mnt/NAS
.mount -t cifs \\\\192.168.189.5\\share /mnt/NAS -o "vers=1.0,username=${USERNAME},password=${PASSWORD}"
/mnt/NAS
directory and make sure you have access. If everything is OK, you can then add the mount command to the services-start
script or the fstab.add
script so the directory is mounted on router start up. I would use the services-start
script as I am not sure how an error in fstab would affect the router start up. Don't forget to add the mkdir -p /mnt/NAS
command to the services-start file as well as that directory will not survive a reboot./jffs/configs/smb.conf.add
and add something like this; where user1 and user2 are the users that you created under the samba GUI settings[Test]
comment = test directory
path = /mnt/NAS
dos filetimes = yes
fake directory create times = yes
valid users = admin, user1, user2
invalid users =
read list = admin, user1, user2
write list = admin, user1,user2
service restart_samba
and see if your NAS files are available on the Router share "test"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!