d1da55f8d5f2ec302e65980e0f729dd7e9f716ab
Services-Whois.md
| ... | ... | @@ -70,9 +70,12 @@ Another visualisation shows the prefixes seen by BGP: http://dataviz.polynome.dn |
| 70 | 70 | * [[lglass]] is a python implementation for working with the registry. It features a whois server, tools to manipulate the data (DNS zone generation, etc). |
| 71 | 71 | |
| 72 | 72 | ## Whois daemons |
| 73 | - * welterde: thinkbase.srv.welterde.de (46.4.248.201) |
|
| 74 | - * fritz: whois.fritz.dn42 (172.22.119.139) |
|
| 75 | - * nixnodes: whois.nixnodes.dn42 (172.22.177.77) |
|
| 73 | + |
|
| 74 | +| **person** | **dns** | **ip** | |
|
| 75 | +|------------|---------------------------|-----------------| |
|
| 76 | +| welterde | thinkbase.srv.welterde.de | 46.4.248.201 | |
|
| 77 | +| fritz | whois.fritz.dn42 | 172.22.119.139 | |
|
| 78 | +| nixnodes | whois.nixnodes.dn42 | 172.22.177.77 | |
|
| 76 | 79 | |
| 77 | 80 | ### Usage |
| 78 | 81 | ```sh |
| ... | ... | @@ -97,7 +100,6 @@ fd**:****:****:****:****:****:****:**** 172.22.177.77 |
| 97 | 100 | You can then use whois without specifying the server. Works at least with Marco d'Itri's whois client. |
| 98 | 101 | |
| 99 | 102 | ### Running your own whoisd |
| 100 | - |
|
| 101 | 103 | ```sh |
| 102 | 104 | cd /home/some/path/to/store/branch |
| 103 | 105 | sudo aptitude install ruby rubygems |
| ... | ... | @@ -106,7 +108,6 @@ cd whoisd/ruby |
| 106 | 108 | sudo ruby whoisd.rb nobody |
| 107 | 109 | ``` |
| 108 | 110 | |
| 109 | - |
|
| 110 | 111 | ## Monotone |
| 111 | 112 | Monotone is an distributed revision control system. Monotone tracks revisions to files, groups sets of revisions into changesets, and tracks history across renames. The design principle is distributed operation making heavy use of cryptographic primitives to track file revisions (via the SHA-1 secure hash) and to authenticate user actions (via RSA cryptographic signatures). Each participant maintains their own revision history store in a local SQLite database. Monotone is especially strong in its support of a diverge/merge workflow, which it achieves in part by always allowing commit before merge. Revisions are exchanged using the custom netsync protocol which shares some conceptual ground with rsync and cvs. |
| 112 | 113 | * [Website](http://monotone.ca/) |
| ... | ... | @@ -125,7 +126,7 @@ Monotone is an distributed revision control system. Monotone tracks revisions to |
| 125 | 126 | ### Setup |
| 126 | 127 | ```sh |
| 127 | 128 | mtn genkey you@domain.tld |
| 128 | -mtn pubkey you@domain.tld # send the output to some $monotone_server operator(do NOT send the keypair!) |
|
| 129 | +mtn pubkey you@domain.tld # send the output to some $monotone_server operator (do NOT send the keypair!) |
|
| 129 | 130 | mtn clone 'mtn://$monotone_server/?net.dn42.*' --branch net.dn42.registry |
| 130 | 131 | cd net.dn42.registry |
| 131 | 132 | $add_your_objects |