September 30, 201114 yr This is the re-occurrence of an issue I had earlier that was fixed, or so I thought. http://lime-technology.com/forum/index.php?topic=14440.msg136276#msg136276 I executed "ethtool eth0" on my unraid system and I'm seeing "Speed: 100Mb/s" which is what I do not expect. I have Gigabit in the server going to a Gigabit switch. I also tried forcing it by "ethtool -s eth0 speed 1000 duplex full autoneg off Output from ethtool: ~# ethtool eth0 Settings for eth0: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supports auto-negotiation: Yes Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: Symmetric Receive-only Advertised auto-negotiation: Yes Speed: 100Mb/s Duplex: Full Port: Twisted Pair PHYAD: 0 Transceiver: internal Auto-negotiation: on MDI-X: Unknown Supports Wake-on: pumbg Wake-on: g Current message level: 0x00000033 (51) Link detected: yes Output from lsmod: # lsmod Module Size Used by md_mod 45709 6 xor 12961 1 md_mod r8169 21988 0 sata_mv 20197 4 sata_nv 15180 4 amd74xx 3598 0 forcedeth 41276 0
September 30, 201114 yr Author more info: contents of my "go script" #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c # determine if cache drive online, retry upto 7 times for i in 0 1 2 3 4 5 6 7 do if [ ! -d /mnt/cache ] then sleep 15 fi done # If Cache drive is online, start SABnzbd, Sickbeard, and CouchPotato if [ -d /mnt/cache ]; then cd /mnt/cache/.custom installpkg /boot/packages/SABnzbdDependencies-2.1-i486-unRAID.tgz python /mnt/cache/.custom/sabnzbd/SABnzbd.py -d python /mnt/cache/.custom/sickbeard/SickBeard.py --daemon python /mnt/cache/.custom/couchpotato/CouchPotato.py -d fi #Start unMenu on reboot /boot/unmenu/uu #Force 1000BaseT Duplex Full ethtool -s eth0 speed 1000 duplex full autoneg off
September 30, 201114 yr Try a different ethernet cable. Gigabit is smart enough to back off the speed if it detects a bad connection.
October 1, 201114 yr Author Gonna get some help here:http://lime-technology.com/forum/index.php?topic=15049.0 Thanks
Archived
This topic is now archived and is closed to further replies.