您现在的位置是:网站首页> 编程资料编程资料
shell实现自动adsl拨号并检测连接状况脚本分享_linux shell_
2023-05-26
431人已围观
简介 shell实现自动adsl拨号并检测连接状况脚本分享_linux shell_
今天公司同事要我整个adsl自动重拨的shell,并检测是否连上了,这样才能保证内部测试服务器不掉网,好吧,下面我把脚本发出来.
系统:centos 5.x
脚本1:
复制代码 代码如下:
cat /root/soft_shell/auto_adsl_1.sh
#!/bin/bash
gateway=`ifconfig ppp0 |grep P-t-P| cut -f 3 -d ":"|cut -f 1 -d " "`
inter=`ifconfig |grep ppp0|awk '{print $1}'`
N=2
if [[ $inter -eq ppp0 ]]
then
/sbin/adsl-stop
sleep 10
/sbin/adsl-start
sleep 20
pkgloss=`ping -c4 $gateway|grep 'transm' |awk -F',' '{print $2}' |awk '{print $1}'`
if [[ $pkgloss -lt $N ]]
then
echo "`date +%Y-%m-%d/%T` The network is not stable">>/root/adsl.txt
else
echo "`date +%Y-%m-%d/%T` The network is normal">>/root/adsl.txt
fi
fi
脚本2:
复制代码 代码如下:
cat /root/soft_shell/auto_adsl_2.sh
#!/bin/bash
gateway=`ifconfig ppp0 |grep P-t-P| cut -f 3 -d ":"|cut -f 1 -d " "`
inter=`ifconfig |grep ppp0|awk '{print $1}'`
N=2
if [[ $inter != ppp0 ]]
then
/sbin/adsl-start
sleep 20
pkgloss=`ping -c4 $gateway|grep 'transm' |awk -F',' '{print $2}' |awk '{print $1}'`
if [[ $pkgloss -lt $N ]]
then
echo "`date +%Y-%m-%d/%T` The network is not stable">>/root/adsl.txt
else
echo "`date +%Y-%m-%d/%T` The network is normal">>/root/adsl.txt
fi
fi
ps:脚本2的作用就是检测adsl拨号是否有连上.
相关内容
- shell脚本实现linux系统文件完整性检测_linux shell_
- Shell脚本实现硬盘空间和表空间的使用情况统计并邮件通知_linux shell_
- Shell脚本实现检测某ip网络畅通情况(含短信报警功能)_linux shell_
- 实现释放CentOS系统内存的Shell脚本分享_linux shell_
- 一个强大的网络分析shell脚本分享(实时流量、连接统计)_linux shell_
- Shell脚本实现检查服务器安全状态(用户、登录IP、防火墙检查)_linux shell_
- Shell中获取脚本所在目录绝对路径的方法_linux shell_
- Shell脚本实现查找字符串中某字符最后出现的位置_linux shell_
- Shell脚本避免重复执行的方法_linux shell_
- Shell脚本实现检测进程是否正在运行_linux shell_
