我写了一个bash脚本:
RRR=$(ifconfig eth0 | grep 'inet addr:' | cut -d: -f2)
if [[ ${RRR} == null ]]; then
`zenity --error --text "NO NETWORK"`
else
`zenity --error --text "NETWORK IS ON"`
fi
但它不能正常工作 - 当我切断网络时,错误信息没有显示在
上有什么建议吗?
提前谢谢
答案 0 :(得分:1)
我认为ping可以帮助您作为替代方案但是您已经解决了有趣的弹出消息窗口和网络状态。
ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` > /dev/null && echo "NETWORK IS ON" || echo "NO NETWORK"
或
ROUTER_IP="your router ip"
( ! ping -c1 $ROUTER_IP >/dev/null 2>&1 ) && service network restart >/dev/null 2>&1
答案 1 :(得分:0)
试试这个:
find /proc/irq/ -name \*eth0\* | fgrep -q eth0 && echo up || echo down
如果接口被加载,它将会出现
root@stormtrooper:/proc# ifconfig eth0 down
root@stormtrooper:/proc# find /proc/irq/ -name \*eth0\* | fgrep -q eth0 && echo up || echo down
down
root@stormtrooper:/proc# ifconfig eth0 up
root@stormtrooper:/proc# find /proc/irq/ -name \*eth0\* | fgrep -q eth0 && echo up || echo down
up
我不知道它是否会重新链接到链接状态...但是使用/ proc总是更快
答案 2 :(得分:0)
您可以使用ping命令分析连接质量。 我用这个函数来测试linux中的当前接口。它是ping目标地址10次并返回0 - 如果成功,则为1-否则。这只是一种可能性。
param1 - 接口名称(eth0,tun0 ...); param2 - ping目的地
ping_interface() {
# Max value of losted packages in %
MAX_PACKETS_LOST=80
PACKETS_COUNT=10
PACKETS_LOST=$(ping -c $PACKETS_COUNT -I $1 $2 |grep % | awk '{print $7}')
if ! [ -n "$PACKETS_LOST" ] || [ "$PACKETS_LOST" == "100%" ];
then
# 100% failed
return 1
else
if [ "${PACKETS_LOST}" == "0%" ];
then
#ping is OK
return 0
else
# Real value of losted packets between 0 and 100%
REAL_PACKETS_LOST=$(echo $PACKETS_LOST | sed 's/.$//')
if [[ ${REAL_PACKETS_LOST} -gt ${MAX_PACKETS_LOST} ]];
then
echo "Failed. Lost more then limit"
return 1
else
echo "Connection is ok."
return 0
fi
fi
fi
}
ping_interface eth0 8.8.8.8