-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathedgewalker.sh
692 lines (625 loc) · 26.6 KB
/
edgewalker.sh
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
#!/bin/sh -e
########################################################################
########################################################################
########################################################################
# CHANGE THESE SETTINGS TO SUIT YOUR NEEDS
########################################################################
########################################################################
########################################################################
# Contact info that will be embedded in the Let's Encrypt Certificates
# used to secure the IPsec VPN. Be aware spammers may harvest the email
# ITU X.509 format, C=country L=location O=organization
X509="/C=UK/L=London/O=Fazal Majid/emailAddress=ssladministrator@majid.org"
# user name for the VPN account. Feel free to leave it unchanged,
# as it is mostly cosmetic
USERNAME=edgewalker
# each WireGuard client needs its own distinct key, so we pre-create N
# configs, adjust this for how many clients you expect to provision
# the number needs to be less than 254
WG_CLIENTS=32
########################################################################
########################################################################
########################################################################
# NO USER-SERVICEABLE PARTS BELOW
PATH=${PATH}:/usr/local/bin:/usr/sbin
export PATH
echo -n "What is the FQDN hostname to use? "
read hostname
#echo -n "What is the IKEv2 username? "
#read USERNAME
# these packages are not preinstalled on a vanilla OpenBSD 6.8 install
if [ ! -f /usr/local/bin/wget ]; then
pkg_add wget
fi
if [ ! -f /usr/local/bin/python3 ]; then
pkg_add python3
fi
# this package is used to generate the Apple .mobileconfig and Wireguard
# QR codes to make setting up your devices easier
if [ ! -f /usr/local/bin/qrencode ]; then
pkg_add libqrencode
fi
# generate 16-character random keys
secret=`python3 -c "import random,string;print(''.join(random.choice(string.ascii_letters+string.digits) for x in range(16)))"`
secret2=`python3 -c "import random,string;print(''.join(random.choice(string.ascii_letters+string.digits) for x in range(16)))"`
# generate random UUIDs for Apple VPN profile XML files
uuid=`python3 -c "import uuid;print(str(uuid.uuid1()).upper())"`
uuid2=`python3 -c "import uuid;print(str(uuid.uuid1()).upper())"`
printf '\033[1;33m%s\033[0m\n' "Username: $USERNAME"
printf '\033[1;33m%s\033[0m\n' "Secret: $secret"
printf '\033[1;33m%s\033[0m\n' "setting up sysctl.conf"
cat > /etc/sysctl.conf <<EOF
net.inet.ip.forwarding=1
net.inet.ip.redirect=0
net.inet.ipcomp.enable=1
net.inet.ah.enable=1
net.inet.esp.enable=1
net.inet.esp.udpencap=1
EOF
hcf=`ls -1 /etc/hostname.*|grep -v enc0|grep -v wg0|head -1`
main_if=`echo $hcf|cut -d. -f 2`
main_ip=`ifconfig $main_if|awk '/inet[^6]/{print $2}'`
########################################################################
printf '\033[1;33m%s\033[0m\n' "Setting up Unbound DNS server"
mkdir -p /etc/unbound
chown nobody:nobody /etc/unbound
(cd /etc/unbound; rm -f named.cache > /dev/null 2>&1 || true)
echo fetching root nameservers
(cd /etc/unbound; wget -c ftp://ftp.internic.net/domain/named.cache)
echo fetching clearing old root key
(cd /etc/unbound; rm -f root.key > /dev/null 2>&1 || true)
echo fetching root key
(cd /etc/unbound; unbound-anchor -v -a /etc/unbound/root.key || echo DNSSEC root key updated)
echo generating unbound.conf
cat > /etc/unbound/unbound.conf <<EOF
server:
verbosity: 1
log-queries: no
num-threads: 4
num-queries-per-thread: 1024
interface: ::1
interface: 127.0.0.1
interface: $main_ip
port: 53
outgoing-interface: $main_ip
outgoing-range: 64
chroot: ""
auto-trust-anchor-file: "/etc/unbound/root.key"
# Enable TCP, "yes" or "no".
# do-tcp: yes
# Detach from the terminal, run in background, "yes" or "no".
do-daemonize: yes
# control which clients are allowed to make (recursive) queries
# to this server. Specify classless netblocks with /size and action.
# By default everything is refused, except for localhost.
# Choose deny (drop message), refuse (polite error reply), allow.
access-control: 0.0.0.0/0 refuse
access-control: 127.0.0.0/8 allow
access-control: 10.0.0.0/8 allow
access-control: 172.16.0.0/12 allow
access-control: ::0/0 refuse
access-control: ::1 allow
username: "nobody"
directory: "/etc/unbound"
logfile: "/etc/unbound/unbound.log"
use-syslog: no
pidfile: "/etc/unbound/unbound.pid"
EOF
cat > /etc/rc.conf.local <<EOF
unbound_flags=-c /etc/unbound/unbound.conf
httpd_flags=-f /etc/iked/httpd.conf
iked_flags=-v -v -v -v -f /etc/iked.conf
EOF
rcctl stop unbound
rcctl start unbound
echo nameserver 127.0.0.1 > /etc/resolv.conf
########################################################################
printf '\033[1;33m%s\033[0m\n' "Setting up WireGuard"
wgnet="172.18.0.0/16"
# wireguard private key, see wg(4), hostname.if(5)
wgkey=`openssl rand -base64 32`
ifconfig wg0 $wgnet wgport 51820 wgkey $wgkey
echo "$wgnet wgport 51820 wgkey $wgkey" > /etc/hostname.wg0
wgpubkey=`ifconfig wg0|awk '/wgpubkey/{print $2}'`
mkdir -p /etc/iked/wwwroot/$secret2
mkdir -p /etc/iked/wwwroot/acme-challenge
# client keys, must be distinct from the server's and one another
i=0
while [ ! $i = $WG_CLIENTS ]; do
i=`expr $i + 1`
wgclientip="172.18.0."`expr $i + 1`
wgclientnet="$wgclientip/16"
wgclientkey=`openssl rand -base64 32`
ifconfig wg1 wgport 51821 wgkey $wgclientkey
wgclientpubkey=`ifconfig wg1|awk '/wgpubkey/{print $2}'`
ifconfig wg1 destroy
#ifconfig wg0 $wgnet wgport 51820 wgkey $wgkey wgpeer $wgclientpubkey wgaip $wgclientip
echo "wgpeer $wgclientpubkey wgaip $wgclientip" >> /etc/hostname.wg0
cat > /etc/iked/wwwroot/$secret2/wgclient$i.conf <<EOF
[Interface]
PrivateKey = $wgclientkey
Address = $wgclientnet
DNS = $main_ip
[Peer]
PublicKey = $wgpubkey
AllowedIPs = 0.0.0.0/0
Endpoint = $hostname:51820
PersistentKeepalive = 300
EOF
qrencode -o /etc/iked/wwwroot/$secret2/wgclient$i.png -t PNG < /etc/iked/wwwroot/$secret2/wgclient$i.conf
done
########################################################################
printf '\033[1;32m%s\033[0m\n' "Setting up PF"
ipsecnet="172.17.0.0/16"
printf '\033[1;33m%s\033[0m\n' "Primary net interface $main_if IPv4 $main_ip"
cat > /etc/pf.conf <<EOF
set skip on lo
match in all scrub (no-df)
block return log
pass
block in log on $main_if
block return in on ! lo0 proto tcp to port 6000:6010
block return out log proto {tcp udp} user _pbuild
# IPsec, over IP or over UDP
pass in quick on $main_if proto { ah esp } from any to $main_ip
pass in quick proto udp to $main_ip port {500 1701 4500}
pass out on $main_if inet from $ipsecnet to any nat-to $main_if
# Wireguard
pass in quick proto udp to $main_ip port 51820
pass on wg0
pass out on $main_if inet from $wgnet nat-to $main_if
# other services
pass in quick on $main_if proto tcp from any to $main_ip port 22
pass in quick on $main_if proto tcp from any to $main_ip port 80
pass in quick on $main_if proto tcp from any to $main_ip port 443
pass in log proto icmp
EOF
printf '\033[1;33m%s\033[0m\n' "Restarting network interfaces"
sh /etc/netstart
printf '\033[1;33m%s\033[0m\n' "Restarting PF"
pfctl -v -f /etc/pf.conf || (printf '\033[1;31m%s\033[0m\n' "PF failed"; cat /etc/pf.conf; false)
########################################################################
# Set up Let's Encrypt
mkdir -p /etc/iked/acme-tiny
ln -sf /etc/iked/wwwroot/acme-challenge /etc/iked/acme-tiny/challenges
cd /etc/iked/acme-tiny
# wget -q https://raw.githubusercontent.com/diafygi/acme-tiny/master/acme_tiny.py
cat > acme_tiny.py <<EOF
#!/usr/bin/env python
# Copyright Daniel Roesler, under MIT license, see LICENSE at github.com/diafygi/acme-tiny
import argparse, subprocess, json, os, sys, base64, binascii, time, hashlib, re, copy, textwrap, logging
try:
from urllib.request import urlopen, Request # Python 3
except ImportError:
from urllib2 import urlopen, Request # Python 2
DEFAULT_CA = "https://acme-v02.api.letsencrypt.org" # DEPRECATED! USE DEFAULT_DIRECTORY_URL INSTEAD
DEFAULT_DIRECTORY_URL = "https://acme-v02.api.letsencrypt.org/directory"
LOGGER = logging.getLogger(__name__)
LOGGER.addHandler(logging.StreamHandler())
LOGGER.setLevel(logging.INFO)
def get_crt(account_key, csr, acme_dir, log=LOGGER, CA=DEFAULT_CA, disable_check=False, directory_url=DEFAULT_DIRECTORY_URL, contact=None):
directory, acct_headers, alg, jwk = None, None, None, None # global variables
# helper functions - base64 encode for jose spec
def _b64(b):
return base64.urlsafe_b64encode(b).decode('utf8').replace("=", "")
# helper function - run external commands
def _cmd(cmd_list, stdin=None, cmd_input=None, err_msg="Command Line Error"):
proc = subprocess.Popen(cmd_list, stdin=stdin, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = proc.communicate(cmd_input)
if proc.returncode != 0:
raise IOError("{0}\n{1}".format(err_msg, err))
return out
# helper function - make request and automatically parse json response
def _do_request(url, data=None, err_msg="Error", depth=0):
try:
resp = urlopen(Request(url, data=data, headers={"Content-Type": "application/jose+json", "User-Agent": "acme-tiny"}))
resp_data, code, headers = resp.read().decode("utf8"), resp.getcode(), resp.headers
except IOError as e:
resp_data = e.read().decode("utf8") if hasattr(e, "read") else str(e)
code, headers = getattr(e, "code", None), {}
try:
resp_data = json.loads(resp_data) # try to parse json results
except ValueError:
pass # ignore json parsing errors
if depth < 100 and code == 400 and resp_data['type'] == "urn:ietf:params:acme:error:badNonce":
raise IndexError(resp_data) # allow 100 retrys for bad nonces
if code not in [200, 201, 204]:
raise ValueError("{0}:\nUrl: {1}\nData: {2}\nResponse Code: {3}\nResponse: {4}".format(err_msg, url, data, code, resp_data))
return resp_data, code, headers
# helper function - make signed requests
def _send_signed_request(url, payload, err_msg, depth=0):
payload64 = "" if payload is None else _b64(json.dumps(payload).encode('utf8'))
new_nonce = _do_request(directory['newNonce'])[2]['Replay-Nonce']
protected = {"url": url, "alg": alg, "nonce": new_nonce}
protected.update({"jwk": jwk} if acct_headers is None else {"kid": acct_headers['Location']})
protected64 = _b64(json.dumps(protected).encode('utf8'))
protected_input = "{0}.{1}".format(protected64, payload64).encode('utf8')
out = _cmd(["openssl", "dgst", "-sha256", "-sign", account_key], stdin=subprocess.PIPE, cmd_input=protected_input, err_msg="OpenSSL Error")
data = json.dumps({"protected": protected64, "payload": payload64, "signature": _b64(out)})
try:
return _do_request(url, data=data.encode('utf8'), err_msg=err_msg, depth=depth)
except IndexError: # retry bad nonces (they raise IndexError)
return _send_signed_request(url, payload, err_msg, depth=(depth + 1))
# helper function - poll until complete
def _poll_until_not(url, pending_statuses, err_msg):
result, t0 = None, time.time()
while result is None or result['status'] in pending_statuses:
assert (time.time() - t0 < 3600), "Polling timeout" # 1 hour timeout
time.sleep(0 if result is None else 2)
result, _, _ = _send_signed_request(url, None, err_msg)
return result
# parse account key to get public key
log.info("Parsing account key...")
out = _cmd(["openssl", "rsa", "-in", account_key, "-noout", "-text"], err_msg="OpenSSL Error")
pub_pattern = r"modulus:[\s]+?00:([a-f0-9\:\s]+?)\npublicExponent: ([0-9]+)"
pub_hex, pub_exp = re.search(pub_pattern, out.decode('utf8'), re.MULTILINE|re.DOTALL).groups()
pub_exp = "{0:x}".format(int(pub_exp))
pub_exp = "0{0}".format(pub_exp) if len(pub_exp) % 2 else pub_exp
alg = "RS256"
jwk = {
"e": _b64(binascii.unhexlify(pub_exp.encode("utf-8"))),
"kty": "RSA",
"n": _b64(binascii.unhexlify(re.sub(r"(\s|:)", "", pub_hex).encode("utf-8"))),
}
accountkey_json = json.dumps(jwk, sort_keys=True, separators=(',', ':'))
thumbprint = _b64(hashlib.sha256(accountkey_json.encode('utf8')).digest())
# find domains
log.info("Parsing CSR...")
out = _cmd(["openssl", "req", "-in", csr, "-noout", "-text"], err_msg="Error loading {0}".format(csr))
domains = set([])
common_name = re.search(r"Subject:.*? CN\s?=\s?([^\s,;/]+)", out.decode('utf8'))
if common_name is not None:
domains.add(common_name.group(1))
subject_alt_names = re.search(r"X509v3 Subject Alternative Name: (?:critical)?\n +([^\n]+)\n", out.decode('utf8'), re.MULTILINE|re.DOTALL)
if subject_alt_names is not None:
for san in subject_alt_names.group(1).split(", "):
if san.startswith("DNS:"):
domains.add(san[4:])
log.info("Found domains: {0}".format(", ".join(domains)))
# get the ACME directory of urls
log.info("Getting directory...")
directory_url = CA + "/directory" if CA != DEFAULT_CA else directory_url # backwards compatibility with deprecated CA kwarg
directory, _, _ = _do_request(directory_url, err_msg="Error getting directory")
log.info("Directory found!")
# create account, update contact details (if any), and set the global key identifier
log.info("Registering account...")
reg_payload = {"termsOfServiceAgreed": True}
account, code, acct_headers = _send_signed_request(directory['newAccount'], reg_payload, "Error registering")
log.info("Registered!" if code == 201 else "Already registered!")
if contact is not None:
account, _, _ = _send_signed_request(acct_headers['Location'], {"contact": contact}, "Error updating contact details")
log.info("Updated contact details:\n{0}".format("\n".join(account['contact'])))
# create a new order
log.info("Creating new order...")
order_payload = {"identifiers": [{"type": "dns", "value": d} for d in domains]}
order, _, order_headers = _send_signed_request(directory['newOrder'], order_payload, "Error creating new order")
log.info("Order created!")
# get the authorizations that need to be completed
for auth_url in order['authorizations']:
authorization, _, _ = _send_signed_request(auth_url, None, "Error getting challenges")
domain = authorization['identifier']['value']
log.info("Verifying {0}...".format(domain))
# find the http-01 challenge and write the challenge file
challenge = [c for c in authorization['challenges'] if c['type'] == "http-01"][0]
token = re.sub(r"[^A-Za-z0-9_\-]", "_", challenge['token'])
keyauthorization = "{0}.{1}".format(token, thumbprint)
wellknown_path = os.path.join(acme_dir, token)
with open(wellknown_path, "w") as wellknown_file:
wellknown_file.write(keyauthorization)
# check that the file is in place
try:
wellknown_url = "http://{0}/.well-known/acme-challenge/{1}".format(domain, token)
assert (disable_check or _do_request(wellknown_url)[0] == keyauthorization)
except (AssertionError, ValueError) as e:
raise ValueError("Wrote file to {0}, but couldn't download {1}: {2}".format(wellknown_path, wellknown_url, e))
# say the challenge is done
_send_signed_request(challenge['url'], {}, "Error submitting challenges: {0}".format(domain))
authorization = _poll_until_not(auth_url, ["pending"], "Error checking challenge status for {0}".format(domain))
if authorization['status'] != "valid":
raise ValueError("Challenge did not pass for {0}: {1}".format(domain, authorization))
os.remove(wellknown_path)
log.info("{0} verified!".format(domain))
# finalize the order with the csr
log.info("Signing certificate...")
csr_der = _cmd(["openssl", "req", "-in", csr, "-outform", "DER"], err_msg="DER Export Error")
_send_signed_request(order['finalize'], {"csr": _b64(csr_der)}, "Error finalizing order")
# poll the order to monitor when it's done
order = _poll_until_not(order_headers['Location'], ["pending", "processing"], "Error checking order status")
if order['status'] != "valid":
raise ValueError("Order failed: {0}".format(order))
# download the certificate
certificate_pem, _, _ = _send_signed_request(order['certificate'], None, "Certificate download failed")
log.info("Certificate signed!")
return certificate_pem
def main(argv=None):
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter,
description=textwrap.dedent("""\
This script automates the process of getting a signed TLS certificate from Let's Encrypt using
the ACME protocol. It will need to be run on your server and have access to your private
account key, so PLEASE READ THROUGH IT! It's only ~200 lines, so it won't take long.
Example Usage:
python acme_tiny.py --account-key ./account.key --csr ./domain.csr --acme-dir /usr/share/nginx/html/.well-known/acme-challenge/ > signed_chain.crt
Example Crontab Renewal (once per month):
0 0 1 * * python /path/to/acme_tiny.py --account-key /path/to/account.key --csr /path/to/domain.csr --acme-dir /usr/share/nginx/html/.well-known/acme-challenge/ > /path/to/signed_chain.crt 2>> /var/log/acme_tiny.log
""")
)
parser.add_argument("--account-key", required=True, help="path to your Let's Encrypt account private key")
parser.add_argument("--csr", required=True, help="path to your certificate signing request")
parser.add_argument("--acme-dir", required=True, help="path to the .well-known/acme-challenge/ directory")
parser.add_argument("--quiet", action="store_const", const=logging.ERROR, help="suppress output except for errors")
parser.add_argument("--disable-check", default=False, action="store_true", help="disable checking if the challenge file is hosted correctly before telling the CA")
parser.add_argument("--directory-url", default=DEFAULT_DIRECTORY_URL, help="certificate authority directory url, default is Let's Encrypt")
parser.add_argument("--ca", default=DEFAULT_CA, help="DEPRECATED! USE --directory-url INSTEAD!")
parser.add_argument("--contact", metavar="CONTACT", default=None, nargs="*", help="Contact details (e.g. mailto:aaa@bbb.com) for your account-key")
args = parser.parse_args(argv)
LOGGER.setLevel(args.quiet or LOGGER.level)
signed_crt = get_crt(args.account_key, args.csr, args.acme_dir, log=LOGGER, CA=args.ca, disable_check=args.disable_check, directory_url=args.directory_url, contact=args.contact)
sys.stdout.write(signed_crt)
if __name__ == "__main__": # pragma: no cover
main(sys.argv[1:])
EOF
chmod +x acme_tiny.py
cat > genkey <<SOP
#!/bin/sh
PATH=/usr/local/bin:/usr/local/ssl/bin:\$PATH
export PATH
cd /etc/iked/acme-tiny
printf '\033[1;31m%s\033[0m\n' vpn
if [ ! -f vpn.key ]; then
echo generating vpn.key
openssl genrsa -out vpn.key 4096
cp /etc/ssl/openssl.cnf /tmp/genkey.\$\$
cat >> /tmp/genkey.\$\$ <<EOF
[SAN]
subjectAltName=DNS:$hostname
EOF
openssl req -new -key vpn.key -out vpn.csr -nodes -subj \
"$X509/CN=$hostname" -config /tmp/genkey.\$\$ -reqexts SAN
rm /tmp/genkey.\$\$
fi
echo ""
SOP
chmod +x genkey
# get the Let's Encrypt certificate chain
rm lets-encrypt-r3-cross-signed.pem* > /dev/null 2>&1 || true
wget -q https://letsencrypt.org/certs/lets-encrypt-r3-cross-signed.pem
cp lets-encrypt-r3-cross-signed.pem /etc/iked/ca/ca.crt
if [ ! -f account.key ]; then
printf '\033[1;32m%s\033[0m\n' "Enter Let's Encrypt account.key"
echo "If you do not have a Let's Encrypt account key yet, use Step 1 of"
echo " https://gethttpsforfree.com/"
echo "to make one and register it."
echo ""
echo "Copy and paste your account secret key below, then press Control-D"
echo "------------------------------------------------------------------"
cat > account.key
fi
cat > renew <<SOP
#!/bin/sh
PATH=/usr/local/bin:/usr/local/ssl/bin:\$PATH
export PATH
set -e
cd /etc/iked/acme-tiny
printf '\033[1;32m%s\033[0m\n' "Renewing certificates"
cd /etc/iked/acme-tiny
if [ ! -f renew.last ]; then touch renew.last; fi
printf '\033[1;33m%s\033[0m\n' vpn
if test vpn.crt -nt renew.last -a -s vpn.crt ; then
echo skipping vpn
continue
fi
python3 acme_tiny.py --account-key ./account.key --csr ./vpn.csr \
--disable-check --acme-dir `pwd`/challenges/ > vpn.crt || exit
cp vpn.* /etc/iked/
cat vpn.crt lets-encrypt-r3-cross-signed.pem > /etc/iked/vpn.crt
cp vpn.crt /etc/iked/certs/$hostname.crt
touch renew.last
rcctl restart iked
rcctl restart httpd
SOP
chmod +x renew
printf '\033[1;32m%s\033[0m\n' "Setting up httpd"
mkdir -p /var/log/httpd
cat > /etc/iked/httpd.conf <<EOF
chroot "/etc/iked/acme-tiny/challenges"
logdir "/var/log/httpd"
server "default" {
listen on 0.0.0.0 port 80
location "/.well-known/acme-challenge/*" {
root "/"
request strip 2
}
}
EOF
rcctl stop httpd
rcctl start httpd
printf '\033[1;32m%s\033[0m\n' "Setting up OpenIKEd"
echo up > /etc/hostname.enc0
ifconfig enc0 up
cat > /etc/iked.conf <<EOF
ikev2 VPN passive ipcomp esp \
from 0.0.0.0/0 to 0.0.0.0/0 \
local $main_ip \
peer any \
srcid $hostname \
psk "$secret" \
config address $ipsecnet \
config name-server $main_ip \
config protected-subnet 0.0.0.0/0 \
tag "IKED" tap enc0
user $USERNAME $secret
EOF
chmod 600 /etc/iked.conf
printf '\033[1;32m%s\033[0m\n' "Getting LE certificates"
cd /etc/iked/acme-tiny
printf '\033[1;33m%s\033[0m\n' "Generating private keys"
./genkey
printf '\033[1;33m%s\033[0m\n' "Renewing certificates"
./renew
printf '\033[1;33m%s\033[0m\n' "Applying sysctl settings"
xargs -n 1 sysctl < /etc/sysctl.conf
printf '\033[1;33m%s\033[0m\n' "Starting OpenIKEd"
rcctl stop iked || true
rcctl start iked
########################################################################
# Apple Configurator 2 format for iDevices VPN. It will appear as "unsigned"
# in System Preferences, sadly
cat > /etc/iked/wwwroot/$secret2/$hostname.mobileconfig <<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<array>
<dict>
<key>IKEv2</key>
<dict>
<key>AuthenticationMethod</key>
<string>SharedSecret</string>
<key>ChildSecurityAssociationParameters</key>
<dict>
<key>DiffieHellmanGroup</key>
<integer>14</integer>
<key>EncryptionAlgorithm</key>
<string>AES-256</string>
<key>IntegrityAlgorithm</key>
<string>SHA2-256</string>
<key>LifeTimeInMinutes</key>
<integer>1440</integer>
</dict>
<key>DeadPeerDetectionRate</key>
<string>Medium</string>
<key>DisableMOBIKE</key>
<integer>0</integer>
<key>DisableRedirect</key>
<integer>0</integer>
<key>EnableCertificateRevocationCheck</key>
<integer>0</integer>
<key>EnableFallback</key>
<integer>0</integer>
<key>EnablePFS</key>
<true/>
<key>IKESecurityAssociationParameters</key>
<dict>
<key>DiffieHellmanGroup</key>
<integer>14</integer>
<key>EncryptionAlgorithm</key>
<string>AES-256-GCM</string>
<key>IntegrityAlgorithm</key>
<string>SHA2-256</string>
<key>LifeTimeInMinutes</key>
<integer>1440</integer>
</dict>
<key>LocalIdentifier</key>
<string>$USERNAME</string>
<key>RemoteAddress</key>
<string>$hostname</string>
<key>RemoteIdentifier</key>
<string>$hostname</string>
<key>SharedSecret</key>
<string>$secret</string>
<key>UseConfigurationAttributeInternalIPSubnet</key>
<integer>0</integer>
</dict>
<key>PayloadDescription</key>
<string>Configures VPN settings</string>
<key>PayloadDisplayName</key>
<string>VPN</string>
<key>PayloadIdentifier</key>
<string>com.apple.vpn.managed.$uuid</string>
<key>PayloadType</key>
<string>com.apple.vpn.managed</string>
<key>PayloadUUID</key>
<string>$uuid</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>Proxies</key>
<dict>
<key>HTTPEnable</key>
<integer>0</integer>
<key>HTTPSEnable</key>
<integer>0</integer>
</dict>
<key>UserDefinedName</key>
<string>$hostname</string>
<key>VPNType</key>
<string>IKEv2</string>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>$hostname</string>
<key>PayloadIdentifier</key>
<string>$hostname</string>
<key>PayloadRemovalDisallowed</key>
<false/>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>$uuid2</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</plist>
EOF
# Now that we've obtained our Let's Encrypt certificates, reconfigure
# the web server so it can serve the configuration files
printf '\033[1;33m%s\033[0m\n' "Enabling SSL on HTTPd"
echo "<h1>$hostname</h1>" > /etc/iked/wwwroot/index.html
qrencode -o /etc/iked/wwwroot/$secret2/$hostname.apple.png -t PNG https://$hostname/$secret2/$hostname.mobileconfig
cat > /etc/iked/wwwroot/$secret2/index.html <<EOF
<!DOCTYPE html>
<html>
<head>
<title>$hostname VPN config</title>
</head>
<body>
<h1>$hostname VPN config</h1>
<h2>Apple devices (iOS, iPadOS, macOS)</h2>
<a href="$hostname.mobileconfig">$hostname.mobileconfig</a>
<a href="$hostname.apple.png">(QR code)</a>
<h2>WireGuard</h2>
Each device needs its own key.
<ol>
EOF
i=0
while [ ! $i = $WG_CLIENTS ]; do
i=`expr $i + 1`
echo "<li><a href=\"wgclient$i.conf\">wgclient$i.conf</a> <a href=\"wgclient$i.png\">(QR code)</a>" >> /etc/iked/wwwroot/$secret2/index.html
done
cat >> /etc/iked/wwwroot/$secret2/index.html <<EOF
</ol>
</body>
</html>
EOF
cat > /etc/iked/httpd.conf <<EOF
chroot "/etc/iked/wwwroot"
logdir "/var/log/httpd"
server "$hostname" {
listen on * port 80
root "/"
location "/.well-known/acme-challenge/*" {
request strip 1
}
location * {
block return 302 "https://\$HTTP_HOST\$REQUEST_URI"
}
}
server "$hostname" {
listen on * tls port 443
tls {
key "/etc/iked/vpn.key"
certificate "/etc/iked/vpn.crt"
}
root "/"
}
EOF
rcctl stop httpd
rcctl start httpd
########################################################################
printf '\033[1;33m%s\033[0m\n' "VPN config page QR code"
# This QR encoding is small enough to fit in a standard 80x24 terminal window,
# but doesn't work on older terminals like the OpenBSD console's vt220
#qrencode -o - -t ANSI https://$hostname/$secret2/$hostname.mobileconfig
qrencode -o - -t UTF8 https://$hostname/$secret2/
echo https://$hostname/$secret2/