5
0
mirror of https://github.com/cwinfo/hyperboria-peers.git synced 2024-09-19 14:59:36 +00:00
A geographically sorted list of public peering credentials for joining Hyperboria
Go to file
ansuz dbc0d5114b don't try to validate files which don't end in .k (#70)
* don't try to validate files which don't end in .k

* provide an example which passes tests

recommend a gpg field

* undo changes to test
2016-10-01 16:31:36 +02:00
EU New peer h.ancha.lurk.space.k in EU/de/hesse/ (#72) 2016-09-10 01:32:54 -07:00
NA Add Stash Crypto public nodes (#73) 2016-09-06 11:25:16 +02:00
.gitignore bump package.json because of readme 2016-06-19 11:50:24 +02:00
.travis.yml Use new build system (followed old docs before) 2015-11-25 13:06:24 -08:00
index.js alias __dirname, use 'read' 2016-06-19 10:13:09 +02:00
package.json updated peer list, bumped npm version 2016-09-29 09:16:59 +02:00
README.md don't try to validate files which don't end in .k (#70) 2016-10-01 16:31:36 +02:00
tests.js more thorough js tests 2016-09-29 09:16:25 +02:00
tests.py Improve "JSON not properly formatted" error message to say how to fix it (#59) 2016-07-16 19:56:38 -07:00

Build Status

A geographically sorted list of public peering credentials for joining Hyperboria.

Hyperboria uses cjdns to construct an end-to-end-encrypted ipv6 mesh network. Connections between nodes are established manually, and traffic is restricted to the resulting social graph.

This repository exists for those who don't already know somebody on Hyperboria.

Using credentials

First, set up a cjdns node.

To connect your node to one of these public peers, follow the steps in the cjdns README.

Adding your public node's credentials

If you've created a public node, and would like to have it listed here, fork the repo, add a keyfile, and submit a PR.

Filepath conventions

Credentials are sorted geographically, by continent, region, and municipality.

For example, a node in New York City is listed at NA/us/newyork.

Region and municipality codes are based on self identification, not any ISO standard. An operator might prefer to list their node in Cascadia instead of Washington state. For simplicity's sake, we'd prefer that new credentials conform to existing structures.

JSON formatting

We have tried to standardize the structure of the actual credential files, as such, they have the strictest requirements of anything in this repository.

  • Your credentials must be valid JSON.
  • They must contain the necessary fields:
    • ip/port
    • password
    • publicKey
    • contact (a means of contacting the operator)
  • The following fields are not yet required, but are recommended:
    • gpg, listing your 16 character pgp fingerprint (no spaces)
  • credentials should be formatted such that:
    • indentation uses four spaces
    • the file ends with a newline character.
  • credentials must use IP:port strings for keys
    • credentials using hostnames will not be accepted
{
    "192.168.1.5:10326":{
        "contact":"alice@bob.com",
        "gpg":"FC00FC00FC00FC00",
        "login":"default-login",
        "password":"nq1uhmf06k8c5594jqmpgy26813b81s",
        "peerName":"your-name-goes-here",
        "publicKey":"ssxlh80x0bqjfrnbkm1801xsxyd8zd45jkwn1zhlnccqj4hdqun0.k"
    }
}

Naming your entry

Credential files must end with .k. Otherwise, you can name your file whatever you want, but for simplicity's sake, avoid characters which will need to be escaped at the command line (or within the javascript api).

Javascript API

Peering credentials in this repository can be accessed via a simple Javascript API (using Nodejs).

It's available as a module on npm:

npm install hyperboria-peers

Usage

var Peers = require("hyperboria-peers");

/*  return a list of public peers located in North America */
Peers.filter(function (creds, path) {
    return path.indexOf('NA') !== -1;
});

/*  return a list of public keys */
Peers.map(function (creds, path) {
    return creds[Object.keys(creds)[0]].publicKey;
});

/*  the underlying data is exposed in a nested json structure */
console.log(Peers.peers);

console.log(Peers.peers.NA.us.california);