How to find Google's IP address?

后端 未结 8 1842
悲&欢浪女
悲&欢浪女 2020-12-23 22:20

Google is blocked in some countries. However, there are many ways to access Google, like VPN, agent, and by changing the hosts file.

If I want to change the hosts f

相关标签:
8条回答
  • 2020-12-23 22:42

    Google maintains a server infrastructure that grows dynamically with the ever increasing internet demands. This link by google describes the method to remain up to date with their IP address ranges.

    When you need the literal IP addresses for Google Apps mail servers, start by using one of the common DNS lookup commands (nslookup, dig, host) to retrieve the SPF records for the domain _spf.google.com, like so:

    nslookup -q=TXT _spf.google.com 8.8.8.8
    

    This returns a list of the domains included in Google's SPF record, such as: _netblocks.google.com, _netblocks2.google.com, _netblocks3.google.com

    Now look up the DNS records associated with those domains, one at a time, like so:

    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
    

    The results of these commands contain the current range of addresses.

    0 讨论(0)
  • 2020-12-23 22:42

    The following IP address ranges belong to Google:

    64.233.160.0 - 64.233.191.255
    66.102.0.0 - 66.102.15.255
    66.249.64.0 - 66.249.95.255
    72.14.192.0 - 72.14.255.255
    74.125.0.0 - 74.125.255.255
    209.85.128.0 - 209.85.255.255
    216.239.32.0 - 216.239.63.255
    

    Like many popular Web sites, Google utilizes multiple Internet servers to handle incoming requests to its Web site. Instead of entering http://www.google.com/ into the browser, a person can enter http:// followed by one of the above addresses, for example:

    http://74.125.224.72/
    

    SOURCE

    0 讨论(0)
  • 2020-12-23 22:45

    Here is a bash script that returns the IP (v4 and v6) ranges using @WorkWise's answer:

    domainsToDig=$(dig @8.8.8.8 _spf.google.com TXT +short | \
        sed \
            -e 's/"v=spf1//' \
            -e 's/ ~all"//' \
            -e 's/ include:/\n/g' | \
        tail -n+2)
    for domain in $domainsToDig ; do
        dig @8.8.8.8 $domain TXT +short | \
            sed \
                -e 's/"v=spf1//' \
                -e 's/ ~all"//' \
                -e 's/ ip.:/\n/g' | \
            tail -n+2
    done
    
    0 讨论(0)
  • 2020-12-23 22:46

    If all you are trying to do is find the IP address that corresponds to a domain name, like google.com, this is very easy on every machine connected to the Internet.

    Simply run the ping command from any command prompt. Typing something like

    ping google.com
    

    will give you (among other things) that information.

    0 讨论(0)
  • 2020-12-23 23:01

    I'm keeping the following list updated for a couple of years now:

    1.0.0.0/24
    1.1.1.0/24
    1.2.3.0/24
    8.6.48.0/21
    8.8.8.0/24
    8.35.192.0/21
    8.35.200.0/21
    8.34.216.0/21
    8.34.208.0/21
    23.236.48.0/20
    23.251.128.0/19
    63.161.156.0/24
    63.166.17.128/25
    64.9.224.0/19
    64.18.0.0/20
    64.233.160.0/19
    64.233.171.0/24
    65.167.144.64/28
    65.170.13.0/28
    65.171.1.144/28
    66.102.0.0/20
    66.102.14.0/24
    66.249.64.0/19
    66.249.92.0/24
    66.249.86.0/23
    70.32.128.0/19
    72.14.192.0/18
    74.125.0.0/16
    89.207.224.0/21
    104.154.0.0/15
    104.132.0.0/14
    107.167.160.0/19
    107.178.192.0/18
    108.59.80.0/20
    108.170.192.0/18
    108.177.0.0/17
    130.211.0.0/16
    142.250.0.0/15
    144.188.128.0/24
    146.148.0.0/17
    162.216.148.0/22
    162.222.176.0/21
    172.253.0.0/16
    173.194.0.0/16
    173.255.112.0/20
    192.158.28.0/22
    193.142.125.0/28
    199.192.112.0/22
    199.223.232.0/21
    206.160.135.240/24
    207.126.144.0/20
    208.21.209.0/24
    209.85.128.0/17
    216.239.32.0/19
    
    0 讨论(0)
  • 2020-12-23 23:02
    import socket
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    server = www.google.com
    port = 80
    server_ip = socket.gethostbyname(server)
    print(str(server_ip))
    
    0 讨论(0)
提交回复
热议问题