diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2019-12-30 15:33:48 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri@ouroboros.rocks> | 2019-12-30 15:33:48 +0100 |
commit | cda1bb2ece15bad3f89ed4a82c4e18bf2981b76d (patch) | |
tree | 93c94d9ddced0b049d65645ea9680ae04d7f7798 /content/en/docs/Start | |
parent | 1b76e8162deb2739a06f1692056051a1d4ba3ab0 (diff) | |
download | website-cda1bb2ece15bad3f89ed4a82c4e18bf2981b76d.tar.gz website-cda1bb2ece15bad3f89ed4a82c4e18bf2981b76d.zip |
Add intro to docs
Diffstat (limited to 'content/en/docs/Start')
-rw-r--r-- | content/en/docs/Start/check.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/content/en/docs/Start/check.md b/content/en/docs/Start/check.md new file mode 100644 index 0000000..b601320 --- /dev/null +++ b/content/en/docs/Start/check.md @@ -0,0 +1,46 @@ +--- +title: "Check installation" +date: 2019-12-30 +weight: 40 +description: > + Check if ouroboros works. +draft: false +--- + +To check if everything is installed correctly, you can now jump into +the [/docs/Tutorials](tutorials) section, or you can try to ping this +webhost over ouroboros using the name _ouroboros.rocks.oping_ + +Our webserver is of course on an IP network, and ouroboros does not +control IP, but it can run over UDP. + +To be able to contact our server over ouroboros, you will need to do +some IP configuration: to tell the ouroboros UDP system that the +process "ouroboros.rocks.oping" is running on our webserver by adding +the line + +```bash +51.38.114.133 1bf2cb4fb361f67a59907ef7d2dc5290 +``` + +to your /etc/hosts file (it's the IP address of our server and the MD5 +hash of _ouroboros.rocks.oping_). + +Here are the steps to ping our server over ouroboros: + +Run the IRMd: + +```bash +$ sudo irmd & +``` +Then you will need find your (private) IP address and start an ouroboros UDP +daemon (ipcpd-udp) on that interface: +```bash +$ irm ipcp bootstrap type udp name udp layer udp ip <your local ip address> +``` + +Now you should be able to ping our server! + +```bash +$ oping -n ouroboros.rocks.oping +``` |