URL: https://linuxfr.org/users/nodens/journaux/script-de-reconnexion-adsl-en-cas-derreur-io-de-ppp Title: Script de reconnexion adsl en cas d'erreur I/O de ppp Authors: nodens Date: 2003年09月04日T10:36:37+02:00 Tags: Score: 0 #!/bin/bash # /etc/ppp/ip-down.d/99-restart # restarts the connection when peer resets it. # needed if I/O error etc... # if we had another message, then don't do anything. # the name is important, this is the last script we want to be executed # when ppp goes down. tail -n 30 /var/log/messages | grep "tcflush failed: Input/output error" > /dev/null; if [ $? == 0 ] then pon adsl_pppoe fi

AltStyle によって変換されたページ (->オリジナル) /