Raspberry Piサーバーがランダムな時間後にWi-Fi接続を失い、どういうわけか自動的に回復できないようです。
通常、手動で再起動することで問題が解決します。
約30分後にwifiがない場合、自動的に再起動させたいと思います。どうやってやるの?
Raspberry Piサーバーがランダムな時間後にWi-Fi接続を失い、どういうわけか自動的に回復できないようです。
通常、手動で再起動することで問題が解決します。
約30分後にwifiがない場合、自動的に再起動させたいと思います。どうやってやるの?
回答:
これは基本的に、ステップバイステップの指示があれば、ワーウィックの答えです。
ホームフォルダーに次のシェルスクリプトを作成します。
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
実行可能になるようにアクセス許可を変更する
$ chmod +x check_inet.sh
/etc/crontab
を使用sudo
して編集し、次の行を追加します(yourname
実際のユーザー名に置き換えます)。
*/30 * * * * /home/yourname/check_inet.sh
hololeapソリューションは機能していると思います。
私のソリューションは、ネットワーク接続が機能しているかどうかをN分ごとに確認します(crontabの構成方法によって異なります)。チェックが失敗した場合、失敗を追跡します。失敗回数が5を超える場合、wifiを再起動しようとします(wifiの再起動が失敗した場合は、Raspberryを再起動することもできます。コメントを確認してください)。
スクリプトの最新バージョンを常に含む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:スクリプトをメモリ内で実行し、RaspberryのSDカードへの書き込みを避けるために、一時ファイルを削除しました。
ifdown
しifup
、おそらくネットワークを修正しますが、そうでない場合もあります。………………………………………………………………………………何か誤解した場合は、説明してください。…(続き)
私はmodiffied Pittoのスクリプトを私のMultitech MTAC loraWANゲートウェイ(なしfping)のために。ログファイルも追加しました。
#!/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
使用しないのに、なぜまだ話をするのですか?(2)なぜgateway_ip
変数からハードコードされた定数に変更したのですか?
network_check_tries_file
ファイル内の値をインクリメントしても(ping
失敗した場合)、network_check_tries
変数をインクリメントしないためです。…(続き)
network_check_tries
、0、1 2、3、4、5、および6 — テストが成功するのは7回目の呼び出し(network_check_tries
6に等しい)のみif [ "$network_check_tries" -gt 5 ]
です。おそらく、これは正しい動作です。スクリプトが知る限り、ネットワークは00:04:59にダウンした可能性があります。そのため、30分間をカバーしたことを確認するには7回連続して失敗します。…(続き)