Question

For frequent network troubleshooting purposes, do you know a publicly pingable host with an easy to remember IP address (such as 1.2.3.4)?

Was it helpful?

Solution

C:\Documents and Settings\Administrator>ping -a 4.2.2.2

Pinging vnsc-bak.sys.gtei.net [4.2.2.2] with 32 bytes of data:

Reply from 4.2.2.2: bytes=32 time=10ms TTL=246
Reply from 4.2.2.2: bytes=32 time=10ms TTL=246
Reply from 4.2.2.2: bytes=32 time=14ms TTL=246
Reply from 4.2.2.2: bytes=32 time=10ms TTL=246

Ping statistics for 4.2.2.2:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 10ms, Maximum = 14ms, Average = 11ms

OTHER TIPS

8.8.8.8 is Google's new public dns server which is easy to remember and quite likely to be up ;-)

$ ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=242 time=18.4 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=242 time=18.5 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=242 time=18.0 ms
^C
--- 8.8.8.8 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2003ms
rtt min/avg/max/mdev = 18.024/18.366/18.599/0.292 ms

$ host 8.8.8.8
8.8.8.8.in-addr.arpa domain name pointer google-public-dns-a.google.com.
4.2.2.2
4.2.2.6

208.67.222.222
208.67.220.220

add these in /etc/hosts for easy pinging :)

127.0.0.1 works every time and is very easy to remember.

Actually, I would recommend using hostnames: c:[windows directory]\system32\drivers\etc\hosts

Take any host and use hotstrings !

ip1:: 122.123.232.98

After that , when I type ip1 it wll replace it with 122.123.232.98 That way you can take any host and don't need to remember anything.

I use 4.2.2.2

If you need an HTTP response, 190.9.9.190 works

Using a script i get the following list of IP's - which are easy to remember - and have a webserver running on port 80:

this is the list (2018-jan-23)

http://23.23.23.23
http://41.41.41.41
http://80.80.80.80
http://127.127.127.127

but all these hosts dont seem the work reliable... the idea was to give endusers an easy check, if DNS is faulty.

this is the script:

#!/bin/sh
L=

for I in $(seq 1 254); do
  IP=$I.$I.$I.$I
  nc -z -v -w3 $IP 80 && wget -O - http://$IP && L="$L $IP"
  I=$(( I + 1 ))
done

echo $L

A new one with http response: 1.1.1.1 (http 302)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top