diff --git a/geofeed.csv b/geofeed.csv index 438d0ff..164281e 100644 --- a/geofeed.csv +++ b/geofeed.csv @@ -1,3 +1,4 @@ fdfe:8d0:7450:100::/56,NL,,Amsterdam, fdfe:8d0:7450:200::/56,DE,,Nuremberg, -fdfe:8d0:7450:300::/56,PL,,Warsaw, \ No newline at end of file +fdfe:8d0:7450:300::/56,PL,,Warsaw, +fdfe:8d0:7450:400::/56,FR,,Paris, \ No newline at end of file diff --git a/nodes.md b/nodes.md index 3b04789..57752d7 100644 --- a/nodes.md +++ b/nodes.md @@ -26,4 +26,11 @@ Prefix hostname with `ipv4.` to force IPv4 \ - Public key: `v854+5m4Diqh8oGo6/sGVS7LELsreIjMujkWqwc6bWo=` - Link local: `fe80::129:3` - Pingable: `fdfe:8d0:7450:300::` -- Hosting: [Skhron](https://skhron.com.ua/aff.php?aff=23) \ No newline at end of file +- Hosting: [Skhron](https://skhron.com.ua/aff.php?aff=23) + +### Paris, France +- `fr1.420129.xyz` 100 Mbps (v6) +- 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 diff --git a/src/index.html b/src/index.html index d6f5c63..254f27a 100644 --- a/src/index.html +++ b/src/index.html @@ -22,6 +22,7 @@
  • Warsaw, Poland
  • Nuremberg, Germany
  • Netherlands, Amsterdam
  • +
  • Paris, France
  • Peering requirements

    diff --git a/src/map/map.js b/src/map/map.js index 5090003..78b4f09 100644 --- a/src/map/map.js +++ b/src/map/map.js @@ -53,6 +53,16 @@ var nodes = { description: `I don't know where exactly`, publicKey: "iZfLBtF6BiQvdKXx4Yl02u+OL6ls35gSpWCRmB9q4lU=", linkLocal: "fe80::129:1" + }, + fr1: { + country: 'fr', + location: [48.8575258, 2.3514315], + city: "Paris, France", + hostname: "fr1.420129.xyz", + datacenter: "scaleway PAR 1", + description: `I don't know where exactly`, + publicKey: "uT+GQ291rjmK9/lBStKfcUdstf2PAcvoQfbdJYRc7A0=", + linkLocal: "fe80::129:4" } } @@ -161,6 +171,8 @@ line(de1t, nodes.pl1.location, "de1 - pl1
    24ms"); line(de1t, 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"); + /*map.on("dragstart", function () { dismissPopup(false); });*/ \ No newline at end of file