// ProjectTox dht bootstrap node daemon configuration file. // Listening port. port = 33445 // A key file is like a password, so keep it where no one can read it. // The daemon should have permission to read/write to it. // Remember to replace the provided example with your own path. keys_file_path = "/etc/tox/keys" // The PID file written to by daemon. // Make sure that the user who runs the daemon has permissions to write to the // PID file. // Remember to replace the provided example with your own path. pid_file_path = "/var/run/tox/tox_bootstrap_daemon.pid" // Enable IPv6. enable_ipv6 = false // Automatically bootstrap with nodes on local area network. enable_lan_discovery = true enable_tcp_relay = true // Tox uses 443, 3389 and 33445 ports by default, so it's highly recommended to keep // them. //tcp_relay_ports = [443, 3389, 33445] tcp_relay_ports = [3389, 33445] // It's planned to use message of the day as a convenient method of checking // whether a node is up or not, though there are other methods of doing that. enable_motd = true motd = "tox_bootstrap_daemon" // Any number of nodes the daemon will bootstrap itself from. // Remember to replace the provided example with your own node list. // There is a maintained list of bootstrap nodes on Tox's wiki, if you need it. // You may leave the list empty or remove "bootstrap_nodes" complitely, // in both cases this will be interpreted as if you don't want to bootstrap // from anyone. bootstrap_nodes = ( { // Node 1 // Any ipv4 or ipv6, depending on whether `enable_ipv6` is set or not, and // also any US-ASCII domain name. address = "23.226.230.47" port = 33445 public_key = "A09162D68618E742FFBCA1C2C70385E6679604B2D80EA6E84AD0996A1AC8A074" }, { // Node 2 address = "192.254.75.98" port = 33445 public_key = "951C88B7E75C867418ACDB5D273821372BB5BD652740BCDF623A4FA293E75D2F" }, { // Node 3 address = "144.76.60.215" port = 33445 public_key = "04119E835DF3E78BACF0F84235B300546AF8B936F035185E2A8E9E0A67C8924F" }, { // Node 4 address = "37.187.20.216" port = 33445 public_key = "5DA6883A3DAB3DA8A32930182F7E50FBB4B379E844B821FC8C4F5EDE176EA164" }, { // Node 5 address = "54.199.139.199" port = 33445 public_key = "7F9C31FE850E97CEFD4C4591DF93FC757C7C12549DDD55F8EEAECC34FE76C029" }, { // Node 6 address = "37.59.102.176" port = 33445 public_key = "B98A2CEAA6C6A2FADC2C3632D284318B60FE5375CCB41EFA081AB67F500C1B0B" }, { // Node 7 address = "192.210.149.121" port = 33445 public_key = "F404ABAA1C99A9D37D61AB54898F56793E1DEF8BD46B1038B9D822E8460FAB67" }, { // Node 8 address = "37.187.46.132" port = 33445 public_key = "5EB67C51D3FF5A9D528D242B669036ED2A30F8A60E674C45E7D43010CB2E1331" } )