summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2015-01-25 20:38:50 -0500
committerirungentoo <irungentoo@gmail.com>2015-01-25 20:38:50 -0500
commit4c220e336330213b151a0c20307d0a1fce04ac9e (patch)
treecd7195bb56f75898e26dddcf4239a19db1d3a18e
parent6e3e812740052ca597d301975250f6d9e5356a3c (diff)
parent51b8ac846025b62918f28a391a30b7000313b0d8 (diff)
Merge branch 'bootstrapd-example-nodes' of https://github.com/nurupo/InsertProjectNameHere
-rw-r--r--other/bootstrap_daemon/tox-bootstrapd.conf53
1 files changed, 13 insertions, 40 deletions
diff --git a/other/bootstrap_daemon/tox-bootstrapd.conf b/other/bootstrap_daemon/tox-bootstrapd.conf
index 4547d83d..d02eb3d0 100644
--- a/other/bootstrap_daemon/tox-bootstrapd.conf
+++ b/other/bootstrap_daemon/tox-bootstrapd.conf
@@ -24,8 +24,8 @@ enable_lan_discovery = true
24 24
25enable_tcp_relay = true 25enable_tcp_relay = true
26 26
27// Tox uses 443, 3389 and 33445 ports by default, so it's highly encouraged to keep 27// While Tox uses 33445 port by default, 443 (https) and 3389 (rdp) ports are very
28// them. 28// common among nodes, so it's encouraged to keep them in place.
29tcp_relay_ports = [443, 3389, 33445] 29tcp_relay_ports = [443, 3389, 33445]
30 30
31// Reply to MOTD (Message Of The Day) requests. 31// Reply to MOTD (Message Of The Day) requests.
@@ -45,48 +45,21 @@ motd = "tox-bootstrapd"
45// in both cases this will be interpreted as if you don't want to bootstrap 45// in both cases this will be interpreted as if you don't want to bootstrap
46// from anyone. 46// from anyone.
47// 47//
48// address = any ipv4 or ipv6 address and also any US-ASCII domain name. 48// address = any IPv4 or IPv6 address and also any US-ASCII domain name.
49bootstrap_nodes = ( 49bootstrap_nodes = (
50 { 50 { // Example Node 1 (IPv4)
51 // NikolaiToryzin - US 51 address = "127.0.0.1"
52 address = "192.254.75.98"
53 port = 33445 52 port = 33445
54 public_key = "951C88B7E75C867418ACDB5D273821372BB5BD652740BCDF623A4FA293E75D2F" 53 public_key = "728925473812C7AAC482BE7250BCCAD0B8CB9F737BF3D42ABD34459C1768F854"
55 }, 54 },
56 { 55 { // Example Node 2 (IPv6)
57 // Proplex - US 56 address = "::1/128"
58 address = "107.161.17.51"
59 port = 33445 57 port = 33445
60 public_key = "7BE3951B97CA4B9ECDDA768E8C52BA19E9E2690AB584787BF4C90E04DBB75111" 58 public_key = "3E78BACF0F84235B30054B54898F56793E1DEF8BD46B1038B9D822E8460FAB67"
61 }, 59 },
62 { 60 { // Example Node 3 (US-ASCII domain name)
63 // SonOfRa - DE 61 address = "example.org"
64 address = "144.76.60.215"
65 port = 33445 62 port = 33445
66 public_key = "04119E835DF3E78BACF0F84235B300546AF8B936F035185E2A8E9E0A67C8924F" 63 public_key = "8CD5A9BF0A6CE358BA36F7A653F99FA6B258FF756E490F52C1F98CC420F78858"
67 },
68 {
69 // Astonex - FR
70 address = "37.59.102.176"
71 port = 33445
72 public_key = "B98A2CEAA6C6A2FADC2C3632D284318B60FE5375CCB41EFA081AB67F500C1B0B"
73 },
74 {
75 // SylvieLorxu - NL
76 address = "178.21.112.187"
77 port = 33445
78 public_key = "4B2C19E924972CB9B57732FB172F8A8604DE13EEDA2A6234E348983344B23057"
79 },
80 {
81 // aitjcize - JP
82 address = "54.199.139.199"
83 port = 33445
84 public_key = "7F9C31FE850E97CEFD4C4591DF93FC757C7C12549DDD55F8EEAECC34FE76C029"
85 },
86 {
87 // NikolaiToryzin - CH
88 address = "31.7.57.236"
89 port = 443
90 public_key = "2A4B50D1D525DA2E669592A20C327B5FAD6C7E5962DC69296F9FEC77C4436E4E"
91 } 64 }
92) 65) \ No newline at end of file