zoukankan      html  css  js  c++  java
  • shell查看并修复网络连接


    1.  shell监控网卡状态,故障时自动重启网卡 http://blog.slogra.com/post-425.html

     cat fix_eth0.sh

    #!/bin/bash
    
    check_and_fix_eth0_link()
    {
    date="`date '+%Y-%m-%d %H:%M:%S'`"
    
    # step3 : if have ip, ping $dns
            lost_rate=`ping -c 8 -w 8 $dns -I $eth0 | grep 'packet loss' 
                                                    | awk -F'packet loss' '{ print $1 }' 
                                                    | awk '{ print $NF }' | sed 's/%//g'`
    
    # step4: if ping dns failed, fix the link of $eth0
            if [ $lost_rate -eq 0 ]
            then
                    echo "network_ok $date $dns $dev" >>/root/network_ok.log
            elif [ $lost_rate -le 100 ]
            then
                    echo "network_error $date $dns $dev" >>/root/network_error.log
                    ifconfig $usb0 down
                    sleep 1
                    ifconfig $usb0 up
            fi
    }
    
    eth0="eth0"
    usb0="usb0"
    dns="61.139.2.69"
    
    touch /root/network_ok.log
    touch /root/network_error.log
    
    while [ 1 ]
    do
    # step 1 : test if $eth0 have ip
        ipaddr=` /sbin/ifconfig $eth0 | grep "inet addr" | awk '{ print $2}' | awk -F: '{print $2}' `
        if [ ! -n "$ipaddr" ]
        then
    # step2 : if have no ip, reset the $eth0, maybe the "udhcpc -i $eth0 ?"
                echo "    $0: NO IP Addr"
                /etc/init.d/networking restart
        else
                check_and_fix_eth0_link;
        fi
        sleep 10
    done
  • 相关阅读:
    .NET Page对象各事件执行顺序
    允许webservice远程在ie里面调用配置方法
    sea.js模块化编程
    atom配置web开发环境
    CSS代码规范
    HTML DOM总结
    10分钟写一个markdown编辑器
    sea.js详解
    圣杯布局 双飞翼布局
    Spring学习(1)
  • 原文地址:https://www.cnblogs.com/mylinux/p/6061270.html
Copyright © 2011-2022 走看看