Hi there,
I have a modem/router Linksys WRT32X with OpenWrt 19.07.8 and 2 WD element USB3 storage attached through a HaetFire USB 3.0 Hub Splitter 4 Port.
I use nfs to share the storage drives.
With only one storage drive, this is working fine but with the both, I have an issue as follow.
Server-side config
~# uci show fstab
fstab.@global[0]=global
fstab.@global[0].anon_swap='0'
fstab.@global[0].auto_swap='1'
fstab.@global[0].auto_mount='1'
fstab.@global[0].delay_root='5'
fstab.@global[0].check_fs='0'
fstab.@global[0].anon_mount='1'
fstab.@mount[0]=mount
fstab.@mount[0].target='/mnt/hd6'
fstab.@mount[0].uuid='c6584879-c77b-42c6-9acf-a3996fb15442'
fstab.@mount[0].enabled='1'
fstab.@mount[1]=mount
fstab.@mount[1].enabled='1'
fstab.@mount[1].uuid='d7d5bc17-1fa1-4d16-966b-a2240d4b114e'
fstab.@mount[1].target='/mnt/hd7'
~# ls /mnt/hd6
lost+found media
~# ls /mnt/hd7
lost+found share
~# showmount -e 192.168.1.1
Export list for 192.168.1.1:
/mnt/hd7 192.168.1.0/255.255.255.0
/mnt/hd6 192.168.1.0/255.255.255.0
Everything looks good so far
Computer/client-side config, Opensuse Leap 15.2
~> cat /etc/auto.misc
...
HD6 -fstype=nfs 192.168.1.1:/mnt/hd6
HD7 -fstype=nfs 192.168.1.1:/mnt/hd7
~> sudo showmount -e 192.168.1.1
Export list for 192.168.1.1:
/mnt/hd7 192.168.1.0/255.255.255.0
/mnt/hd6 192.168.1.0/255.255.255.0
~> ls /mnt/HD6
lost+found media
~> ls /mnt/HD7
lost+found media
As you can see ls /mnt/HD7 shows media instead of share subdir.
Question: Do you have any experience with a USB hub? Is it my mistake or is it not possible to use the hub with 2 drives in the same time?
Many thanks