Add nodes
All checks were successful
/ deploy (push) Successful in 52s

This commit is contained in:
Minecon724 2025-01-12 10:48:22 +01:00
parent 93c776c8e6
commit 5cac152027
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8
4 changed files with 47 additions and 2 deletions

View file

@ -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,
fdfe:8d0:7450:400::/56,FR,,Paris,
fdfe:8d0:7450:500::/56,SE,,Stockholm,
fdfe:8d0:7450:600::/56,FI,,Helsinki,
1 fdfe:8d0:7450:100::/56 NL Amsterdam
2 fdfe:8d0:7450:200::/56 DE Frankfurt
3 fdfe:8d0:7450:300::/56 PL Warsaw
4 fdfe:8d0:7450:400::/56 FR Paris
5 fdfe:8d0:7450:500::/56 SE Stockholm
6 fdfe:8d0:7450:600::/56 FI Helsinki

View file

@ -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/)
- 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/)

View file

@ -23,6 +23,8 @@
<li>Frankfurt, Germany</li>
<li>Netherlands, Amsterdam</li>
<li>Paris, France</li>
<li>Stockholm, Sweden</li>
<li>Helsinki, Finland</li>
</ul>
<p>Peering requirements</p>

View file

@ -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<br><strong>10ms</strong>
line(nodes.nl1.location, nodes.pl1.location, "pl1 - nl1<br><strong>23ms</strong>");
line(nodes.nl1.location, nodes.fr1.location, "fr1 - nl1<br><strong>10ms</strong>");
line(nodes.nl1.location, nodes.se1.location, "fr1 - se1<br><strong>20ms</strong>");
line(nodes.de1.location, nodes.se1.location, "de1 - se1<br><strong>27ms</strong>");
line(nodes.fi1.location, nodes.se1.location, "fi1 - se1<br><strong>8ms</strong>");
line(nodes.fi1.location, nodes.nl1.location, "fi1 - nl1<br><strong>29ms</strong>");
line(nodes.fi1.location, nodes.de1.location, "fi1 - de1<br><strong>34ms</strong>");
/*map.on("dragstart", function () {
dismissPopup(false);
});*/