1
0
mirror of https://github.com/byReqz/conn.git synced 2024-11-01 01:03:14 +00:00

import and adjust wait function

This commit is contained in:
Nils 2021-11-28 17:24:21 +01:00
parent 97db5c1fb9
commit c9de29f3ec
Signed by: byreqz
GPG Key ID: 396A62D7D436749E

45
conn.sh
View File

@ -126,6 +126,48 @@ function main {
echo "-----------------------------------------------------" echo "-----------------------------------------------------"
else else
for host in $hosts;do for host in $hosts;do
if [[ $waitcheck == true ]];then
echo "-w used, waiting for active connection"
echo "checking connection status for $host"
fping=$(fping $only -a $host)
if [[ ! $oscheck == false ]];then
p135=$(nping $only -q1 -c1 -p135 $host)
p3389=$(nping $only -q1 -c1 -p3389 $host)
fi
if [[ $fping != "$host" ]] && [[ -n $(echo $p135 | grep "Successful connections: 1") ]] || [[ $fping != "$host" ]] && [[ -n $(echo $p3389 | grep "Successful connections: 1") ]];then
echo "-------------------Availability----------------------"
echo "note: this seems to be a windows machine which does not respond to ICMP"
notify-send "$host is now reachable" "and seems to be a windows machine" -u normal -t 30000 -a conn
echo "-----------------------------------------------------"
elif [[ $fping = "$host" ]] && [[ -n $(echo $p135 | grep "Successful connections: 1") ]];then
echo "-------------------Availability----------------------"
echo "note: this seems to be a windows machine which does respond to ICMP"
fping -e $host
notify-send "$host is now reachable" "and seems to be a windows machine" -u normal -t 30000 -a conn
echo "-----------------------------------------------------"
else
while [[ "$(fping $only -m -q -u $host)" == "$host" ]]; do :
done
echo "-------------------Availability----------------------"
fping -e $host
if [[ ! $oscheck == false ]];then
rescue=$(nping $only -q1 -c1 -p22,222 $host)
fi
if [[ -n $(echo $rescue | grep "Successful connections: 1") ]];then
echo "note: this seems to be a linux machine"
notify-send "$host is now reachable" "and seems to be in a linux system" -u normal -t 30000 -a conn
elif [[ -n $(echo $rescue | grep "Successful connections: 2") ]];then
echo "note: this machine seems to be in the rescue system"
notify-send "$host is now reachable" "and seems to be in the rescue system" -u normal -t 30000 -a conn
elif [[ -n $(echo $p135 | grep "Successful connections: 1") ]] || [[ -n $(echo $p3389 | grep "Successful connections: 1") ]];then
echo "note: this machine seems to be booted into windows"
notify-send "$host is now reachable" "and seems to be booted into windows" -u normal -t 30000 -a conn
else
notify-send "$host is now reachable" -u normal -t 30000 -a conn
fi
echo "-----------------------------------------------------"
fi
else
echo "checking connection status for $host" echo "checking connection status for $host"
fping=$(fping $only -a $host) fping=$(fping $only -a $host)
if [[ ! $oscheck == false ]];then if [[ ! $oscheck == false ]];then
@ -155,6 +197,7 @@ function main {
fi fi
echo "-----------------------------------------------------" echo "-----------------------------------------------------"
fi fi
fi
if [[ ! $doportscan == false ]];then if [[ ! $doportscan == false ]];then
if [[ $doportscan == true ]];then if [[ $doportscan == true ]];then
portscan=y portscan=y
@ -168,7 +211,7 @@ function main {
echo "" echo ""
fping $only -c 4 $host fping $only -c 4 $host
echo "------------------------------------------------" echo "------------------------------------------------"
exit echo ""
else else
echo "" echo ""
fi fi