यदि कोई निश्चित समय के लिए कोई वाईफाई कनेक्शन नहीं है, तो स्वचालित रूप से रिबूट करें


14

ऐसा लगता है कि मेरा रास्पबेरी पाई सर्वर एक यादृच्छिक समय के बाद वाईफाई कनेक्शन खो देता है और किसी तरह अपने आप ठीक नहीं हो पाता है।

आमतौर पर हाथ से किया गया रिबूट समस्या का समाधान करता है।

मैं इसे लगभग 30 मिनट के बाद वाईफाई नहीं होने पर स्वचालित रूप से रिबूट करना चाहता हूं। मैं उसे कैसे कर सकता हूँ?


5
क्या आपने इंटरफ़ेस को नीचे लाने और इसे वापस लाने की कोशिश की है? अपने वायरलेस कार्ड के लिए कर्नेल मॉड्यूल को उतारने और फिर से लोड करने के बारे में कैसे? रिबूट किए बिना कार्ड को रीसेट करने के लिए आप कुछ और कर सकते हैं।
होलिडे

1
हाँ, यह भी शायद काम करेगा, लेकिन यहाँ मुख्य मुद्दा यह है कि कैसे यह स्वचालित रूप से पता लगाया जाए और फिर उचित कार्रवाई करें।
क्लैंप

जवाबों:


12

यह अनिवार्य रूप से वारविक का उत्तर है, बस चरण-दर-चरण निर्देशों के साथ।


  1. अपने होम फ़ोल्डर में निम्न शेल स्क्रिप्ट बनाएं:

    check_inet.sh

    #!/bin/bash
    
    TMP_FILE=/tmp/inet_up
    
    # Edit this function if you want to do something besides reboot
    no_inet_action() {
        shutdown -r +1 'No internet.'
    }
    
    if ping -c5 google.com; then
        echo 1 > $TMP_FILE
    else
        [[ `cat $TMP_FILE` == 0 ]] && no_inet_action || echo 0 > $TMP_FILE
    fi
    
  2. अनुमतियों को बदलें ताकि यह निष्पादन योग्य हो

    $ chmod +x check_inet.sh
    
  3. निम्न पंक्ति /etc/crontabका उपयोग करके संपादित करें sudoऔर yournameअपने वास्तविक उपयोगकर्ता नाम के साथ बदलें :

    */30 * * * * /home/yourname/check_inet.sh
    

5

एक तरीका यह होगा कि रूट की क्रोन में एक प्रविष्टि डालें जो हर 30 मिनट में एक स्क्रिप्ट चलाता है। स्क्रिप्ट WIFI कनेक्शन का परीक्षण करेगी, शायद इसका उपयोग करते हुए ping, और परिणाम के लिए फ़ाइल को tmp / tmp में लिख सकती है - कनेक्शन के लिए 1 मौजूद है, 0 यदि ऐसा नहीं होता है। इसके बाद स्क्रिप्ट की पुनरावृत्तियों फिर उस फ़ाइल की जाँच करें, और यदि यह 0 था, और वाईफ़ाई कनेक्शन अभी भी खराब था, तो एक init 6कमांड चलाएं ।


3

मुझे लगता है कि होलोलॉप समाधान काम कर रहा है।

मेरा समाधान हर N मिनट की जाँच करता है (यह निर्भर करता है कि आप अपने crontab को कैसे कॉन्फ़िगर करते हैं) एक कार्यशील नेटवर्क कनेक्शन के लिए। यदि चेक विफल हो जाता है तो मैं विफलता का ट्रैक रखता हूं। जब विफलता की गिनती होती है> 5 मैं वाईफाई को फिर से शुरू करने की कोशिश करता हूं (आप वाईफ़ाई को फिर से शुरू करने पर रास्पबेरी को रिबूट भी कर सकते हैं, टिप्पणियों की जांच करें)।

यहाँ स्क्रिप्ट के नवीनतम संस्करण में हमेशा GitHub रेपो है: https://github.com/ltpitt/bash-network-repair-automation

यहाँ, stackexchange सामान्य नीति के अनुसार (सभी उत्तरों में केवल लिंक शामिल नहीं होने चाहिए), फ़ाइल network_check.sh, कॉपी करें और किसी भी फ़ोल्डर में पेस्ट करें, जैसे निर्देश स्थापित करना स्क्रिप्ट की टिप्पणियों में हैं।

#!/bin/bash
# Author:
# twitter.com/pitto
#
# HOW TO INSTALL:
#
# 1) Install ifupdown and fping with the following command:
# sudo apt-get install ifupdown fping
#
# 2) Then install this script into a folder and add to your crontab -e this row:
# */5 * * * * /yourhome/yourname/network_check.sh
#
# Note:
# If you want to perform automatic repair fsck at reboot
# remember to uncomment fsck autorepair here: nano /etc/default/rcS

# Let's clear the screen
clear

# Write here the gateway you want to check to declare network working or not
gateway_ip='www.google.com'

# Here we initialize the check counter to zero
network_check_tries=0

# Here we specify the maximum number of failed checks
network_check_threshold=5

# This function will be called when network_check_tries is equal or greather than network_check_threshold
function restart_wlan0 {
    # If network test failed more than $network_check_threshold
    echo "Network was not working for the previous $network_check_tries checks."
    # We restart wlan0
    echo "Restarting wlan0"
    /sbin/ifdown 'wlan0'
    sleep 5
    /sbin/ifup --force 'wlan0'
    sleep 60
    # If network is still down after recovery and you want to force a reboot simply uncomment following 4 rows
    #host_status=$(fping $gateway_ip)
    #if [[ $host_status != *"alive"* ]]; then
    #    reboot
    #fi
}

# This loop will run network_check_tries times and if we have network_check_threshold failures
# we declare network as not working and we restart wlan0
while [ $network_check_tries -lt $network_check_threshold ]; do
    # We check if ping to gateway is working and perform the ok / ko actions
    host_status=$(fping $gateway_ip)
    # Increase network_check_tries by 1 unit
    network_check_tries=$[$network_check_tries+1]
    # If network is working
    if [[ $host_status == *"alive"* ]]; then
        # We print positive feedback and quit
        echo "Network is working correctly" && exit 0
    else
        # If network is down print negative feedback and continue
        echo "Network is down, failed check number $network_check_tries of $network_check_threshold"
    fi
    # If we hit the threshold we restart wlan0
    if [ $network_check_tries -ge $network_check_threshold ]; then
        restart_wlan0
    fi
    # Let's wait a bit between every check
    sleep 5 # Increase this value if you prefer longer time delta between checks
done

1/26/2018 को संपादित करें: मैंने स्क्रिप्ट में स्मृति को चलाने और रास्पबेरी के एसडी कार्ड पर लिखने से बचने के लिए अस्थायी फ़ाइलों को हटा दिया है।


1
यह स्क्रिप्ट अस्थायी डिस्कनेक्ट पर पुनरारंभ से बचती है। उत्कृष्ट धन्यवाद!
वेजिक्स

1
आपको इस लिपि में एक बड़ा बदलाव आया है। जैसा कि मैंने इसे समझा, पिछले संस्करण एक पास कर देगा, सामान कर रहा है (tmp फ़ाइलों को अद्यतन करने सहित), और बाहर निकलें। इसमें कोई लूप नहीं था; बल्कि, यह हर पांच मिनट में इसे चलाने के लिए क्रोन पर निर्भर था। यदि नेटवर्क लगातार पांच चेक (यानी लगभग आधे घंटे के लिए) नीचे था, तो स्क्रिप्ट नेटवर्क को रीसेट करने की कोशिश करने के लिए काम करेगी। यह सवाल का एक अच्छा जवाब लग रहा था, हालांकि यह तथ्य यह है कि यह tmp फ़ाइलों को लिखा एक छोटी सी खामी थी। … (Cont'd)
स्कॉट

(Cont'd) ... नए संस्करण में एक लूप होता है, और हर पांच सेकंड में नेटवर्क की जांच करता है । यदि नेटवर्क लगातार पांच चेक (यानी लगभग आधे मिनट के लिए ) नीचे है, तो स्क्रिप्ट नेटवर्क को रीसेट करने की कोशिश करने के लिए काम करती है। (यह सवाल क्या पूछता है उससे अलग प्रतीत होता है।) और यहां यह थोड़ा अजीब हो जाता है। इसके बाद यह लगातार पांच बार नेटवर्क की विफलता का पता लगाता है और नेटवर्क को रीसेट करता है, स्क्रिप्ट से बाहर निकलता है। (और, संयोग से, यह कभी भी जांच किए बिना बाहर निकलता है कि क्या नेटवर्क वास्तव में वापस आ गया है।) ... (Cont'd)
स्कॉट

(Cont'd) ... लेकिन, जब तक नेटवर्क ऊपर है, स्क्रिप्ट हमेशा के लिए चलती रहती है, नेटवर्क के विफल होने का इंतजार किया जाता है। इस बीच, क्रोन हर पांच मिनट में स्क्रिप्ट को फिर से शुरू करता रहता है। यदि नेटवर्क एक घंटे तक रहता है, तो स्क्रिप्ट की एक दर्जन प्रतियां चल रही होंगी। और, यदि नेटवर्क में विफल रहता है तो, उन दर्जन प्रक्रियाओं लड़ाई एक दूसरे के साथ अतुल्यकालिक रूप से कर रही है क्या करेंगे, ifdownऔर ifup, शायद नेटवर्क फिक्सिंग, और शायद नहीं। …………………………………………………………… अगर मैंने कुछ गलत समझा है, तो कृपया मुझे समझाएं। … (Cont'd)
स्कॉट

(Cont'd)… (1) यदि आप एक उत्तर के एक प्रमुख रीडिज़ाइन को बनाने जा रहे हैं जो एक वर्ष से अधिक समय से पोस्ट किया गया है, तो आपको कहना चाहिए कि आपने क्या किया है। "मैंने स्क्रिप्ट में मेमोरी को चलाने के लिए अस्थायी फ़ाइलों को हटा दिया है" आपके परिवर्तनों का पर्याप्त विवरण नहीं है। (२) ऐसा लगता है जैसे आपके पास वर्गाकार खूंटे, गोल खूंटे, चौकोर छेद और गोल छेद का संग्रह है, और आपने उन्हें सही से मिलान नहीं किया है। आपको या तो स्क्रिप्ट को बाहर निकलने के लिए संशोधित करना चाहिए जब यह देखता है कि नेटवर्क ऊपर है, या इसे हमेशा के लिए चलाने के लिए संशोधित करें, और केवल एक बार (यानी, बूट समय पर) स्क्रिप्ट को शुरू करने के लिए कोंट्राब बदलें।
स्कॉट

0

मैंने अपने मल्टीटेक mtac loraWAN गेटवे (कोई फ़ैपिंग) के लिए पिटो की स्क्रिप्ट को संशोधित नहीं किया। मैंने एक लॉग फ़ाइल भी जोड़ी है।

#!/bin/bash
# Author: 
# twitter.com/pitto
#
# HOW TO INSTALL:
#
# 1) Install ifupdown with the following command:
# sudo apt-get install ifupdown
#
# 2) Create files in any folder you like (ensure that the filename variables, set below,
# match the names of the files you created) with the following commands:
# sudo touch /home/root/scripts/network_check_tries.txt &&
#                               sudo chmod 777 /home/root/network_check_tries.txt
# sudo touch /home/root/scripts/N_reboots_file.txt      &&
#                               sudo chmod 777 /home/root/N_reboots_file.txt
# sudo touch /home/root/scripts/network_check.log       &&
#                               sudo chmod 777 /home/root/network_check.log
#
# 3) Then install this script into a folder and add to your crontab -e this row:
# */5 * * * * /yourhome/yourname/network_check.sh
#
# Note:
# If additionally you want to perform automatic repair fsck at reboot
# remember to uncomment fsck autorepair here: nano /etc/default/rcS

# Specify the paths of the text file where the network failures count, reboot count,
# and log will be held:
network_check_tries_file='/home/root/network_check_tries.txt'
N_reboots_file='/home/root/N_reboots_file.txt'
log_file='/home/root/network_check.log'

# Save file contents into corresponding variables:
network_check_tries=$(cat "$network_check_tries_file")
N_reboots=$(cat "$N_reboots_file")


# If host is / is not alive we perform the ok / ko actions that simply involve
# increasing or resetting the failure counter
ping -c1 google.com
if [ $? -eq 0 ]
then
    # if you want to log when there is no problem also,
    # uncomment the following line, starting at "date".
    echo 0 > "$network_check_tries_file" #&& date >> "$log_file" && echo -e "-- Network is working correctly -- \n" >> "$log_file"
else
    date >> "$log_file" && echo -e "-- Network is down... -- \n" >> "$log_file" && echo "$(($network_check_tries + 1))" > "$network_check_tries_file"
fi

# If network test failed more than 5 times (you can change this value to whatever you
# prefer)
if [ "$network_check_tries" -gt 5 ] 
then
    # Time to restart ppp0
    date >> "$log_file" && echo "Network was not working for the previous $network_check_tries checks." >> "$log_file" && echo "Restarting ppp0" >> "$log_file"
    killall pppd
    sleep 20
    /usr/sbin/pppd call gsm
    sleep 120
    # Then we check again if restarting wlan0 fixed the issue;
    # if not we reboot as last resort
    ping -c1 google.com
    if [ $? -eq 0 ]
    then
        date >> "$log_file" && echo -e "-- Network is working correctly -- \n" >> "$log_file" && echo 0 > "$network_check_tries_file"
    else
        date >> "$log_file" && echo -e  "-- Network still down after ifdownup... reboot time!-- \n" >> "$log_file" && echo 0 > "$network_check_tries_file" && echo "$(($N_reboots + 1))" > "$N_reboots_file" && reboot
    fi
fi

(१) आप अभी भी इस बारे में बात क्यों करते हैं ifupdownयदि आप इसका उपयोग नहीं करते / करते हैं? (२) आप gateway_ipएक चर से एक हार्ड-कोडेड स्थिरांक में क्यों बदल गए?
स्कॉट

हाय स्काउट, मैं ifup ifdown टिप्पणियों को हटाने के लिए भूल गया। मैं हार्डकोडेड गेटवे_प बदलना भूल गया।
23:303 पर user3036425

अच्छा! मैंने एक नया संस्करण जोड़ा है जो अस्थायी फ़ाइलों का उपयोग नहीं कर रहा है (रास्पबेरी के एसडी पर लिखना इतना अच्छा विचार नहीं था), आप इसे मेरे उत्तर में देख सकते हैं।
पिटो

यह स्क्रिप्ट कुछ मुद्दों को विरासत में लेती है जो कि पिटो की स्क्रिप्ट के मूल संस्करण में थे (जिसे बाद में सही कर दिया गया है): (1) यदि नेटवर्क 00:00:01 से शुरू होता है (आधी रात के बाद एक सेकंड), तो स्क्रिप्ट नहीं होगी 00:35 (यानी, सातवें चेक पर 35 मिनट बाद) तक प्रतिक्रिया करें, क्योंकि, भले ही यह network_check_tries_fileफ़ाइल में मूल्य बढ़ाता है (जब pingविफल हो जाता है), यह network_check_triesचर नहीं बढ़ाता है । … (Cont'd)
स्कॉट

(Cont'd) ... इसलिए स्क्रिप्ट सात बार (00:05, 00:10, 00:15, 00:20, 00:25, 00:30, और 00:35) network_check_tries0, 1, के बराबर चलती है 2, 3, 4, 5, और 6 - और यह केवल सातवें आह्वान ( network_check_tries6 के बराबर) के साथ है जो if [ "$network_check_tries" -gt 5 ]परीक्षण सफल होता है। यकीनन, यह सही व्यवहार है। जहां तक ​​स्क्रिप्ट को पता है, नेटवर्क 00:04:59 पर नीचे चला गया हो सकता है, इसलिए यह सुनिश्चित करने में सात लगातार विफलताएं हैं कि आपने 30 मिनट की अवधि को कवर किया है। … (Cont'd)
स्कॉट
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.