First get the json with all the IP ranges
wget https://developers.google.com/static/crawling/ipranges/common-crawlers.json -O google.txt
Use this script to get the results. It may be smart to grep on "time=" to just get the IPs that returned results/were pingable.
for ip in `cat google.txt |grep ipv4|cut -f 2 -d :|sed 's#"##g'|cut -f 1 -d /`; do
o1=`echo $ip|cut -f 1 -d .`
o2=`echo $ip........
#mount the VCSA DVD
mount /dev/sr0 /mnt/cd
#alternatively you could mount the iso directly
mount -o loop vcsa.iso /your/mount/path
#for this purpose we are using the CLI installer on Linux
cd /mnt/cd/vcsa-cli-installer/lin64
#no it's not going to be that easy you can't just run vcsa-deploy like that you need to use a template or configured .json file
./vcsa-deploy
Usage: vcsa-deploy [-h] [--version] [--supported-deploymen........