This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
installation-en.html
289 lines (278 loc) · 9.43 KB
/
installation-en.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>FRKN VPN</title>
<link rel="icon" type="image/x-icon" href="/Images/favicon.ico" />
<meta property="og:locale" content="en_US" />
<link rel="canonical" href="https://frkn.org" />
<meta property="og:url" content="https://frkn.org" />
<meta property="og:site_name" content="FRKN VPN" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="FRKN VPN" />
<meta property="twitter:image" content="/Images/icon512x512.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@frkn_org" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#157878" />
<link rel="stylesheet" href="installation.css" />
</head>
<body>
<header class="page-header">
<div class="header-wrapper">
<section class="logoContainer">
<a class="logo" href="/">
<img
class="logoImage"
src="Images/TransparentWhiteLogo.png"
alt="FRKN logo"
/>
<h1 class="header-title">FRKN VPN</h1>
</a>
</section>
<a class="main__links white-text" href="/installation-ru.html">
Русский
</a>
<h5 class="header-slogan">Flighty Raptor Kicks Network</h5>
</div>
</header>
<main>
<div class="main-content">
<div class="instructions">
<h1>Installation</h1>
<h2>iOS | Android</h2>
<h3>Main installation</h3>
<ol>
<li>
Install the WireGuard app for your device (
<a href="https://apps.apple.com/us/app/wireguard/id1441195209">
iOS
</a>
|
<a
href="https://play.google.com/store/apps/details?id=com.wireguard.android"
>
Android
</a>
)
</li>
<li>Open the installed app</li>
<li>
In the top right corner, press
<strong>+</strong>
</li>
<li>
Select the
<strong>"Create from QR code"</strong>
option
</li>
<li>
Use your phone's camera to scan the QR code generated on the
<a href="/installation-en.html#installation">website</a>
</li>
<li>Done!</li>
</ol>
<h3>Installation from configuration file</h3>
<ol>
<li>
Install the WireGuard app for your device (
<a href="https://apps.apple.com/us/app/wireguard/id1441195209">
iOS
</a>
|
<a
href="https://play.google.com/store/apps/details?id=com.wireguard.android"
>
Android
</a>
)
</li>
<li>
Download the configuration file by clicking on the
<a href="/installation-en.html#installation">
"Download configuration file"
</a>
button
</li>
<li>Open the installed app</li>
<li>
In the top right corner, press
<strong>+</strong>
</li>
<li>
Select the
<strong>"Create from file or archive"</strong>
option
</li>
<li>
Go to the folder where you saved the configuration file (it should
have the
<strong>.conf</strong>
extension) and select it
</li>
<li>Use the switch to turn the VPN on/off</li>
<li>Done!</li>
</ol>
<h2>MacOS | Windows</h2>
<h3>Installation from configuration file</h3>
<ol>
<li>
Install the WireGuard app for your device (
<a href="https://apps.apple.com/us/app/wireguard/id1451685025">
MacOS
</a>
|
<a href="https://www.wireguard.com/install/">Windows</a>
)
</li>
<li>
Download the configuration file by clicking on the
<a href="/installation-en.html#installation">
"Download configuration file"
</a>
button
</li>
<li>Open the installed app</li>
<li>
Click on the
<strong>"Import tunnels from file"</strong>
button
</li>
<li>
Go to the folder where you saved the configuration file and select
it
</li>
<li>
Click on the
<strong>"Connect"</strong>
button
</li>
<li>Done!</li>
</ol>
<h2>Linux</h2>
<h3>Installation from configuration file</h3>
<ol>
<li>
Before installing, check available updates on your system. Install
them if it necessary:
<!-- prettier-ignore -->
<code class="code-scroll-box">
# Ubuntu и Debian
sudo apt-get update && sudo apt-get upgrade
</code>
</li>
<li>
Run
<a href="https://www.wireguard.com/install/">
WireGuard installation via your distribution's package manager
</a>
:
<!-- prettier-ignore -->
<code class="code-scroll-box">
# Ubuntu и Debian
sudo apt-get install wireguard
</code>
</li>
<li>
Download the configuration file by clicking on the
<a href="/installation-ru.html#installation">
"Download configuration file"
</a>
button
</li>
<li>
Move the downloaded configuration file into the
<b>/etc/wireguard/</b>
directory:
<!-- prettier-ignore -->
<code class="code-scroll-box">sudo mv [file path]/frkn.conf/ etc/wireguard/</code>
</li>
<li>
Done!
<ol>
<li>
Use
<b>wg-quick</b>
command, to start the connection:
<!-- prettier-ignore -->
<code class="code-scroll-box">sudo wg-quick up frkn</code>
<details>
<summary>
<b>
/usr/bin/wg-quick: line 32: resolvconf: command not
found
</b>
error:
</summary>
<p>
If this error is thrown at the moment of trying to
connect, install the
<b>resolvconf</b>
package and try again:
</p>
<!-- prettier-ignore -->
<code class="code-scroll-box">
# Ubuntu и Debian
sudo apt-get install resolvconf && sudo wg-quick up frkn</code>
</details>
</li>
<li>
To find out the connection status, run run the following
command:
<code class="code-scroll-box">sudo wg show</code>
</li>
<li>
Use
<b>wg-quick</b>
command with
<b>down</b>
attribute to turn off the connection:
<!-- prettier-ignore -->
<code class="code-scroll-box">sudo wg-quick down frkn</code>
</li>
</ol>
</li>
</ol>
</div>
<div class="installation" id="installation">
<h2>QR-code and configuration file</h2>
<label>
<div class="installation__label">Server:</div>
<select class="installation__select loading" disabled>
<option value="" selected>🤷♂️ Not chosen</option>
</select>
</label>
<a
class="installation__link disabled"
data-disabled-text="Choose server"
data-text="Download configuration file"
>
Download configuration file
</a>
<div class="installation__error hidden">
Server is not available. Try again later.
</div>
<div class="installation__qr-wrapper disabled">
<img class="installation__qr" alt="Install via QR-code" />
</div>
</div>
</div>
</main>
<footer class="page-footer">
<div class="footer-wrapper">
<section class="footer-content">
<p class="white-text">
Vive la résistance
<br />
Contacts -
<a class="main__links white-text" href="mailto:wlan@cpan.org">
E-mail
</a>
</p>
</section>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/qrcode-svg@1.0.0/dist/qrcode.min.js"></script>
<script src="/scripts/installation.js"></script>
</body>
</html>