Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Ping google.com by using IP address

host google.com

ping google.com

nslookup google.com


After these commands, I don't know how to ping the server by using IP address.
by

1 Answer

Kajalsi45d
$ nslookup www.google.com
Server: 127.0.0.53
Address: 127.0.0.53#53

Non-authoritative answer:
Name: www.google.com
Address: 74.125.68.105
Name: www.google.com
Address: 74.125.68.99
Name: www.google.com
Address: 74.125.68.103
Name: www.google.com
Address: 74.125.68.147
Name: www.google.com
Address: 74.125.68.104
Name: www.google.com
Address: 74.125.68.106


$ ping 74.125.68.105
PING 74.125.68.105 (74.125.68.105) 56(84) bytes of data.
64 bytes from 74.125.68.105: icmp_seq=1 ttl=45 time=35.7 ms
64 bytes from 74.125.68.105: icmp_seq=2 ttl=45 time=35.2 ms
64 bytes from 74.125.68.105: icmp_seq=3 ttl=45 time=35.4 ms
64 bytes from 74.125.68.105: icmp_seq=4 ttl=45 time=35.6 ms
64 bytes from 74.125.68.105: icmp_seq=5 ttl=45 time=35.9 ms
64 bytes from 74.125.68.105: icmp_seq=6 ttl=45 time=35.2 ms
64 bytes from 74.125.68.105: icmp_seq=7 ttl=45 time=36.5 ms
64 bytes from 74.125.68.105: icmp_seq=8 ttl=45 time=35.3 ms
64 bytes from 74.125.68.105: icmp_seq=9 ttl=45 time=35.4 ms
64 bytes from 74.125.68.105: icmp_seq=10 ttl=45 time=35.6 ms
^C
--- 74.125.68.105 ping statistics ---
10 packets transmitted, 10 received, 0% packet loss, time 9013ms
rtt min/avg/max/mdev = 35.216/35.620/36.554/0.419 ms


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.

Login / Signup to Answer the Question.