-
Notifications
You must be signed in to change notification settings - Fork 1
/
uplink.html
76 lines (74 loc) · 4.26 KB
/
uplink.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<title>Yggdrasil Network | Network Uplink</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="author" content="Thingylabs">
<meta name="description" property="og:description" content="Yggdrasil is a new and experimental compact routing scheme designed for mesh or even Internet-like networks.">
<meta name="image" property="og:image" content="https://ygg.thingylabs.io/image.webp">
<meta property="og:title" content="Yggdrasil Network | Network Uplink">
<meta property="og:url" content="https://ygg.thingylabs.io/">
<meta property="og:description" content="Yggdrasil is a new and experimental compact routing scheme designed for mesh or even Internet-like networks.">
<meta property="og:image" content="https://ygg.thingylabs.io/image.webp">
<link rel="stylesheet" href="bootstrap.purged.css">
<link rel="stylesheet" href="style.css">
<script defer src="lib/custom-elements.min.js"></script>
<script defer src="dist/index.js" type="module"></script>
<style>
span {
user-select: all;
cursor: grab;
}
span:active:hover {
cursor: grabbing;
}
</style>
<script>
function copy (event) {
const element = event.target
navigator.clipboard.writeText(element.innerText)
element.after(' - copied!')
setTimeout(_ => {
element.nextSibling.remove()
}, 1000)
}
</script>
</head>
<body>
<div id="terminal">
<div class="container">
<x-nav></x-nav>
<div class="react-terminal-wrapper" data-terminal-name="">
<x-buttons></x-buttons>
<div class="react-terminal">
<p class="react-terminal-line"><a href="https://yggdrasil-network.github.io/">Yggdrasil Network</a> is a decentralized, end-to-end encrypted mesh network for</p>
<p class="react-terminal-line">routing IPv6 traffic within the 0200::/7 range. Users can freely generate</p>
<p class="react-terminal-line">these addresses, with traffic transparently routed through network participants.</p>
<p class="react-terminal-line">Most IPv6-compatible applications work seamlessly with Yggdrasil.</p>
<p class="react-terminal-line"></p>
<p class="react-terminal-line">For hassle-free security, use <a href="https://github.com/yggdrasil-network/yggstack">Yggstack</a> to access the network safely without</p>
<p class="react-terminal-line">exposing ports or needing administrative privileges.</p>
<p class="react-terminal-line">A convenient install script is available <a href="https://github.com/perguth/yggdrasil-chromeos">here</a>.</p>
<p class="react-terminal-line"></p>
<p class="react-terminal-line">To join the public network, select a peer from the list of <a href="peers.html">public peers</a> or</p>
<p class="react-terminal-line">use our uplink server below. For optimal performance, choose a peer</p>
<p class="react-terminal-line">that is geographically close to your machine.</p>
<p class="react-terminal-line"></p>
<p class="react-terminal-line">Uplink:</p>
<p class="react-terminal-line">- Location: Falkenstein, Germany</p>
<p class="react-terminal-line">- Provider: Hetzner Cloud</p>
<p class="react-terminal-line">- Adresses:</p>
<p class="react-terminal-line"> - <span onclick="copy(event)">tcp://ygg-uplink.thingylabs.io:80</span></p>
<p class="react-terminal-line"> - <span onclick="copy(event)">tls://ygg-uplink.thingylabs.io:443</span></p>
<p class="react-terminal-line"> - <span onclick="copy(event)">tls://ygg-uplink.thingylabs.io:993</span></p>
<p class="react-terminal-line"> - <span onclick="copy(event)">quic://ygg-uplink.thingylabs.io:443</span></p>
<p class="react-terminal-line">- Public key: <span onclick="copy(event)">0000000000284ffd4ef59343730740b3db95fcecfcab27dc9fd334fe5c7e6f86</span></p>
</div>
</div>
<x-footer></x-footer>
</div>
</div>
<script defer src="lib/prefetch-via-yggdrasil.js"></script>
</body>
</html>