What's the easiest to remember publicly pingable IP address? [closed]

你。 提交于 2019-12-22 01:27:06

问题


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)?


回答1:


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



回答2:


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.



回答3:


4.2.2.2
4.2.2.6

208.67.222.222
208.67.220.220

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




回答4:


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




回答5:


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.




回答6:


I use 4.2.2.2




回答7:


If you need an HTTP response, 190.9.9.190 works




回答8:


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



回答9:


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



来源:https://stackoverflow.com/questions/757324/whats-the-easiest-to-remember-publicly-pingable-ip-address

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!