1. 查看可用IP
for i in `seq 1 255`; do ping -c 1 10.210.55.$i >> /dev/null; if [ $? -eq 1 ]; then echo "10.210.55.$i is ready to use"; fi; done