From 5cac152027343c8a393e5cf602be5299785789e5 Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Sun, 12 Jan 2025 10:48:22 +0100 Subject: [PATCH] Add nodes --- geofeed.csv | 4 +++- nodes.md | 16 +++++++++++++++- src/index.html | 2 ++ src/map/map.js | 27 +++++++++++++++++++++++++++ 4 files changed, 47 insertions(+), 2 deletions(-) diff --git a/geofeed.csv b/geofeed.csv index c645d34..c33b6ba 100644 --- a/geofeed.csv +++ b/geofeed.csv @@ -1,4 +1,6 @@ fdfe:8d0:7450:100::/56,NL,,Amsterdam, fdfe:8d0:7450:200::/56,DE,,Frankfurt, fdfe:8d0:7450:300::/56,PL,,Warsaw, -fdfe:8d0:7450:400::/56,FR,,Paris, \ No newline at end of file +fdfe:8d0:7450:400::/56,FR,,Paris, +fdfe:8d0:7450:500::/56,SE,,Stockholm, +fdfe:8d0:7450:600::/56,FI,,Helsinki, \ No newline at end of file diff --git a/nodes.md b/nodes.md index 0bd6d24..f9a95fa 100644 --- a/nodes.md +++ b/nodes.md @@ -33,4 +33,18 @@ Prefix hostname with `ipv4.` to force IPv4 \ - Public key: `uT+GQ291rjmK9/lBStKfcUdstf2PAcvoQfbdJYRc7A0=` - Link local: `fe80::129:4` - Pingable: `fdfe:8d0:7450:400::` -- Hosting: [Scaleway](https://www.scaleway.com/en/) \ No newline at end of file +- Hosting: [Scaleway](https://www.scaleway.com/en/) + +### Stockholm, Sweden +- `se1.420129.xyz` 100 Mbps (v6 + v4) +- Public key: `tS6j+/aroaMYT/mbzv4xDGI7bc6/LAgwc/KKrw/LIVI=` +- Link local: `fe80::129:5` +- Pingable: `fdfe:8d0:7450:500::` +- Hosting: [No Ack Hosting](https://noackhosting.se) + +### Helsinki, Finland +- `fi1.420129.xyz` ? Mbps (v6 + NAT v4) +- Public key: `GXCLHfUCTjB04RblC0H32lnXyCX/9pTuiWKJTMeyKlg=` +- Link local: `fe80::129:6` +- Pingable: `fdfe:8d0:7450:600::` +- Hosting: [Mikrus](https://mikr.us/) \ No newline at end of file diff --git a/src/index.html b/src/index.html index deff38a..8e94b45 100644 --- a/src/index.html +++ b/src/index.html @@ -23,6 +23,8 @@
  • Frankfurt, Germany
  • Netherlands, Amsterdam
  • Paris, France
  • +
  • Stockholm, Sweden
  • +
  • Helsinki, Finland
  • Peering requirements

    diff --git a/src/map/map.js b/src/map/map.js index b43b624..80cf3b3 100644 --- a/src/map/map.js +++ b/src/map/map.js @@ -63,6 +63,26 @@ var nodes = { description: ``, publicKey: "uT+GQ291rjmK9/lBStKfcUdstf2PAcvoQfbdJYRc7A0=", linkLocal: "fe80::129:4" + }, + se1: { + country: 'se', + location: [59.3242263, 18.0497486], + city: "Stockholm, Sweden", + hostname: "fr1.420129.xyz", + datacenter: "unknown", + description: ``, + publicKey: "tS6j+/aroaMYT/mbzv4xDGI7bc6/LAgwc/KKrw/LIVI=", + linkLocal: "fe80::129:5" + }, + fi1: { + country: 'fi', + location: [60.3435297, 25.030997], + city: "Helsinki, Finland", + hostname: "fi1.420129.xyz", + datacenter: "Hetzner Data Center Park Helsinki", + description: ``, + publicKey: "GXCLHfUCTjB04RblC0H32lnXyCX/9pTuiWKJTMeyKlg=", + linkLocal: "fe80::129:6" } } @@ -171,6 +191,13 @@ line(nodes.de1.location, nodes.nl1.location, "de1 - nl1
    10ms line(nodes.nl1.location, nodes.pl1.location, "pl1 - nl1
    23ms"); line(nodes.nl1.location, nodes.fr1.location, "fr1 - nl1
    10ms"); +line(nodes.nl1.location, nodes.se1.location, "fr1 - se1
    20ms"); +line(nodes.de1.location, nodes.se1.location, "de1 - se1
    27ms"); + +line(nodes.fi1.location, nodes.se1.location, "fi1 - se1
    8ms"); +line(nodes.fi1.location, nodes.nl1.location, "fi1 - nl1
    29ms"); +line(nodes.fi1.location, nodes.de1.location, "fi1 - de1
    34ms"); + /*map.on("dragstart", function () { dismissPopup(false); });*/ \ No newline at end of file