parent
89d69cddc1
commit
fcdf21c8c8
2 changed files with 21 additions and 1 deletions
7
nodes.md
7
nodes.md
|
@ -33,3 +33,10 @@ If not specified, nodes are clearnet IPv6 only
|
|||
- Link local: `fe80::129:4`
|
||||
- Pingable: `fdfe:8d0:7450:400::`
|
||||
- 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)
|
|
@ -63,6 +63,16 @@ var nodes = {
|
|||
description: `Location also approximate, there's no evidence of the existence of the data center`,
|
||||
publicKey: "",
|
||||
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(de1t, nodes.pl1.location, "de1 - pl1<br><strong>24ms</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.se1.location, "se1 - nl1<br><strong>21ms</strong>");
|
||||
|
||||
/*map.on("dragstart", function () {
|
||||
dismissPopup(false);
|
||||
|
|
Loading…
Reference in a new issue