Wrote a short bash script to do an nslookup so we could see the new public IP's and a curl to show the website was up.
echo "**********************************************" echo "nslookup on my.customer.com" echo "**********************************************" echo " " nslookup my.customer.com echo " " echo "**********************************************" echo "curl on my.customer.com, expecting http 200 OK" echo "**********************************************" echo " " curl -IL my.customer.com echo " "
No comments:
Post a Comment