aqc111 icon indicating copy to clipboard operation
aqc111 copied to clipboard

Report FYI DSM7 - DS1520+ (geminilake)

Open noblemd00 opened this issue 3 years ago • 6 comments

See reply comment below.

Working good...

DSM 7.0-41890 aqc111-geminilake-1.3.3.0-3

Sabrent USB Type-A or Type-C to 5-Gigabit Ethernet Adapter [10/100/1000/2500/5000 Mbps] (NT-SS5G) amazon.com/gp/product/B08977K9D2

Jumbo Frame Enabled - MTU 9000 Network Status: | 5000 Mbps, Full duplex, MTU 9000

Have not experimented with other values.

Getting 250-300 MB/s upload and 480 MB/s download settling half way through to 340 MB/s (3.5 GB file).

Uploading to 5 Disk 6TB RAID 5 (22TB Total)

noblemd00 avatar Jul 11 '21 20:07 noblemd00

Update.

Spoke too soon...

Checked status after restart and all was well, however...

After power off the package runs, but the adapter does not show up.

Package has to be stopped and re-started then the adapter shows up and connects.

noblemd00 avatar Jul 12 '21 16:07 noblemd00

Are you using DHCP or static address?

bb-qq avatar Jul 13 '21 03:07 bb-qq

Try this by sshimko - https://github.com/bb-qq/aqc111/issues/45#issuecomment-877728430

ihvar avatar Jul 13 '21 10:07 ihvar

Are you using DHCP or static address?

Tried both. Same result.

Also tried #45 maxlanport 5 (4 built-in lan ports +1 5G lan port) solution - did not work. I used Putty (SSH) to enter the commands: synosetkeyvalue /etc.defaults/synoinfo.conf maxlanport 5 synosetkeyvalue /etc/synoinfo.conf maxlanport 5

Temporary fix: Running scheduled task (as ROOT) to automatically stop and start the package 2 minutes after scheduled morning startup. I tried running this as a Boot-up task, but that did not work. The scheduled task seems to work as a temporary fix. Also works when manually run.

User defined script:

/usr/syno/bin/synopkg stop aqc111 /usr/syno/bin/synopkg start aqc111 exit 0

noblemd00 avatar Jul 14 '21 14:07 noblemd00

Could you try to add some wait to the startup script?

vi /var/packages/aqc111/scripts/start-stop-status

case $1 in
   start)
       /sbin/insmod $SYNOPKG_PKGDEST/aqc111/mii.ko
       /sbin/insmod $SYNOPKG_PKGDEST/aqc111/usbnet.ko
       /sbin/insmod $SYNOPKG_PKGDEST/aqc111/aqc111.ko
       ###############
       sleep 10 # add this
       ###############
       set_interfaces up
       exit 0
   ;;
   stop)
       set_interfaces down
       /sbin/rmmod $SYNOPKG_PKGDEST/aqc111/aqc111.ko
       /sbin/rmmod $SYNOPKG_PKGDEST/aqc111/usbnet.ko
       /sbin/rmmod $SYNOPKG_PKGDEST/aqc111/mii.ko
       exit 0
   ;;
   status)
       /sbin/lsmod | grep aqc111 && exit 0 || exit 3
   ;;
   killall)
       ;;
   log)
       exit 0
   ;;
esac

bb-qq avatar Jul 15 '21 09:07 bb-qq

Could you try to add some wait to the startup script?

vi /var/packages/aqc111/scripts/start-stop-status

case $1 in
   start)
       /sbin/insmod $SYNOPKG_PKGDEST/aqc111/mii.ko
       /sbin/insmod $SYNOPKG_PKGDEST/aqc111/usbnet.ko
       /sbin/insmod $SYNOPKG_PKGDEST/aqc111/aqc111.ko
       ###############
       sleep 10 # add this
       ###############
       set_interfaces up
       exit 0
   ;;
   stop)
       set_interfaces down
       /sbin/rmmod $SYNOPKG_PKGDEST/aqc111/aqc111.ko
       /sbin/rmmod $SYNOPKG_PKGDEST/aqc111/usbnet.ko
       /sbin/rmmod $SYNOPKG_PKGDEST/aqc111/mii.ko
       exit 0
   ;;
   status)
       /sbin/lsmod | grep aqc111 && exit 0 || exit 3
   ;;
   killall)
       ;;
   log)
       exit 0
   ;;
esac

Deactivated my temp fix scheduled task. Shut down and restarted several times and your fix seems to work. Will monitor and report if your added delay fix stops working.

noblemd00 avatar Jul 15 '21 14:07 noblemd00