http://bugzilla.kernel.org/show_bug.cgi?id=6138





------- Comment #17 from [EMAIL PROTECTED]  2007-12-13 04:51 -------
Ok, I try do this at weekend (if have free time). 


Currently I have script that "fully" solve my problem, but not in good way. 
If some one expect some problems like me, you can use this script too. Start it
somewhere in rc

--cut
#/bin/sh

while [ true ]; do
    VALUE=`ping -c 1 192.168.0.1 | grep icmp_seq | grep time`
    if [ $? != 0 ]; then
        echo "eth1 down"
        ifconfig eth1 down
        ifconfig eth1 up
    fi
    if [ VALUE == "" ]; then
        echo "eth1 down"
        ifconfig eth1 down
        ifconfig eth1 up
    fi

    sleep 25
done

--cut


-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
acpi-bugzilla mailing list
acpi-bugzilla@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to