v. 1.0.0.0
This commit is contained in:
11
contrib/seeds/README.md
Normal file
11
contrib/seeds/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
### Seeds ###
|
||||
|
||||
Utility to generate the seeds.txt list that is compiled into the client
|
||||
(see [src/chainparamsseeds.h](/src/chainparamsseeds.h) and other utilities in [contrib/seeds](/contrib/seeds)).
|
||||
|
||||
The seeds compiled into the release are created from sipa's DNS seed data, like this:
|
||||
|
||||
curl -s http://bitcoin.sipa.be/seeds.txt > seeds_main.txt
|
||||
python makeseeds.py < seeds_main.txt > nodes_main.txt
|
||||
python generate-seeds.py . > ../../src/chainparamsseeds.h
|
||||
|
||||
138
contrib/seeds/generate-seeds.py
Normal file
138
contrib/seeds/generate-seeds.py
Normal file
@@ -0,0 +1,138 @@
|
||||
#!/usr/bin/python
|
||||
# Copyright (c) 2014 Wladimir J. van der Laan
|
||||
# Distributed under the MIT software license, see the accompanying
|
||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
'''
|
||||
Script to generate list of seed nodes for chainparams.cpp.
|
||||
|
||||
This script expects two text files in the directory that is passed as an
|
||||
argument:
|
||||
|
||||
nodes_main.txt
|
||||
nodes_test.txt
|
||||
|
||||
These files must consist of lines in the format
|
||||
|
||||
<ip>
|
||||
<ip>:<port>
|
||||
[<ipv6>]
|
||||
[<ipv6>]:<port>
|
||||
<onion>.onion
|
||||
0xDDBBCCAA (IPv4 little-endian old pnSeeds format)
|
||||
|
||||
The output will be two data structures with the peers in binary format:
|
||||
|
||||
static SeedSpec6 pnSeed6_main[]={
|
||||
...
|
||||
}
|
||||
static SeedSpec6 pnSeed6_test[]={
|
||||
...
|
||||
}
|
||||
|
||||
These should be pasted into `src/chainparamsseeds.h`.
|
||||
'''
|
||||
from __future__ import print_function, division
|
||||
from base64 import b32decode
|
||||
from binascii import a2b_hex
|
||||
import sys, os
|
||||
import re
|
||||
|
||||
# ipv4 in ipv6 prefix
|
||||
pchIPv4 = bytearray([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff])
|
||||
# tor-specific ipv6 prefix
|
||||
pchOnionCat = bytearray([0xFD,0x87,0xD8,0x7E,0xEB,0x43])
|
||||
|
||||
def name_to_ipv6(addr):
|
||||
if len(addr)>6 and addr.endswith('.onion'):
|
||||
vchAddr = b32decode(addr[0:-6], True)
|
||||
if len(vchAddr) != 16-len(pchOnionCat):
|
||||
raise ValueError('Invalid onion %s' % s)
|
||||
return pchOnionCat + vchAddr
|
||||
elif '.' in addr: # IPv4
|
||||
return pchIPv4 + bytearray((int(x) for x in addr.split('.')))
|
||||
elif ':' in addr: # IPv6
|
||||
sub = [[], []] # prefix, suffix
|
||||
x = 0
|
||||
addr = addr.split(':')
|
||||
for i,comp in enumerate(addr):
|
||||
if comp == '':
|
||||
if i == 0 or i == (len(addr)-1): # skip empty component at beginning or end
|
||||
continue
|
||||
x += 1 # :: skips to suffix
|
||||
assert(x < 2)
|
||||
else: # two bytes per component
|
||||
val = int(comp, 16)
|
||||
sub[x].append(val >> 8)
|
||||
sub[x].append(val & 0xff)
|
||||
nullbytes = 16 - len(sub[0]) - len(sub[1])
|
||||
assert((x == 0 and nullbytes == 0) or (x == 1 and nullbytes > 0))
|
||||
return bytearray(sub[0] + ([0] * nullbytes) + sub[1])
|
||||
elif addr.startswith('0x'): # IPv4-in-little-endian
|
||||
return pchIPv4 + bytearray(reversed(a2b_hex(addr[2:])))
|
||||
else:
|
||||
raise ValueError('Could not parse address %s' % addr)
|
||||
|
||||
def parse_spec(s, defaultport):
|
||||
match = re.match('\[([0-9a-fA-F:]+)\](?::([0-9]+))?$', s)
|
||||
if match: # ipv6
|
||||
host = match.group(1)
|
||||
port = match.group(2)
|
||||
elif s.count(':') > 1: # ipv6, no port
|
||||
host = s
|
||||
port = ''
|
||||
else:
|
||||
(host,_,port) = s.partition(':')
|
||||
|
||||
if not port:
|
||||
port = defaultport
|
||||
else:
|
||||
port = int(port)
|
||||
|
||||
host = name_to_ipv6(host)
|
||||
|
||||
return (host,port)
|
||||
|
||||
def process_nodes(g, f, structname, defaultport):
|
||||
g.write('static SeedSpec6 %s[] = {\n' % structname)
|
||||
first = True
|
||||
for line in f:
|
||||
comment = line.find('#')
|
||||
if comment != -1:
|
||||
line = line[0:comment]
|
||||
line = line.strip()
|
||||
if not line:
|
||||
continue
|
||||
if not first:
|
||||
g.write(',\n')
|
||||
first = False
|
||||
|
||||
(host,port) = parse_spec(line, defaultport)
|
||||
hoststr = ','.join(('0x%02x' % b) for b in host)
|
||||
g.write(' {{%s}, %i}' % (hoststr, port))
|
||||
g.write('\n};\n')
|
||||
|
||||
def main():
|
||||
if len(sys.argv)<2:
|
||||
print(('Usage: %s <path_to_nodes_txt>' % sys.argv[0]), file=sys.stderr)
|
||||
exit(1)
|
||||
g = sys.stdout
|
||||
indir = sys.argv[1]
|
||||
g.write('#ifndef NEODASH_CHAINPARAMSSEEDS_H\n')
|
||||
g.write('#define NEODASH_CHAINPARAMSSEEDS_H\n')
|
||||
g.write('/**\n')
|
||||
g.write(' * List of fixed seed nodes for the neodash network\n')
|
||||
g.write(' * AUTOGENERATED by contrib/seeds/generate-seeds.py\n')
|
||||
g.write(' *\n')
|
||||
g.write(' * Each line contains a 16-byte IPv6 address and a port.\n')
|
||||
g.write(' * IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly.\n')
|
||||
g.write(' */\n')
|
||||
with open(os.path.join(indir,'nodes_main.txt'),'r') as f:
|
||||
process_nodes(g, f, 'pnSeed6_main', 7135)
|
||||
g.write('\n')
|
||||
with open(os.path.join(indir,'nodes_test.txt'),'r') as f:
|
||||
process_nodes(g, f, 'pnSeed6_test', 17135)
|
||||
g.write('#endif // NEODASH_CHAINPARAMSSEEDS_H\n')
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
169
contrib/seeds/makeseeds.py
Normal file
169
contrib/seeds/makeseeds.py
Normal file
@@ -0,0 +1,169 @@
|
||||
#!/usr/bin/env python
|
||||
#
|
||||
# Generate seeds.txt from Pieter's DNS seeder
|
||||
#
|
||||
|
||||
NSEEDS=512
|
||||
|
||||
MAX_SEEDS_PER_ASN=2
|
||||
|
||||
MIN_BLOCKS = 400000
|
||||
|
||||
# These are hosts that have been observed to be behaving strangely (e.g.
|
||||
# aggressively connecting to every node).
|
||||
SUSPICIOUS_HOSTS = set([
|
||||
"130.211.129.106", "178.63.107.226",
|
||||
"83.81.130.26", "88.198.17.7", "148.251.238.178", "176.9.46.6",
|
||||
"54.173.72.127", "54.174.10.182", "54.183.64.54", "54.194.231.211",
|
||||
"54.66.214.167", "54.66.220.137", "54.67.33.14", "54.77.251.214",
|
||||
"54.94.195.96", "54.94.200.247"
|
||||
])
|
||||
|
||||
import re
|
||||
import sys
|
||||
import dns.resolver
|
||||
import collections
|
||||
|
||||
PATTERN_IPV4 = re.compile(r"^((\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})):(\d+)$")
|
||||
PATTERN_IPV6 = re.compile(r"^\[([0-9a-z:]+)\]:(\d+)$")
|
||||
PATTERN_ONION = re.compile(r"^([abcdefghijklmnopqrstuvwxyz234567]{16}\.onion):(\d+)$")
|
||||
PATTERN_AGENT = re.compile(r"^(\/Satoshi:0\.8\.6\/|\/Satoshi:0\.9\.(2|3|4|5)\/|\/Core:0.1(0|1|2).\d{1,2}.\d{1,2}\/)$")
|
||||
|
||||
def parseline(line):
|
||||
sline = line.split()
|
||||
if len(sline) < 11:
|
||||
return None
|
||||
m = PATTERN_IPV4.match(sline[0])
|
||||
sortkey = None
|
||||
ip = None
|
||||
if m is None:
|
||||
m = PATTERN_IPV6.match(sline[0])
|
||||
if m is None:
|
||||
m = PATTERN_ONION.match(sline[0])
|
||||
if m is None:
|
||||
return None
|
||||
else:
|
||||
net = 'onion'
|
||||
ipstr = sortkey = m.group(1)
|
||||
port = int(m.group(2))
|
||||
else:
|
||||
net = 'ipv6'
|
||||
if m.group(1) in ['::']: # Not interested in localhost
|
||||
return None
|
||||
ipstr = m.group(1)
|
||||
sortkey = ipstr # XXX parse IPv6 into number, could use name_to_ipv6 from generate-seeds
|
||||
port = int(m.group(2))
|
||||
else:
|
||||
# Do IPv4 sanity check
|
||||
ip = 0
|
||||
for i in range(0,4):
|
||||
if int(m.group(i+2)) < 0 or int(m.group(i+2)) > 255:
|
||||
return None
|
||||
ip = ip + (int(m.group(i+2)) << (8*(3-i)))
|
||||
if ip == 0:
|
||||
return None
|
||||
net = 'ipv4'
|
||||
sortkey = ip
|
||||
ipstr = m.group(1)
|
||||
port = int(m.group(6))
|
||||
# Skip bad results.
|
||||
if sline[1] == 0:
|
||||
return None
|
||||
# Extract uptime %.
|
||||
uptime30 = float(sline[7][:-1])
|
||||
# Extract Unix timestamp of last success.
|
||||
lastsuccess = int(sline[2])
|
||||
# Extract protocol version.
|
||||
version = int(sline[10])
|
||||
# Extract user agent.
|
||||
agent = sline[11][1:-1]
|
||||
# Extract service flags.
|
||||
service = int(sline[9], 16)
|
||||
# Extract blocks.
|
||||
blocks = int(sline[8])
|
||||
# Construct result.
|
||||
return {
|
||||
'net': net,
|
||||
'ip': ipstr,
|
||||
'port': port,
|
||||
'ipnum': ip,
|
||||
'uptime': uptime30,
|
||||
'lastsuccess': lastsuccess,
|
||||
'version': version,
|
||||
'agent': agent,
|
||||
'service': service,
|
||||
'blocks': blocks,
|
||||
'sortkey': sortkey,
|
||||
}
|
||||
|
||||
def filtermultiport(ips):
|
||||
'''Filter out hosts with more nodes per IP'''
|
||||
hist = collections.defaultdict(list)
|
||||
for ip in ips:
|
||||
hist[ip['sortkey']].append(ip)
|
||||
return [value[0] for (key,value) in hist.items() if len(value)==1]
|
||||
|
||||
# Based on Greg Maxwell's seed_filter.py
|
||||
def filterbyasn(ips, max_per_asn, max_total):
|
||||
# Sift out ips by type
|
||||
ips_ipv4 = [ip for ip in ips if ip['net'] == 'ipv4']
|
||||
ips_ipv6 = [ip for ip in ips if ip['net'] == 'ipv6']
|
||||
ips_onion = [ip for ip in ips if ip['net'] == 'onion']
|
||||
|
||||
# Filter IPv4 by ASN
|
||||
result = []
|
||||
asn_count = {}
|
||||
for ip in ips_ipv4:
|
||||
if len(result) == max_total:
|
||||
break
|
||||
try:
|
||||
asn = int([x.to_text() for x in dns.resolver.query('.'.join(reversed(ip['ip'].split('.'))) + '.origin.asn.cymru.com', 'TXT').response.answer][0].split('\"')[1].split(' ')[0])
|
||||
if asn not in asn_count:
|
||||
asn_count[asn] = 0
|
||||
if asn_count[asn] == max_per_asn:
|
||||
continue
|
||||
asn_count[asn] += 1
|
||||
result.append(ip)
|
||||
except:
|
||||
sys.stderr.write('ERR: Could not resolve ASN for "' + ip['ip'] + '"\n')
|
||||
|
||||
# TODO: filter IPv6 by ASN
|
||||
|
||||
# Add back non-IPv4
|
||||
result.extend(ips_ipv6)
|
||||
result.extend(ips_onion)
|
||||
return result
|
||||
|
||||
def main():
|
||||
lines = sys.stdin.readlines()
|
||||
ips = [parseline(line) for line in lines]
|
||||
|
||||
# Skip entries with valid address.
|
||||
ips = [ip for ip in ips if ip is not None]
|
||||
# Skip entries from suspicious hosts.
|
||||
ips = [ip for ip in ips if ip['ip'] not in SUSPICIOUS_HOSTS]
|
||||
# Enforce minimal number of blocks.
|
||||
ips = [ip for ip in ips if ip['blocks'] >= MIN_BLOCKS]
|
||||
# Require service bit 1.
|
||||
ips = [ip for ip in ips if (ip['service'] & 1) == 1]
|
||||
# Require at least 50% 30-day uptime.
|
||||
ips = [ip for ip in ips if ip['uptime'] > 50]
|
||||
# Require a known and recent user agent.
|
||||
ips = [ip for ip in ips if PATTERN_AGENT.match(ip['agent'])]
|
||||
# Sort by availability (and use last success as tie breaker)
|
||||
ips.sort(key=lambda x: (x['uptime'], x['lastsuccess'], x['ip']), reverse=True)
|
||||
# Filter out hosts with multiple ports, these are likely abusive
|
||||
ips = filtermultiport(ips)
|
||||
# Look up ASNs and limit results, both per ASN and globally.
|
||||
ips = filterbyasn(ips, MAX_SEEDS_PER_ASN, NSEEDS)
|
||||
# Sort the results by IP address (for deterministic output).
|
||||
ips.sort(key=lambda x: (x['net'], x['sortkey']))
|
||||
|
||||
for ip in ips:
|
||||
if ip['net'] == 'ipv6':
|
||||
print '[%s]:%i' % (ip['ip'], ip['port'])
|
||||
else:
|
||||
print '%s:%i' % (ip['ip'], ip['port'])
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
937
contrib/seeds/nodes_main.txt
Normal file
937
contrib/seeds/nodes_main.txt
Normal file
@@ -0,0 +1,937 @@
|
||||
5.2.145.201:8333
|
||||
5.22.142.214:8333
|
||||
5.53.172.197:8333
|
||||
5.189.161.164:8333
|
||||
5.230.140.166:8333
|
||||
5.231.3.130:8333
|
||||
5.255.80.103:8333
|
||||
14.202.230.49:8333
|
||||
18.85.11.130:8333
|
||||
23.91.97.25:8333
|
||||
23.94.100.122:8333
|
||||
23.95.99.132:8333
|
||||
24.115.8.206:8333
|
||||
24.127.128.191:8333
|
||||
24.154.178.25:8333
|
||||
24.207.103.43:8333
|
||||
24.207.104.105:8333
|
||||
24.210.230.150:8333
|
||||
24.224.18.84:8333
|
||||
24.246.168.106:8333
|
||||
27.254.64.47:8333
|
||||
31.6.71.123:8333
|
||||
31.6.71.124:8333
|
||||
31.14.134.13:8333
|
||||
31.30.36.220:8333
|
||||
31.164.6.104:8333
|
||||
31.170.106.203:8333
|
||||
31.185.134.201:8333
|
||||
31.204.128.99:8333
|
||||
31.204.128.219:8333
|
||||
37.1.219.88:8333
|
||||
37.97.132.109:8333
|
||||
37.120.160.55:8333
|
||||
37.120.169.123:8333
|
||||
37.139.32.46:8333
|
||||
37.221.163.218:8333
|
||||
38.130.192.72:8333
|
||||
41.75.96.80:8333
|
||||
45.3.0.49:8333
|
||||
45.33.72.185:8333
|
||||
45.33.96.129:8333
|
||||
45.56.4.63:8333
|
||||
45.79.0.127:8333
|
||||
45.79.80.102:8333
|
||||
45.79.97.30:8333
|
||||
45.79.132.219:8333
|
||||
46.21.97.135:8333
|
||||
46.28.205.67:8333
|
||||
46.28.206.188:8333
|
||||
46.29.20.209:8333
|
||||
46.50.234.179:8333
|
||||
46.101.160.168:8333
|
||||
46.166.161.35:8333
|
||||
46.166.161.103:8333
|
||||
46.182.132.100:8333
|
||||
46.218.227.92:8333
|
||||
46.226.109.20:8333
|
||||
46.227.66.132:8333
|
||||
46.227.66.138:8333
|
||||
46.229.165.154:8333
|
||||
46.229.165.155:8333
|
||||
46.229.238.187:8333
|
||||
46.234.104.48:8333
|
||||
46.239.107.74:8333
|
||||
46.244.0.138:8333
|
||||
46.254.72.195:8333
|
||||
50.5.13.44:8333
|
||||
50.7.37.114:8333
|
||||
50.30.37.103:8333
|
||||
50.39.105.60:8333
|
||||
50.106.40.231:8333
|
||||
52.29.0.37:8333
|
||||
52.76.192.246:8333
|
||||
54.152.192.179:8333
|
||||
54.169.64.174:8333
|
||||
54.175.160.22:8333
|
||||
54.199.128.0:8333
|
||||
58.96.171.129:8333
|
||||
58.161.238.57:8333
|
||||
60.251.195.221:8333
|
||||
61.35.225.19:8333
|
||||
62.43.130.178:8333
|
||||
62.65.39.12:8333
|
||||
62.107.200.30:8333
|
||||
62.133.194.2:8333
|
||||
62.181.238.186:8333
|
||||
62.183.22.50:8333
|
||||
62.210.85.120:8333
|
||||
62.210.162.89:8333
|
||||
62.238.34.125:8333
|
||||
64.25.171.73:8333
|
||||
64.27.166.30:8333
|
||||
64.53.137.101:8333
|
||||
64.71.72.44:8333
|
||||
64.83.225.146:8333
|
||||
64.121.3.163:8333
|
||||
64.203.102.86:8333
|
||||
65.94.131.59:8333
|
||||
65.188.136.233:8333
|
||||
66.11.162.218:8333
|
||||
66.23.228.133:8333
|
||||
66.90.137.89:8333
|
||||
66.114.33.49:8333
|
||||
66.150.105.77:8333
|
||||
66.172.10.4:8333
|
||||
66.194.38.250:8333
|
||||
66.194.38.253:8333
|
||||
66.194.38.254:8333
|
||||
66.231.97.172:8333
|
||||
66.240.237.155:8333
|
||||
67.159.13.34:8333
|
||||
67.205.74.206:8333
|
||||
67.221.193.55:8333
|
||||
67.227.72.17:8333
|
||||
68.65.120.53:8333
|
||||
68.65.205.226:9000
|
||||
68.144.4.34:8333
|
||||
69.39.49.199:8333
|
||||
69.50.171.205:8333
|
||||
69.65.41.21:8333
|
||||
69.113.98.61:8333
|
||||
69.119.97.39:8333
|
||||
69.146.70.124:8333
|
||||
69.193.71.2:8333
|
||||
70.46.10.237:8333
|
||||
70.80.200.187:8333
|
||||
70.185.97.117:8333
|
||||
71.254.160.25:8333
|
||||
72.28.203.5:8333
|
||||
72.52.130.110:8333
|
||||
72.83.194.122:8333
|
||||
72.128.32.167:8333
|
||||
72.179.136.80:8333
|
||||
72.235.38.70:8333
|
||||
74.50.44.193:8333
|
||||
74.72.60.83:8333
|
||||
74.80.234.116:8333
|
||||
74.207.233.193:8333
|
||||
75.112.233.128:8333
|
||||
75.118.166.197:8333
|
||||
75.140.0.241:8333
|
||||
75.159.240.66:8333
|
||||
75.174.5.26:8333
|
||||
76.72.160.252:8333
|
||||
76.72.160.254:8333
|
||||
76.74.170.112:8333
|
||||
76.79.201.54:8333
|
||||
76.175.166.164:8333
|
||||
76.179.105.27:8333
|
||||
77.68.37.200:8333
|
||||
77.234.49.196:8333
|
||||
77.247.229.93:8333
|
||||
78.24.72.78:8333
|
||||
78.47.32.147:8333
|
||||
78.84.100.95:8333
|
||||
78.121.69.23:8333
|
||||
78.129.167.5:8333
|
||||
78.193.96.155:8333
|
||||
79.19.37.179:8333
|
||||
79.132.230.144:8333
|
||||
79.133.43.63:8333
|
||||
79.134.201.66:8333
|
||||
79.169.35.235:8333
|
||||
80.57.227.14:8333
|
||||
80.64.65.87:8333
|
||||
80.86.92.70:8333
|
||||
80.100.203.151:8333
|
||||
80.101.32.121:8333
|
||||
80.161.178.73:8333
|
||||
80.240.129.170:8333
|
||||
81.7.11.50:8333
|
||||
81.7.11.55:8333
|
||||
81.17.17.40:9333
|
||||
81.30.39.83:8333
|
||||
81.90.36.7:9444
|
||||
81.136.224.77:8333
|
||||
81.162.231.211:8333
|
||||
81.184.0.143:8333
|
||||
81.198.128.86:8333
|
||||
82.11.33.229:8333
|
||||
82.79.128.134:8333
|
||||
82.118.233.111:8333
|
||||
82.135.139.30:8333
|
||||
82.199.102.10:8333
|
||||
82.221.106.17:8333
|
||||
82.221.108.21:8333
|
||||
82.221.108.27:8333
|
||||
83.137.41.3:8333
|
||||
83.142.197.168:8333
|
||||
83.143.130.19:8333
|
||||
83.150.9.196:8333
|
||||
83.183.17.191:8333
|
||||
83.227.173.83:8333
|
||||
83.230.5.15:8333
|
||||
83.233.105.151:443
|
||||
83.246.75.8:8333
|
||||
83.250.133.158:8333
|
||||
83.255.66.118:8334
|
||||
84.24.69.59:8333
|
||||
84.42.193.6:8333
|
||||
84.45.98.87:8333
|
||||
84.54.128.11:8333
|
||||
84.212.200.24:8333
|
||||
84.215.198.109:8333
|
||||
84.230.4.177:8333
|
||||
85.95.228.83:8333
|
||||
85.95.228.123:8333
|
||||
85.114.128.134:8333
|
||||
85.214.66.168:8333
|
||||
85.214.147.162:8333
|
||||
85.243.168.4:8333
|
||||
86.1.0.18:8333
|
||||
87.79.77.106:8333
|
||||
87.91.156.110:8333
|
||||
87.236.196.222:8333
|
||||
88.85.75.152:8333
|
||||
88.87.1.230:8333
|
||||
88.87.92.102:8333
|
||||
88.89.69.202:8333
|
||||
88.97.72.229:8333
|
||||
88.164.117.99:8333
|
||||
88.198.32.131:8333
|
||||
88.202.230.87:8333
|
||||
88.214.193.154:8343
|
||||
88.214.194.226:8343
|
||||
89.10.155.88:8333
|
||||
89.46.101.44:8333
|
||||
89.163.224.212:8333
|
||||
89.174.248.20:8333
|
||||
89.202.231.198:8333
|
||||
89.212.75.6:8333
|
||||
90.149.38.172:8333
|
||||
90.169.106.139:8333
|
||||
91.64.101.150:8333
|
||||
91.65.196.179:8333
|
||||
91.121.80.17:8333
|
||||
91.126.77.77:8333
|
||||
91.145.76.156:8333
|
||||
91.152.150.35:8333
|
||||
91.192.137.17:8333
|
||||
91.196.170.110:8333
|
||||
91.197.44.133:8333
|
||||
91.207.68.144:8333
|
||||
91.210.105.28:8333
|
||||
91.211.102.101:8333
|
||||
91.211.106.34:8333
|
||||
91.214.200.205:8333
|
||||
91.220.43.146:8333
|
||||
91.222.71.89:8333
|
||||
91.224.140.242:8333
|
||||
91.229.76.14:8333
|
||||
92.27.7.209:8333
|
||||
92.51.167.88:8333
|
||||
92.247.229.163:8333
|
||||
93.84.114.106:8333
|
||||
93.113.36.172:8333
|
||||
93.188.224.253:8333
|
||||
94.75.239.69:8333
|
||||
94.190.227.112:8333
|
||||
94.214.2.74:8333
|
||||
94.224.162.65:8333
|
||||
94.236.198.253:8333
|
||||
94.242.229.158:8333
|
||||
95.84.138.99:8333
|
||||
95.95.168.87:8333
|
||||
95.110.234.93:8333
|
||||
95.130.9.200:8333
|
||||
95.165.168.168:8333
|
||||
95.170.235.254:8333
|
||||
95.211.130.154:8333
|
||||
96.46.68.104:8333
|
||||
96.127.202.148:8333
|
||||
97.76.171.35:8333
|
||||
98.160.160.67:8333
|
||||
99.126.197.187:8333
|
||||
99.198.173.1:8333
|
||||
101.100.174.138:8333
|
||||
101.164.201.208:8333
|
||||
103.224.165.48:8333
|
||||
104.128.225.223:8333
|
||||
104.128.228.252:8333
|
||||
104.131.192.94:8333
|
||||
104.155.45.201:8334
|
||||
104.194.28.195:8663
|
||||
104.211.1.27:8333
|
||||
104.221.38.177:8333
|
||||
104.236.9.79:8333
|
||||
104.236.129.178:8333
|
||||
104.236.186.249:8333
|
||||
104.236.194.15:8333
|
||||
104.238.128.214:8333
|
||||
104.238.130.182:8333
|
||||
106.38.234.84:8333
|
||||
106.185.36.204:8333
|
||||
106.185.38.67:8333
|
||||
107.6.4.145:8333
|
||||
107.150.2.6:8333
|
||||
107.150.40.234:8333
|
||||
107.170.13.184:8333
|
||||
107.181.250.216:8333
|
||||
107.191.101.111:8333
|
||||
107.191.106.115:8333
|
||||
108.59.12.163:8333
|
||||
108.161.129.247:8333
|
||||
109.193.160.140:8333
|
||||
109.197.13.54:8333
|
||||
109.230.7.248:8333
|
||||
109.234.106.191:8333
|
||||
109.236.137.80:8333
|
||||
109.251.161.121:8333
|
||||
112.65.231.226:8333
|
||||
115.70.166.57:8333
|
||||
115.159.42.80:8333
|
||||
117.18.73.34:8333
|
||||
118.67.201.40:8333
|
||||
118.100.86.246:8333
|
||||
118.110.104.152:8333
|
||||
119.224.64.141:8333
|
||||
120.55.193.136:8333
|
||||
122.106.169.178:8333
|
||||
123.203.174.15:8333
|
||||
123.255.232.94:8333
|
||||
124.148.165.165:8333
|
||||
124.232.141.31:8333
|
||||
128.30.92.69:8333
|
||||
128.39.141.182:8333
|
||||
128.84.167.20:8333
|
||||
128.111.73.10:8333
|
||||
128.127.38.195:8333
|
||||
128.140.224.162:8333
|
||||
128.199.101.104:8333
|
||||
128.233.224.35:8333
|
||||
128.253.3.193:20020
|
||||
130.180.228.138:8333
|
||||
130.185.144.213:8333
|
||||
130.255.73.207:8333
|
||||
133.218.233.11:8333
|
||||
134.249.128.23:8333
|
||||
136.159.234.234:8333
|
||||
137.116.160.176:8333
|
||||
139.162.2.145:8333
|
||||
139.162.23.117:8333
|
||||
141.134.69.253:8333
|
||||
141.255.162.215:8333
|
||||
144.122.163.187:8333
|
||||
145.131.3.54:8333
|
||||
145.255.4.94:8333
|
||||
146.0.32.101:8337
|
||||
147.83.72.91:8333
|
||||
148.103.28.68:8333
|
||||
149.5.32.102:8333
|
||||
149.210.164.195:8333
|
||||
150.101.163.241:8333
|
||||
151.236.11.189:8333
|
||||
152.3.136.56:8333
|
||||
154.20.208.25:8333
|
||||
158.181.104.149:8333
|
||||
159.253.96.226:8333
|
||||
160.36.130.180:8333
|
||||
162.209.1.233:8333
|
||||
162.209.4.125:8333
|
||||
162.209.106.123:8333
|
||||
162.210.198.184:8333
|
||||
162.248.99.164:53011
|
||||
162.248.102.117:8333
|
||||
162.251.108.53:8333
|
||||
163.44.2.48:8333
|
||||
163.158.36.17:8333
|
||||
166.230.71.67:8333
|
||||
167.160.36.62:8333
|
||||
167.160.169.92:8333
|
||||
168.93.129.220:8333
|
||||
169.55.99.84:8333
|
||||
169.228.66.43:8333
|
||||
172.9.169.242:8333
|
||||
173.32.11.194:8333
|
||||
173.230.228.136:8333
|
||||
173.246.107.34:8333
|
||||
173.254.235.34:8333
|
||||
174.0.128.222:8333
|
||||
174.25.130.148:8333
|
||||
174.50.64.101:8333
|
||||
175.140.232.141:8333
|
||||
176.36.37.62:8333
|
||||
176.46.9.96:8333
|
||||
176.124.110.27:8333
|
||||
177.39.16.102:8333
|
||||
178.17.173.2:8333
|
||||
178.62.5.248:8333
|
||||
178.62.70.16:8333
|
||||
178.62.203.185:8333
|
||||
178.79.160.118:8333
|
||||
178.169.206.244:8333
|
||||
178.193.234.62:8333
|
||||
178.199.96.108:8333
|
||||
178.254.18.96:8333
|
||||
178.254.34.161:8333
|
||||
178.255.41.123:8333
|
||||
180.210.34.58:9801
|
||||
182.92.226.212:8333
|
||||
182.171.246.142:8333
|
||||
184.23.8.9:8333
|
||||
184.58.162.35:8333
|
||||
184.154.9.170:8333
|
||||
185.8.238.165:8333
|
||||
185.24.97.11:8333
|
||||
185.31.137.139:8333
|
||||
185.38.44.64:8333
|
||||
185.53.128.180:8333
|
||||
185.53.129.244:8333
|
||||
185.77.129.119:8333
|
||||
185.77.129.156:8333
|
||||
185.82.203.92:8333
|
||||
188.20.97.18:8333
|
||||
188.126.8.14:8333
|
||||
188.138.33.239:8333
|
||||
188.155.136.70:8333
|
||||
188.166.229.112:8333
|
||||
188.182.108.129:8333
|
||||
188.226.225.174:8010
|
||||
188.242.171.8:8333
|
||||
188.243.4.139:8333
|
||||
190.10.9.234:8333
|
||||
190.10.10.147:8333
|
||||
190.81.160.184:8333
|
||||
190.85.201.37:8333
|
||||
192.34.227.230:8333
|
||||
192.77.189.200:8333
|
||||
192.124.224.7:8333
|
||||
192.146.137.1:8333
|
||||
192.203.228.71:8333
|
||||
192.206.202.20:8333
|
||||
193.0.109.3:8333
|
||||
193.41.229.130:8333
|
||||
193.41.229.156:8333
|
||||
193.49.43.219:8333
|
||||
193.147.71.120:8333
|
||||
193.179.65.233:8333
|
||||
193.183.99.46:8333
|
||||
193.192.37.135:8333
|
||||
193.234.224.195:8333
|
||||
194.58.108.213:8333
|
||||
194.187.96.2:8333
|
||||
194.255.31.59:8333
|
||||
195.36.6.101:8333
|
||||
195.58.238.243:8333
|
||||
195.197.175.190:8333
|
||||
195.239.1.66:8333
|
||||
198.48.196.230:8333
|
||||
198.50.192.160:8333
|
||||
198.57.210.27:8333
|
||||
198.84.195.179:8333
|
||||
198.167.140.8:8333
|
||||
198.204.224.106:8333
|
||||
199.127.226.245:8333
|
||||
199.201.110.8:8333
|
||||
199.233.234.90:8333
|
||||
200.116.98.185:8333
|
||||
202.60.70.18:8333
|
||||
203.151.140.14:8333
|
||||
204.112.203.52:8333
|
||||
205.200.247.149:8333
|
||||
207.226.141.253:8333
|
||||
207.255.42.202:8333
|
||||
208.53.164.19:8333
|
||||
208.66.68.127:8333
|
||||
208.66.68.130:8333
|
||||
208.71.171.232:8341
|
||||
208.76.200.200:8333
|
||||
208.82.98.189:8333
|
||||
208.85.193.31:8333
|
||||
208.111.48.41:8333
|
||||
208.111.48.45:8333
|
||||
209.34.232.72:8333
|
||||
209.81.9.223:8333
|
||||
209.90.224.2:8333
|
||||
209.90.224.4:8333
|
||||
209.126.98.174:8333
|
||||
209.136.72.69:8333
|
||||
209.195.4.74:8333
|
||||
209.197.13.62:8333
|
||||
211.72.227.8:8333
|
||||
212.51.144.42:8333
|
||||
212.71.233.127:8333
|
||||
212.126.14.122:8333
|
||||
212.159.44.50:8333
|
||||
213.5.36.58:8333
|
||||
213.57.33.10:8333
|
||||
213.66.205.194:8333
|
||||
213.136.73.125:8333
|
||||
213.155.3.216:8333
|
||||
213.155.7.24:8333
|
||||
213.167.17.6:8333
|
||||
213.223.138.13:8333
|
||||
216.15.78.182:8333
|
||||
216.38.129.164:8333
|
||||
216.48.168.8:8333
|
||||
216.169.141.169:8333
|
||||
216.245.206.181:8333
|
||||
216.249.204.161:8333
|
||||
216.250.138.230:8333
|
||||
217.11.225.189:8333
|
||||
217.12.34.158:8333
|
||||
217.12.202.33:8333
|
||||
217.20.171.43:8333
|
||||
217.23.1.126:8333
|
||||
217.23.11.138:8333
|
||||
217.111.66.79:8333
|
||||
217.155.202.191:8333
|
||||
217.158.9.102:8333
|
||||
217.172.32.18:20993
|
||||
220.245.196.37:8333
|
||||
[2001:1291:2bf:1::100]:8333
|
||||
[2001:1620:f00:282::2]:8333
|
||||
[2001:1620:f00:8282::1]:8333
|
||||
[2001:19f0:5000:8de8:5400:ff:fe12:55e4]:8333
|
||||
[2001:19f0:6c00:9103:5400:ff:fe10:a8d3]:8333
|
||||
[2001:1b60:3:172:142b:6dff:fe7a:117]:8333
|
||||
[2001:410:a000:4050:8463:90b0:fffb:4e58]:8333
|
||||
[2001:4128:6135:2010:21e:bff:fee8:a3c0]:8333
|
||||
[2001:41d0:1008:761::17c]:8333
|
||||
[2001:41d0:1:45d8::1]:8333
|
||||
[2001:41d0:1:6cd3::]:8333
|
||||
[2001:41d0:1:8b26::1]:8333
|
||||
[2001:41d0:1:afda::]:8200
|
||||
[2001:41d0:1:b26b::1]:8333
|
||||
[2001:41d0:1:c139::1]:8333
|
||||
[2001:41d0:1:c8d7::1]:8333
|
||||
[2001:41d0:1:f59f::33]:8333
|
||||
[2001:41d0:1:f7cc::1]:8333
|
||||
[2001:41d0:2:1021::1]:8333
|
||||
[2001:41d0:2:37c3::]:8200
|
||||
[2001:41d0:2:4797:2323:2323:2323:2323]:8333
|
||||
[2001:41d0:2:53df::]:8333
|
||||
[2001:41d0:2:9c94::1]:8333
|
||||
[2001:41d0:2:9d3e::1]:8333
|
||||
[2001:41d0:2:a24f::]:8333
|
||||
[2001:41d0:2:a35a::]:8333
|
||||
[2001:41d0:2:b2b8::]:8333
|
||||
[2001:41d0:2:c1d9::]:8333
|
||||
[2001:41d0:2:c6e::]:8333
|
||||
[2001:41d0:2:c9bf::]:8333
|
||||
[2001:41d0:2:f1a5::]:8333
|
||||
[2001:41d0:52:a00::105f]:8333
|
||||
[2001:41d0:52:cff::6f5]:8333
|
||||
[2001:41d0:52:d00::6e2]:8333
|
||||
[2001:41d0:8:3e75::1]:8333
|
||||
[2001:41d0:8:62ab::1]:8333
|
||||
[2001:41d0:8:6728::]:8333
|
||||
[2001:41d0:8:b30a::1]:8333
|
||||
[2001:41d0:8:bc26::1]:8333
|
||||
[2001:41d0:8:be9a::1]:8333
|
||||
[2001:41d0:8:d984::]:8333
|
||||
[2001:41d0:8:eb8b::]:8333
|
||||
[2001:41d0:a:13a2::1]:8333
|
||||
[2001:41d0:a:2b18::1]:8333
|
||||
[2001:41d0:a:2d14::]:8333
|
||||
[2001:41d0:a:4558::1df2:76d3]:8333
|
||||
[2001:41d0:a:4aaa::]:8333
|
||||
[2001:41d0:a:635b::1]:8333
|
||||
[2001:41d0:a:63d8::1]:8333
|
||||
[2001:41d0:a:6c29::1]:8333
|
||||
[2001:41d0:a:f9cd::1]:8333
|
||||
[2001:41d0:d:20a4::]:8333
|
||||
[2001:41d0:e:26b::1]:8333
|
||||
[2001:41d0:fc8c:a200:7a24:afff:fe9d:c69b]:8333
|
||||
[2001:41f0:61::7]:8333
|
||||
[2001:41f0::2]:8333
|
||||
[2001:44b8:41bd:6101:148e:4022:4950:e861]:8333
|
||||
[2001:470:1:2f9:0:1:107a:a301]:8333
|
||||
[2001:470:1f0b:ad6::2]:8333
|
||||
[2001:470:1f11:12d5::ae1:5611]:8333
|
||||
[2001:470:1f14:7d::2]:8333
|
||||
[2001:470:27:ce::2]:8333
|
||||
[2001:470:41:6::2]:8333
|
||||
[2001:470:507d:0:6ab5:99ff:fe73:ac18]:8333
|
||||
[2001:470:583e::2a]:8333
|
||||
[2001:470:5f:5f::232]:8333
|
||||
[2001:470:66:119::2]:8333
|
||||
[2001:470:6c4f::cafe]:8333
|
||||
[2001:470:6f:327:913b:7fe:8545:a4f5]:8333
|
||||
[2001:470:7dda:1::1]:8333
|
||||
[2001:470:95c1::2]:8333
|
||||
[2001:470:b1d0:ffff::1000]:8333
|
||||
[2001:470:d00d:0:3664:a9ff:fe9a:5150]:8333
|
||||
[2001:470:fab7:1::1]:8333
|
||||
[2001:4800:7819:104:be76:4eff:fe05:c828]:8333
|
||||
[2001:4800:7819:104:be76:4eff:fe05:c9a0]:8333
|
||||
[2001:4801:7819:74:b745:b9d5:ff10:a61a]:8333
|
||||
[2001:4801:7819:74:b745:b9d5:ff10:aaec]:8333
|
||||
[2001:4801:7828:104:be76:4eff:fe10:1325]:8333
|
||||
[2001:4802:7800:1:be76:4eff:fe20:f023]:8333
|
||||
[2001:4802:7800:2:30d7:1775:ff20:1858]:8333
|
||||
[2001:4802:7800:2:be76:4eff:fe20:6c26]:8333
|
||||
[2001:4802:7802:101:be76:4eff:fe20:256]:8333
|
||||
[2001:4802:7802:103:be76:4eff:fe20:2de8]:8333
|
||||
[2001:4830:1100:2e8::2]:8333
|
||||
[2001:4b98:dc2:41:216:3eff:fe56:f659]:8333
|
||||
[2001:4ba0:fffa:5d::93]:8333
|
||||
[2001:4ba0:ffff:1be:1:1005:0:1]:8333
|
||||
[2001:4dd0:ff00:867f::3]:8333
|
||||
[2001:4dd0:ff00:9a67::9]:8333
|
||||
[2001:5c0:1400:b::3cc7]:8333
|
||||
[2001:610:1b19::3]:8333
|
||||
[2001:610:600:a41::2]:8333
|
||||
[2001:67c:26b4::]:8333
|
||||
[2001:8d8:840:500::39:1ae]:8333
|
||||
[2001:8d8:965:4a00::10:9343]:8333
|
||||
[2001:980:4650:1:2e0:53ff:fe13:2449]:8333
|
||||
[2001:981:46:1:ba27:ebff:fe5b:edee]:8333
|
||||
[2001:9c8:53e9:369a:226:2dff:fe1b:7472]:8333
|
||||
[2001:9d8:cafe:3::87]:8333
|
||||
[2001:b10:11:21:3e07:54ff:fe48:7248]:8333
|
||||
[2001:ba8:1f1:f34c::2]:8333
|
||||
[2001:bc8:2310:100::1]:8333
|
||||
[2001:bc8:3427:101:7a4f:8be:2611:6e79]:8333
|
||||
[2001:bc8:3505:200::1]:8333
|
||||
[2001:cc0:a004::30:1d]:8333
|
||||
[2001:e42:102:1209:153:121:76:171]:8333
|
||||
[2002:17ea:14eb::17ea:14eb]:8333
|
||||
[2002:2f8:2bc5::2f8:2bc5]:8333
|
||||
[2002:4047:482c::4047:482c]:8333
|
||||
[2002:45c3:8cca::45c3:8cca]:8333
|
||||
[2002:46bb:8a41:0:226:b0ff:feed:5f12]:8888
|
||||
[2002:46bb:8c3c:0:8d55:8fbb:15fa:f4e0]:8765
|
||||
[2002:4c48:a0fe::4c48:a0fe]:8333
|
||||
[2002:4d44:25c8::4d44:25c8]:8333
|
||||
[2002:505f:aaa2::505f:aaa2]:8333
|
||||
[2002:5bc1:799d::5bc1:799d]:8333
|
||||
[2002:6dec:5472::6dec:5472]:8333
|
||||
[2002:8c6d:6521:9617:12bf:48ff:fed8:1724]:8333
|
||||
[2002:ac52:94e2::ac52:94e2]:8333
|
||||
[2002:af7e:3eca::af7e:3eca]:8333
|
||||
[2002:b009:20c5::b009:20c5]:8333
|
||||
[2002:c06f:39a0::c06f:39a0]:8333
|
||||
[2002:c23a:738a::c23a:738a]:8333
|
||||
[2002:c70f:7442::c70f:7442]:8333
|
||||
[2002:cec5:be4f::cec5:be4f]:8333
|
||||
[2002:d149:9e3a::d149:9e3a]:8333
|
||||
[2002:d917:ca5::d917:ca5]:8333
|
||||
[2400:8900::f03c:91ff:fe50:153f]:8333
|
||||
[2400:8900::f03c:91ff:fe6e:823e]:8333
|
||||
[2400:8900::f03c:91ff:fea8:1934]:8333
|
||||
[2400:8901::f03c:91ff:fe26:c4d6]:8333
|
||||
[2400:8901::f03c:91ff:fec8:4280]:8333
|
||||
[2400:8901::f03c:91ff:fec8:660f]:8333
|
||||
[2401:1800:7800:102:be76:4eff:fe1c:559]:8333
|
||||
[2401:1800:7800:102:be76:4eff:fe1c:a7d]:8333
|
||||
[2405:aa00:2::40]:8333
|
||||
[2600:3c00::f03c:91ff:fe18:59b2]:8333
|
||||
[2600:3c00::f03c:91ff:fe26:bfb6]:8333
|
||||
[2600:3c00::f03c:91ff:fe33:88e3]:8333
|
||||
[2600:3c00::f03c:91ff:fe6e:7297]:8333
|
||||
[2600:3c00::f03c:91ff:fe84:8a6e]:8333
|
||||
[2600:3c01::f03c:91ff:fe18:6adf]:8333
|
||||
[2600:3c01::f03c:91ff:fe26:c4b8]:8333
|
||||
[2600:3c01::f03c:91ff:fe3b:1f76]:8333
|
||||
[2600:3c01::f03c:91ff:fe50:5e06]:8333
|
||||
[2600:3c01::f03c:91ff:fe61:289b]:8333
|
||||
[2600:3c01::f03c:91ff:fe69:89e9]:8333
|
||||
[2600:3c01::f03c:91ff:fe84:ac15]:8333
|
||||
[2600:3c01::f03c:91ff:fe98:68bb]:8333
|
||||
[2600:3c02::f03c:91ff:fe26:713]:8333
|
||||
[2600:3c02::f03c:91ff:fe26:c49e]:8333
|
||||
[2600:3c02::f03c:91ff:fe84:97d8]:8333
|
||||
[2600:3c02::f03c:91ff:fec8:8feb]:8333
|
||||
[2600:3c03::f03c:91ff:fe18:da80]:8333
|
||||
[2600:3c03::f03c:91ff:fe26:c49b]:8333
|
||||
[2600:3c03::f03c:91ff:fe50:5fa7]:8333
|
||||
[2600:3c03::f03c:91ff:fe67:d2e]:8333
|
||||
[2600:3c03::f03c:91ff:fe6e:1803]:8333
|
||||
[2600:3c03::f03c:91ff:fec8:4bbe]:8333
|
||||
[2600:3c03::f03c:91ff:fee4:4e16]:8333
|
||||
[2601:18d:8300:58a6::2e4]:8333
|
||||
[2601:240:4600:40c0:250:56ff:fea4:6305]:8333
|
||||
[2601:581:c200:a719:542c:9cd5:4852:f7d9]:8333
|
||||
[2601:647:4900:85f1:ca2a:14ff:fe51:bb35]:8333
|
||||
[2601:c2:c002:b300:54a0:15b5:19f7:530d]:8333
|
||||
[2602:306:ccff:ad7f:b116:52be:64ba:db3a]:8333
|
||||
[2602:ae:1982:9400:846:f78c:fec:4d57]:8333
|
||||
[2602:ffc5:1f::1f:2d61]:8333
|
||||
[2602:ffc5:1f::1f:9211]:8333
|
||||
[2602:ffc5::75d5:c1c3]:8333
|
||||
[2602:ffc5::ffc5:b844]:8333
|
||||
[2602:ffe8:100:2::457:936b]:8333
|
||||
[2602:ffe8:100:2::9d20:2e3c]:8333
|
||||
[2602:ffea:1001:72b::578b]:8333
|
||||
[2602:ffea:a::24c4:d9fd]:8333
|
||||
[2604:0:c1:100:1ec1:deff:fe54:2235]:8333
|
||||
[2604:180:1:1af::42a9]:8333
|
||||
[2604:180:3:702::c9de]:8333
|
||||
[2604:4080:1114:0:3285:a9ff:fe93:850c]:8333
|
||||
[2604:6000:ffc0:3c:64a3:94d0:4f1d:1da8]:8333
|
||||
[2605:6000:f380:9a01:ba09:8aff:fed4:3511]:8333
|
||||
[2605:6001:e00f:7b00:c587:6d91:6eff:eeba]:8333
|
||||
[2605:f700:c0:1::25c3:2a3e]:8333
|
||||
[2606:6000:a441:9903:5054:ff:fe78:66ff]:8333
|
||||
[2607:5300:100:200::1c83]:9334
|
||||
[2607:5300:10::a1]:8333
|
||||
[2607:5300:60:1c2f::1]:8333
|
||||
[2607:5300:60:2b90::1]:8333
|
||||
[2607:5300:60:3320::1]:8333
|
||||
[2607:5300:60:385::1]:8333
|
||||
[2607:5300:60:4a85::]:8333
|
||||
[2607:5300:60:65e4::]:8333
|
||||
[2607:5300:60:6918::]:8333
|
||||
[2607:5300:60:711a:78::a7b5]:8333
|
||||
[2607:5300:60:714::1]:8333
|
||||
[2607:5300:60:870::1]:8333
|
||||
[2607:5300:60:952e:3733::1414]:8333
|
||||
[2607:f1c0:848:1000::48:943c]:8333
|
||||
[2607:f2e0:f:5df::2]:8333
|
||||
[2607:f748:1200:f8:21e:67ff:fe99:8f07]:8333
|
||||
[2607:f948:0:1::7]:8333
|
||||
[2607:ff68:100:36::131]:8333
|
||||
[2803:6900:1::117]:8333
|
||||
[2a00:1098:0:80:1000:25:0:1]:8333
|
||||
[2a00:1178:2:43:5054:ff:fe84:f86f]:8333
|
||||
[2a00:1178:2:43:5054:ff:fee7:2eb6]:8333
|
||||
[2a00:1178:2:43:8983:cc27:d72:d97a]:8333
|
||||
[2a00:1328:e100:cc42:230:48ff:fe92:55c]:8333
|
||||
[2a00:14f0:e000:80d2:cd1a::1]:8333
|
||||
[2a00:1630:2:1802:188:122:91:11]:8333
|
||||
[2a00:18e0:0:1800::1]:8333
|
||||
[2a00:18e0:0:dcc5:109:234:106:191]:8333
|
||||
[2a00:1a28:1157:87::94c7]:8333
|
||||
[2a00:1ca8:37::a5fc:40d1]:8333
|
||||
[2a00:1ca8:37::ab6d:ce2c]:8333
|
||||
[2a00:7143:100:0:216:3eff:fe2e:74a3]:8333
|
||||
[2a00:7143:100:0:216:3eff:fed3:5c21]:8333
|
||||
[2a00:7c80:0:45::123]:8333
|
||||
[2a00:dcc0:eda:98:183:193:c382:6bdb]:8333
|
||||
[2a00:dcc0:eda:98:183:193:f72e:d943]:8333
|
||||
[2a00:f820:17::4af:1]:8333
|
||||
[2a00:f940:2:1:2::101d]:8333
|
||||
[2a00:f940:2:1:2::6ac]:8333
|
||||
[2a01:1b0:7999:402::131]:8333
|
||||
[2a01:238:42dd:f900:7a6c:2bc6:4041:c43]:8333
|
||||
[2a01:238:4313:6300:2189:1c97:696b:5ea]:8333
|
||||
[2a01:488:66:1000:5c33:91f9:0:1]:8333
|
||||
[2a01:488:66:1000:b01c:178d:0:1]:8333
|
||||
[2a01:4f8:100:34ce::2]:8333
|
||||
[2a01:4f8:100:34e4::2]:8333
|
||||
[2a01:4f8:100:44e7::2]:8333
|
||||
[2a01:4f8:100:510e::2]:8333
|
||||
[2a01:4f8:100:5128::2]:8333
|
||||
[2a01:4f8:110:5105::2]:8333
|
||||
[2a01:4f8:110:516c::2]:8333
|
||||
[2a01:4f8:120:43e4::2]:8333
|
||||
[2a01:4f8:120:62e6::2]:8333
|
||||
[2a01:4f8:120:702e::2]:8333
|
||||
[2a01:4f8:120:8203::2]:8333
|
||||
[2a01:4f8:121:234d::2]:8333
|
||||
[2a01:4f8:121:261::2]:8333
|
||||
[2a01:4f8:130:11ea::2]:8333
|
||||
[2a01:4f8:130:3332::2]:8333
|
||||
[2a01:4f8:130:40ab::2]:8333
|
||||
[2a01:4f8:130:632c::2]:8333
|
||||
[2a01:4f8:130:6366::2]:8333
|
||||
[2a01:4f8:130:934f::2]:8333
|
||||
[2a01:4f8:131:33ad:fea1::666]:8333
|
||||
[2a01:4f8:140:2195::2]:8333
|
||||
[2a01:4f8:140:6333::2]:8333
|
||||
[2a01:4f8:140:930d::2]:8333
|
||||
[2a01:4f8:140:93b0::2]:8333
|
||||
[2a01:4f8:141:1167::2]:8333
|
||||
[2a01:4f8:141:186::2]:8333
|
||||
[2a01:4f8:141:53f0::2]:8333
|
||||
[2a01:4f8:150:336a::2]:8333
|
||||
[2a01:4f8:150:72ee::4202]:8333
|
||||
[2a01:4f8:150:8324::2]:9001
|
||||
[2a01:4f8:151:21ca::2]:8333
|
||||
[2a01:4f8:151:41c2:0:5404:a67e:f250]:8333
|
||||
[2a01:4f8:151:5128::2]:8333
|
||||
[2a01:4f8:151:52c6::154]:8333
|
||||
[2a01:4f8:151:6347::2]:9001
|
||||
[2a01:4f8:160:5136::2]:8333
|
||||
[2a01:4f8:160:72c5::2858:e1c5]:8333
|
||||
[2a01:4f8:160:72c5::593b:60d5]:8333
|
||||
[2a01:4f8:160:814f::2]:8333
|
||||
[2a01:4f8:161:13d0::2]:8333
|
||||
[2a01:4f8:161:228f::2]:8333
|
||||
[2a01:4f8:161:51c4::2]:8333
|
||||
[2a01:4f8:161:60a7::2]:8333
|
||||
[2a01:4f8:161:7026::2]:8333
|
||||
[2a01:4f8:161:9184::2]:8333
|
||||
[2a01:4f8:162:2108::2]:8333
|
||||
[2a01:4f8:162:218c::2]:8333
|
||||
[2a01:4f8:162:4443::2]:8333
|
||||
[2a01:4f8:162:51a3::2]:8333
|
||||
[2a01:4f8:171:b93::2]:8333
|
||||
[2a01:4f8:190:1483::1]:8333
|
||||
[2a01:4f8:190:4495::2]:8333
|
||||
[2a01:4f8:190:64c9::2]:8333
|
||||
[2a01:4f8:190:91ce::2]:8333
|
||||
[2a01:4f8:191:2194::83]:8333
|
||||
[2a01:4f8:191:40e8::2]:8333
|
||||
[2a01:4f8:191:44b4::2]:8333
|
||||
[2a01:4f8:191:8242::2]:8333
|
||||
[2a01:4f8:191:83a2::2]:8333
|
||||
[2a01:4f8:192:11b2::2]:8333
|
||||
[2a01:4f8:192:216c::2]:8333
|
||||
[2a01:4f8:192:22b3::2]:8333
|
||||
[2a01:4f8:192:440b::2]:8333
|
||||
[2a01:4f8:192:db::2]:8333
|
||||
[2a01:4f8:200:1012::2]:8333
|
||||
[2a01:4f8:200:23d1::dead:beef]:8333
|
||||
[2a01:4f8:200:506d::2]:8333
|
||||
[2a01:4f8:200:51f0::2]:8333
|
||||
[2a01:4f8:200:5389::2]:8333
|
||||
[2a01:4f8:200:53e3::2]:8333
|
||||
[2a01:4f8:200:6344::2]:8333
|
||||
[2a01:4f8:200:6396::2]:8333
|
||||
[2a01:4f8:200:63af::119]:8333
|
||||
[2a01:4f8:200:71e3:78b4:f3ff:fead:e8cf]:8333
|
||||
[2a01:4f8:201:214c::2]:8333
|
||||
[2a01:4f8:201:233:1::3]:8333
|
||||
[2a01:4f8:201:3e3::2]:8333
|
||||
[2a01:4f8:201:6011::4]:8333
|
||||
[2a01:4f8:201:60d5::2]:8333
|
||||
[2a01:4f8:202:265::2]:8333
|
||||
[2a01:4f8:202:3115::2]:8333
|
||||
[2a01:4f8:202:31e3::2]:8333
|
||||
[2a01:4f8:202:31ef::2]:8333
|
||||
[2a01:4f8:202:3392::2]:8333
|
||||
[2a01:4f8:202:53c3::2]:8333
|
||||
[2a01:4f8:202:63f4::2]:8333
|
||||
[2a01:4f8:202:7227::2]:8333
|
||||
[2a01:4f8:210:2227::2]:8333
|
||||
[2a01:4f8:210:24aa::2]:8333
|
||||
[2a01:4f8:211:14cf::2]:8333
|
||||
[2a01:4f8:211:181b::2]:8333
|
||||
[2a01:4f8:212:289e::2]:8333
|
||||
[2a01:4f8:212:33db::2]:18333
|
||||
[2a01:4f8:a0:112f::2]:8333
|
||||
[2a01:4f8:a0:3174::2]:8333
|
||||
[2a01:4f8:a0:328c::2]:8333
|
||||
[2a01:4f8:a0:5243::2]:8333
|
||||
[2a01:4f8:c17:19b9::2]:8333
|
||||
[2a01:4f8:c17:1a41::2]:8333
|
||||
[2a01:4f8:c17:1a92::2]:8333
|
||||
[2a01:4f8:c17:273::2]:8333
|
||||
[2a01:4f8:c17:435::2]:8333
|
||||
[2a01:4f8:c17:755::2]:8333
|
||||
[2a01:4f8:c17:b54::2]:8333
|
||||
[2a01:4f8:d16:9384::2]:8333
|
||||
[2a01:608:ffff:a009:8bf5:879d:e51a:f837]:8333
|
||||
[2a01:680:10:10:f2de:f1ff:fec9:dc0]:8333
|
||||
[2a01:7c8:aaac:1f6:5054:ff:fe30:e585]:8333
|
||||
[2a01:7c8:aaac:20b:5054:ff:fe24:435e]:8333
|
||||
[2a01:7c8:aaac:43d:5054:ff:fe4e:3dd4]:8333
|
||||
[2a01:7c8:aaad:256::1]:8333
|
||||
[2a01:7c8:aab6:ea:5054:ff:feff:eac3]:8333
|
||||
[2a01:7c8:aab9:5a:5054:ff:fe89:7b26]:8333
|
||||
[2a01:7c8:aabc:2c8:5054:ff:fe35:6581]:8333
|
||||
[2a01:7e00::f03c:91ff:fe18:301e]:8333
|
||||
[2a01:7e00::f03c:91ff:fe18:3942]:8333
|
||||
[2a01:7e00::f03c:91ff:fe26:8c87]:8333
|
||||
[2a01:7e00::f03c:91ff:fe50:6206]:8333
|
||||
[2a01:7e00::f03c:91ff:fe67:559d]:8333
|
||||
[2a01:7e00::f03c:91ff:fe84:434f]:8333
|
||||
[2a01:7e00::f03c:91ff:fe89:1143]:8333
|
||||
[2a01:7e00::f03c:91ff:fe98:2505]:8333
|
||||
[2a01:7e00::f03c:91ff:fedb:352e]:8333
|
||||
[2a01:7e01::f03c:91ff:fec8:d7b5]:8333
|
||||
[2a01:e34:ee33:1640:c504:f677:b28a:ba42]:8333
|
||||
[2a01:e35:2e7e:bc0:e079:f55e:cef3:b5d7]:8333
|
||||
[2a01:e35:2ee5:610:21f:d0ff:fe4e:7460]:8333
|
||||
[2a01:e35:8a3f:47c0:c617:feff:fe3c:9fbd]:8333
|
||||
[2a01:e35:8aca:6a0:211:aff:fe5e:295e]:8333
|
||||
[2a02:180:a:18:81:7:11:50]:8333
|
||||
[2a02:1810:1d87:6a00:5604:a6ff:fe60:d87d]:8333
|
||||
[2a02:2168:1144:5c01:d63d:7eff:fedd:4f8e]:8333
|
||||
[2a02:2498:6d7b:7001:b508:b39d:2cea:5b7a]:8333
|
||||
[2a02:2528:503:2::15]:8333
|
||||
[2a02:2528:fa:1a56:216:44ff:fe6a:d112]:8333
|
||||
[2a02:27f8:2012:0:e9f7:268f:c441:6129]:8333
|
||||
[2a02:348:86:3011::1]:8333
|
||||
[2a02:4780:1:1::1:8a01]:8333
|
||||
[2a02:578:5002:116::2]:8333
|
||||
[2a02:6080::1:190b:69e3]:8333
|
||||
[2a02:6080::1:e893:d9d6]:8333
|
||||
[2a02:770:4000::139]:8333
|
||||
[2a02:7aa0:1201::deb3:81a2]:8333
|
||||
[2a02:8010:b001::5860:59b5]:8333
|
||||
[2a02:810d:21c0:f00:a248:1cff:feb8:5348]:8333
|
||||
[2a02:a50::21b:24ff:fe93:4e39]:8333
|
||||
[2a02:a80:0:1200::2]:8333
|
||||
[2a02:c200:0:10:2:1:5830:1]:8333
|
||||
[2a02:c200:0:10:2:5:4692:1]:8333
|
||||
[2a02:c200:0:10:3:0:7158:1]:8333
|
||||
[2a02:c200:0:10::2244:1]:8333
|
||||
[2a02:c200:1:10:2:3:3339:1]:8333
|
||||
[2a02:c200:1:10:2:3:7844:1]:8333
|
||||
[2a02:c200:1:10:2:5:6288:1]:8333
|
||||
[2a02:c200:1:10:3:0:5912:1]:8333
|
||||
[2a03:4000:2:496::8]:8333
|
||||
[2a03:4000:6:8009::1]:8333
|
||||
[2a03:4000:6:8063::bcd0]:8333
|
||||
[2a03:4900:fffc:b::2]:8333
|
||||
[2a03:b0c0:1:d0::d:5001]:8333
|
||||
[2a03:f80:ed15:149:154:155:235:1]:8333
|
||||
[2a03:f80:ed15:149:154:155:241:1]:8333
|
||||
[2a03:f80:ed16:ca7:ea75:b12d:2af:9e2a]:8333
|
||||
[2a04:1980:3100:1aab:290:faff:fe70:a3d8]:8333
|
||||
[2a04:1980:3100:1aab:e61d:2dff:fe29:f590]:8333
|
||||
[2a04:2f80:6:200::89]:8333
|
||||
[2a04:ac00:1:4a0b:5054:ff:fe00:5af5]:8333
|
||||
[2a04:ad80:0:68::35da]:8333
|
||||
3ffk7iumtx3cegbi.onion:8333
|
||||
3nmbbakinewlgdln.onion:8333
|
||||
4j77gihpokxu2kj4.onion:8333
|
||||
546esc6botbjfbxb.onion:8333
|
||||
5at7sq5nm76xijkd.onion:8333
|
||||
77mx2jsxaoyesz2p.onion:8333
|
||||
7g7j54btiaxhtsiy.onion:8333
|
||||
a6obdgzn67l7exu3.onion:8333
|
||||
ab64h7olpl7qpxci.onion:8333
|
||||
am2a4rahltfuxz6l.onion:8333
|
||||
azuxls4ihrr2mep7.onion:8333
|
||||
bitcoin7bi4op7wb.onion:8333
|
||||
bitcoinostk4e4re.onion:8333
|
||||
bk7yp6epnmcllq72.onion:8333
|
||||
bmutjfrj5btseddb.onion:8333
|
||||
ceeji4qpfs3ms3zc.onion:8333
|
||||
clexmzqio7yhdao4.onion:8333
|
||||
gb5ypqt63du3wfhn.onion:8333
|
||||
h2vlpudzphzqxutd.onion:8333
|
||||
n42h7r6oumcfsbrs.onion:4176
|
||||
ncwk3lutemffcpc4.onion:8333
|
||||
okdzjarwekbshnof.onion:8333
|
||||
pjghcivzkoersesd.onion:8333
|
||||
rw7ocjltix26mefn.onion:8333
|
||||
uws7itep7o3yinxo.onion:8333
|
||||
vk3qjdehyy4dwcxw.onion:8333
|
||||
vqpye2k5rcqvj5mq.onion:8333
|
||||
wpi7rpvhnndl52ee.onion:8333
|
||||
11
contrib/seeds/nodes_test.txt
Normal file
11
contrib/seeds/nodes_test.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
# List of fixed seed nodes for testnet
|
||||
|
||||
# Onion nodes
|
||||
thfsmmn2jbitcoin.onion
|
||||
it2pj4f7657g3rhi.onion
|
||||
nkf5e6b7pl4jfd4a.onion
|
||||
4zhkir2ofl7orfom.onion
|
||||
t6xj6wilh4ytvcs7.onion
|
||||
i6y6ivorwakd7nw3.onion
|
||||
ubqj4rsu3nqtxmtp.onion
|
||||
|
||||
Reference in New Issue
Block a user