2021-09-20 09:08:45 +00:00
|
|
|
#!/bin/env bash
|
|
|
|
|
|
|
|
if [[ -z "$ping_hosts" ]];then
|
2021-09-20 14:22:10 +00:00
|
|
|
ping_hosts=("nils.lol")
|
|
|
|
else
|
|
|
|
ping_hosts=($ping_hosts)
|
2021-09-20 09:08:45 +00:00
|
|
|
fi
|
|
|
|
if [[ -z "$http_hosts" ]];then
|
2021-09-20 14:22:10 +00:00
|
|
|
http_hosts=("https://nils.lol")
|
|
|
|
else
|
|
|
|
http_hosts=($http_hosts)
|
2021-09-20 09:08:45 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
function get_code {
|
2021-09-20 14:22:10 +00:00
|
|
|
http_raw="$(curl -s -I $h | tr -d '\r')"
|
|
|
|
http_code="[$(echo "$http_raw" | grep HTTP | cut -d " " -f 2)"
|
|
|
|
http_server=" | $(echo "$http_raw" | grep Server: | cut -d " " -f 2)]"
|
|
|
|
http_results=""$http_results"
|
|
|
|
$(printf "%-50s%s\n" ["$h"] "$http_code""$http_server")"
|
2021-09-20 09:08:45 +00:00
|
|
|
}
|
2021-09-20 10:12:41 +00:00
|
|
|
|
|
|
|
function get_ping {
|
2021-09-20 14:22:10 +00:00
|
|
|
ping_raw="$(fping -e "$p" 2> /dev/null)"
|
2021-09-20 10:12:41 +00:00
|
|
|
ping_reach="$(echo "$ping_raw" | grep -o -e "alive" -e "unreachable")"
|
2021-09-20 14:22:10 +00:00
|
|
|
if [[ "$ping_reach" == "unreachable" ]];then
|
|
|
|
ping_reach="[unreachable]"
|
|
|
|
elif [[ "$ping_reach" == "alive" ]];then
|
|
|
|
ping_reach="[alive"
|
|
|
|
ping_ms=" | $(echo "$ping_raw" | cut -d "(" -f 2 | cut -d ")" -f 1)]"
|
|
|
|
else
|
|
|
|
ping_reach="[error]"
|
|
|
|
fi
|
|
|
|
ping_results=""$ping_results"
|
|
|
|
$(printf "%-50s%s\n" ["$p]" "$ping_reach""$ping_ms")"
|
2021-09-20 10:12:41 +00:00
|
|
|
}
|
|
|
|
|
2021-09-20 14:22:10 +00:00
|
|
|
if [[ "$ping_hosts" != "none" ]];then
|
|
|
|
for p in "${ping_hosts[@]}";do
|
|
|
|
get_ping
|
|
|
|
done
|
|
|
|
echo "$ping_results"
|
|
|
|
fi
|
|
|
|
if [[ "$http_hosts" != "none" ]];then
|
|
|
|
for h in "${http_hosts[@]}";do
|
|
|
|
get_code
|
|
|
|
done
|
|
|
|
echo "$http_results"
|
|
|
|
fi
|