I have a telnet script that works OK - 2 problems:
1) When it is done w/ the hostfile it keeps trying to telnet (to infinity).
2) How can I ensure that when it cannot log into a site (b/c site down), that it keeps going - and will create a list of the sites it could not reach???
See basic script:
#!/bin/sh
while read DOG
do
(
sleep 2
echo password
sleep 2
echo en
sleep 2
echo password
sleep 2
echo sho int
sleep 2
echo lo
echo " "
)|telnet $DOG
echo $DOG >> /users/john/miscfile.txt
sleep 1
clear
done < /users/john/hostdev.txt
fi
1) When it is done w/ the hostfile it keeps trying to telnet (to infinity).
2) How can I ensure that when it cannot log into a site (b/c site down), that it keeps going - and will create a list of the sites it could not reach???
See basic script:
#!/bin/sh
while read DOG
do
(
sleep 2
echo password
sleep 2
echo en
sleep 2
echo password
sleep 2
echo sho int
sleep 2
echo lo
echo " "
)|telnet $DOG
echo $DOG >> /users/john/miscfile.txt
sleep 1
clear
done < /users/john/hostdev.txt
fi