-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathaddress.go
91 lines (62 loc) · 3.36 KB
/
address.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package netemx
// DefaultClientAddress is the default client IP address.
const DefaultClientAddress = "130.192.91.211"
// ISPResolverAddress is the IP address of the client ISP resolver.
const ISPResolverAddress = "130.192.3.21"
// RootResolverAddress is the root resolver resolver IP address.
const RootResolverAddress = "193.0.14.129"
// AddressApiOONIIo is the IP address for api.ooni.io.
const AddressApiOONIIo = "162.55.247.208"
// AddressGeoIPUbuntuCom is the IP address for geoip.ubuntu.com.
const AddressGeoIPUbuntuCom = "185.125.188.132"
// AddressWwwExampleCom is the IP address for www.example.com.
const AddressWwwExampleCom = "93.184.216.34"
// AddressZeroThOONIOrg is the IP address for 0.th.ooni.org.
const AddressZeroThOONIOrg = "68.183.70.80"
// AddressOneThOONIOrg is the IP address for 1.th.ooni.org.
const AddressOneThOONIOrg = "137.184.235.44"
// AddressTwoThOONIOrg is the IP address for 2.th.ooni.org.
const AddressTwoThOONIOrg = "178.62.195.24"
// AddressThreeThOONIOrg is the IP address for 3.th.ooni.org.
const AddressThreeThOONIOrg = "209.97.183.73"
// AddressTHCloudfront is the IP address for d33d1gs9kpq1c5.cloudfront.net.
const AddressTHCloudfront = "52.85.15.84"
// AddressDNSQuad9Net9999 is the IP address for dns.quad9.net.
const AddressDNSQuad9Net9999 = "9.9.9.9"
// AddressDNSQuad9NetOther is the the other IP address for dns.quad9.net.
const AddressDNSQuad9NetOther = "149.112.112.112"
// AddressMozillaCloudflareDNSCom is the IP address for mozilla.cloudflare-dns.com.
const AddressMozillaCloudflareDNSCom = "172.64.41.4"
// AddressDNSGoogle8844 is the 8.8.4.4 address for dns.google.
const AddressDNSGoogle8844 = "8.8.4.4"
// AddressDNSGoogle8888 is the 8.8.8.8 address for dns.google.
const AddressDNSGoogle8888 = "8.8.8.8"
// AddressPublicBlockpage is the IP address we use for modeling a public IP address that is serving
// blockpages to its users. As of 2023-09-04, this is the IP address resolving for thepiratebay.com when
// you're attempting to access this website from Italy.
const AddressPublicBlockpage = "83.224.65.41"
// ISPProxyAddress is the IP address of the ISP's HTTP transparent proxy.
const ISPProxyAddress = "130.192.182.17"
// AddressBitly is the IP address of bitly.com.
const AddressBitly = "67.199.248.11"
// AddressBadSSLCom is the IP address of badssl.com.
const AddressBadSSLCom = "104.154.89.105"
// AddressYandexCom1 is the first address associated with yandex.com.
const AddressYandexCom1 = "5.255.255.80"
// AddressLargeFileCom1 is the first address associated with largefile.com.
const AddressLargeFileCom1 = "52.35.36.75"
// AddressCloudflareCache1 is the first address associated with cloudflare caches.
const AddressCloudflareCache1 = "104.16.132.229"
// AddressHTTPBinCom1 is the first address associated an httpbin.com-like
// service which our QA environment exports as httpbin.com.
const AddressHTTPBinCom1 = "172.67.144.64"
// AddressCloudflareDNSCom1111 is the 1.1.1.1 adress.
const AddressCloudflareDNSCom1111 = "1.1.1.1"
// AddressCloudflareDNSCom1001 is the 1.0.0.1 adress.
const AddressCloudflareDNSCom1001 = "1.0.0.1"
// AddressOpenDNS222 is the 208.67.222.222 opendns.com address.
const AddressOpenDNS222 = "208.67.222.222"
// AddressOpenDNS220 is the 208.67.220.220 opendns.com address.
const AddressOpenDNS220 = "208.67.220.220"
// AddressNextDNSIo is a dns.nextdns.io address.
const AddressNextDNSIo = "38.175.119.129"