Raspberry Piサーバーがランダムな時間の後にwifi接続を失い、どういうわけか自動的に回復できないようです。
通常、手動で再起動すると問題が解決します。
約30分たっても無線LANが無ければ自動で再起動させたいのですが。どうやってやるの?
これは基本的に、Warwickの回答ですが、段階的な説明のみです
ホームフォルダーに次のシェルスクリプトを作成します。
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
1つの方法は、30分ごとにスクリプトを実行するエントリをrootのcronに置くことです。このスクリプトは、おそらくping
を使用してWIFI接続をテストし、結果を/ tmp内のファイルに書き込みます。接続が存在する場合は1、存在しない場合は0です。スクリプトの後続の反復はそのファイルをチェックし、それが0であり、WIFI接続が依然として不良である場合は、init 6
コマンド。
私はhololeapソリューションが機能していると思います。
私のソリューションでは、ネットワーク接続が機能しているかどうか(crontabの構成方法によって異なります)をN分ごとにチェックします。チェックが失敗した場合、失敗を追跡します。失敗回数が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
2018年1月26日編集:スクリプトをメモリ内で実行させ、RaspberryのSDカードへの書き込みを回避するために、一時ファイルを削除しました。
私は変更しました 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