Menu

Network issues "Link Up"

Help
2012-10-17
2012-10-19
  • hipsterdoofus

    hipsterdoofus - 2012-10-17

    I am using an older version of g4l. I used to update yearly for drivers but haven't needed to recently. It looks like the version I'm using is 0.36a. Anyway, We have received some netbooks (HP 3115m) that I've tried to image with. At first I was having a problem with one machine but it seems to be multiples. It will usually grab an IP, but after that when I do an operation, it looks like it will start, but instead appears to sit there and just occasionally say Link Up - it never says Link down (unless I unplug the cable). It isn't my cable either, because I've had this happen in 4 locations. Do you think it could be a driver issue and that I need to upgrade?

     
  • hipsterdoofus

    hipsterdoofus - 2012-10-17

    I'm not sure what you mean by hdt? Sorry, it's been awhile since I've had to troubleshoot a problem like this so I'm a bit rusty! I don't think it is the switch because we frequently image and multicast on these switches with outer computers and have not had this problem.

     
  • hipsterdoofus

    hipsterdoofus - 2012-10-17

    Ah - it is listed as a Realtek RTL8111/8168B

     
  • hipsterdoofus

    hipsterdoofus - 2012-10-19

    Upgrading to 0.42 seems to have fixed the issue.

    This is a side issue, but - how would I after specific operations put a clock of how long an operation too? I'm assuming I'd have to enclose the operation in a function and time that, but not real sure of how to do that. For instance, I do a multicast and want to know generally how long it takes.

     
  • Michael Setzer II

    Here is a script that I use. I create an image of the XP partition and then transfer it to the other 19 machines in the lab so they can be restored in about 12 minutes with no network activity. This script does use the time command to report how long it took to the the udpcast.

    Note: password has been replaced with password. Have other scripts that can log into all 20 machines and reimage the XP at 1 time.
    Note: plink is a putty ssh program that logs in and then runs command.

    if [ -e /sda6/d7-xp.lzo ] ; then
    echo "SDA6 already mounted"
    else
    sudo mount /dev/sda6 /sda6
    fi
    cmd="hostname ; cd /sda6 ; rm d7-xp.lzo ; sync ; sleep 10; ./udp-receiver --file d7-xp.lzo ; cd / "
    plink -t 192.168.7.201 -l root -pw password "$cmd" &
    plink -t 192.168.7.202 -l root -pw password "$cmd" &
    plink -t 192.168.7.203 -l root -pw password "$cmd" &
    plink -t 192.168.7.204 -l root -pw password "$cmd" &
    plink -t 192.168.7.205 -l root -pw password "$cmd" &
    plink -t 192.168.7.206 -l root -pw password "$cmd" &
    plink -t 192.168.7.207 -l root -pw password "$cmd" &
    plink -t 192.168.7.208 -l root -pw password "$cmd" &
    plink -t 192.168.7.209 -l root -pw password "$cmd" &
    plink -t 192.168.7.210 -l root -pw password "$cmd" &
    plink -t 192.168.7.211 -l root -pw password "$cmd" &
    plink -t 192.168.7.212 -l root -pw password "$cmd" &
    plink -t 192.168.7.213 -l root -pw password "$cmd" &
    plink -t 192.168.7.214 -l root -pw password "$cmd" &
    plink -t 192.168.7.215 -l root -pw password "$cmd" &
    plink -t 192.168.7.216 -l root -pw password "$cmd" &
    plink -t 192.168.7.217 -l root -pw password "$cmd" &
    plink -t 192.168.7.218 -l root -pw password "$cmd" &
    plink -t 192.168.7.220 -l root -pw password "$cmd" &
    sleep 15
    cd /sda6
    time udp-sender --max-bitrate 70m --file d7-xp.lzo --min-receivers 19 --min-wait 9

     

Log in to post a comment.