Add Pingtest
This commit is contained in:
parent
a647d36dd4
commit
aec8be77bd
8
ping.log
Normal file
8
ping.log
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
06/09/21 14:49:13
|
||||||
|
o2.de nicht erreicht!
|
||||||
|
06/09/21 14:53:59
|
||||||
|
Internet nicht erreichbar: (Ping o2.de fehlgeschlagen, Ping Internetgateway erfolgreich)
|
||||||
|
06/09/21 14:54:32
|
||||||
|
Internet nicht erreichbar: (Ping o2.de fehlgeschlagen, Ping Internetgateway erfolgreich)
|
||||||
|
06/09/21 14:54:33
|
||||||
|
Internet nicht erreichbar: (Ping o2.de fehlgeschlagen, Ping Internetgateway erfolgreich)
|
19
pingtest.sh
Executable file
19
pingtest.sh
Executable file
@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if ping -c 1 o2.de &> /dev/null
|
||||||
|
then
|
||||||
|
#echo "Sende E-Mail"
|
||||||
|
#mail -s "Pingtest" system@hephaistos.schwalbert.net < ./ping.log
|
||||||
|
#rm ./ping.log
|
||||||
|
else
|
||||||
|
date +"%D %T" >> ping.log
|
||||||
|
if ping -c 1 192.168.1.1 &> /dev/null
|
||||||
|
then
|
||||||
|
echo "Internet nicht erreichbar: (Ping o2.de fehlgeschlagen, Ping Internetgateway erfolgreich)" >> ping.log
|
||||||
|
else
|
||||||
|
echo "Netzwerk nicht erreichbar: (Ping o2.de fehlgeschlagen, Ping Internetgateway fehlgeschlagen)" >> ping.log
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user