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
  • 相关阅读:
    iframe嵌入页面自适应目标页面的高度
    pc端适配
    页面之间传值,接数值
    表单直传文件到七牛
    前端一些小技巧
    css3的一些知识点
    禁止用户长按选中
    修改Html的title值
    判断时间是多久前
    图片裁剪
  • 原文地址:https://www.cnblogs.com/mylinux/p/6061270.html
Copyright © 2011-2022 走看看