forked from markqvist/reticulum_website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
133 lines (130 loc) · 3.57 KB
/
constants.py
File metadata and controls
133 lines (130 loc) · 3.57 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
PUBLIC_ENTRYPOINTS = """```
# These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[acehoss]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.acehoss.net
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[FireZen]]
type = TCPClientInterface
interface_enabled = true
target_host = firezen.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[Jon's Node]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.jlamothe.net
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
interface_enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[noDNS1]]
type = TCPClientInterface
interface_enabled = true
target_host = 202.61.243.41
target_port = 4965
[[noDNS2]]
type = TCPClientInterface
interface_enabled = true
target_host = 193.26.158.230
target_port = 4965
[[NomadNode SEAsia TCP]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.jaykayenn.net
target_port = 4242
[[ON6ZQ]]
type = TCPClientInterface
interface_enabled = true
target_host = reticulum.on6zq.be
target_port = 4965
[[quad4net tcp]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.quad4.io
target_port = 4242
[[Quortal TCP Node]]
type = TCPClientInterface
interface_enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
interface_enabled = true
target_host = istanbul.reserve.network
target_port = 9034
[[RNS bnZ-NODE01]]
type = TCPClientInterface
interface_enabled = true
target_host = node01.rns.bnz.se
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
interface_enabled = true
target_host = 80.78.23.249
target_port = 4242
[[RNS HAM RADIO]]
type = TCPClientInterface
interface_enabled = true
target_host = 135.125.238.229
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rtclm.de]]
type = TCPClientInterface
interface_enabled = true
target_host = rtclm.de
target_port = 4242
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Sydney RNS]]
type = TCPClientInterface
interface_enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[Tidudanka.com]]
type = TCPClientInterface
interface_enabled = true
target_host = reticulum.tidudanka.com
target_port = 37500
# Community-provided I2P and Yggdrasil entrypoints
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
```
"""