Add node
All checks were successful
/ deploy (push) Successful in 47s

This commit is contained in:
Minecon724 2024-10-26 21:09:29 +02:00
parent 89d69cddc1
commit fcdf21c8c8
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8
2 changed files with 21 additions and 1 deletions

View file

@ -32,4 +32,11 @@ If not specified, nodes are clearnet IPv6 only
- Public key: `WiHsWwq0TKphHD3PSf8MD9evRiaTRVvldiqvPhKmsVA=` - Public key: `WiHsWwq0TKphHD3PSf8MD9evRiaTRVvldiqvPhKmsVA=`
- Link local: `fe80::129:4` - Link local: `fe80::129:4`
- Pingable: `fdfe:8d0:7450:400::` - Pingable: `fdfe:8d0:7450:400::`
- Hosting: [C1V Hosting](https://www.c1vhosting.it/) - Hosting: [C1V Hosting](https://www.c1vhosting.it/)
### Stockholm, Sweden
- `se1.420129.xyz` 1 Gbps
- Public key: `4X8z+kvm6r5bzfDm6eVOZm4XTq+W1XFNDt+Os3RXOnI=`
- Link local: `fe80::129:5`
- Pingable: `fdfe:8d0:7450:500::`
- Hosting: [Skhron](https://skhron.com.ua/aff.php?aff=23)

View file

@ -63,6 +63,16 @@ var nodes = {
description: `Location also approximate, there's no evidence of the existence of the data center`, description: `Location also approximate, there's no evidence of the existence of the data center`,
publicKey: "", publicKey: "",
linkLocal: "fe80::129:4" linkLocal: "fe80::129:4"
},
se1: {
country: 'se',
location: [59.40917936961455, 17.949191427612632],
city: "Stockholm, Sweden",
hostname: "se1.420129.xyz",
datacenter: "Obe Kista Gate",
description: `Routing south almost always through Amsterdam, hence the connection`,
publicKey: "",
linkLocal: "fe80::129:5"
} }
} }
@ -169,7 +179,10 @@ for (let node of Object.values(nodes)) {
line(nodes.de1.location, de1t, "Tunnel (already included in other labels)<br><strong>4ms</strong>"); line(nodes.de1.location, de1t, "Tunnel (already included in other labels)<br><strong>4ms</strong>");
line(de1t, nodes.pl1.location, "de1 - pl1<br><strong>24ms</strong>"); line(de1t, nodes.pl1.location, "de1 - pl1<br><strong>24ms</strong>");
line(de1t, nodes.nl1.location, "de1 - nl1<br><strong>10ms</strong>"); line(de1t, nodes.nl1.location, "de1 - nl1<br><strong>10ms</strong>");
line(de1t, nodes.se1.location, "de1 - se1<br><strong>29ms</strong>");
line(nodes.nl1.location, nodes.pl1.location, "pl1 - nl1<br><strong>23ms</strong>");
line(nodes.nl1.location, nodes.it1.location, "it1 - nl1<br><strong>25ms</strong>"); line(nodes.nl1.location, nodes.it1.location, "it1 - nl1<br><strong>25ms</strong>");
line(nodes.nl1.location, nodes.se1.location, "se1 - nl1<br><strong>21ms</strong>");
/*map.on("dragstart", function () { /*map.on("dragstart", function () {
dismissPopup(false); dismissPopup(false);