Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use shell to realize automatic adsl dialing and detect connection status script

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces "how to use shell to achieve automatic adsl dialing and detect connection status script". In daily operation, I believe many people have doubts about how to use shell to achieve automatic adsl dialing and detect connection status script. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts of "how to use shell to achieve automatic adsl dialing and detect connection status script". Next, please follow the editor to study!

Script 1:

The code is as follows:

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}'`

Numb2

If [[$inter-eq ppp0]]

Then

/ sbin/adsl-stop

Sleep 10

/ sbin/adsl-start

Sleep 20

Pkgloss= `ping-c4 $gateway | grep 'transm' | awk-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

Script 2:

The code is as follows:

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}'`

Numb2

If [[$inter! = ppp0]]

Then

/ sbin/adsl-start

Sleep 20

Pkgloss= `ping-c4 $gateway | grep 'transm' | awk-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: the purpose of script 2 is to check whether adsl dialing is connected.

At this point, the study on "how to use shell to achieve automatic adsl dialing and detection of connection status script" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report