正确获取Google所有服务器IP段的方法是:查询GOOGLE域名公开的TXT记录:
nslookup -q=TXT _netblocks.google.com 8.8.8.8
nslookup -q=TXT _netblocks2.google.com 8.8.8.8
nslookup -q=TXT _netblocks3.google.com 8.8.8.8
_netblocks2.google.com 这里记录的是IPV6网段
两条Shell命令直接提取IPV4网段:
nslookup -q=TXT _netblocks.google.com 8.8.8.8|grep -oP "([\d\.]+/[\d]+)"
nslookup -q=TXT _netblocks3.google.com 8.8.8.8|grep -oP "([\d\.]+/[\d]+)"