forked from X1Aaron/wireguard-install-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wireguard-server.sh
782 lines (738 loc) · 26.4 KB
/
wireguard-server.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
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
#!/bin/bash
# Secure WireGuard For CentOS, Debian, Ubuntu, Raspbian, Arch, Fedora, Redhat
# Check Root Function
function root-check() {
if [[ "$EUID" -ne 0 ]]; then
echo "Hello there non ROOT user, you need to run this as ROOT."
exit
fi
}
# Root Check
root-check
# Checking For Virtualization
function virt-check() {
# Deny OpenVZ
if [ "$(systemd-detect-virt)" == "openvz" ]; then
echo "OpenVZ virtualization is not supported (yet)."
exit
fi
# Deny LXC
if [ "$(systemd-detect-virt)" == "lxc" ]; then
echo "LXC virtualization is not supported (yet)."
exit
fi
}
# Virtualization Check
virt-check
# Detect Operating System
function dist-check() {
if [ -e /etc/centos-release ]; then
DISTRO="CentOS"
elif [ -e /etc/debian_version ]; then
DISTRO=$(lsb_release -is)
elif [ -e /etc/arch-release ]; then
DISTRO="Arch"
elif [ -e /etc/fedora-release ]; then
DISTRO="Fedora"
elif [ -e /etc/redhat-release ]; then
DISTRO="Redhat"
else
echo "Your distribution is not supported (yet)."
exit
fi
}
# Check Operating System
dist-check
# Wireguard Public Network Interface
WIREGUARD_PUB_NIC="wg0"
# Location For WG_CONFIG
WG_CONFIG="/etc/wireguard/$WIREGUARD_PUB_NIC.conf"
if [ ! -f "$WG_CONFIG" ]; then
# Yes or No For Questions
INTERACTIVE=${INTERACTIVE:-yes}
# Private Subnet Ipv4
PRIVATE_SUBNET_V4=${PRIVATE_SUBNET_V4:-"10.8.0.0/24"}
# Private Subnet Mask IPv4
PRIVATE_SUBNET_MASK_V4=$(echo "$PRIVATE_SUBNET_V4" | cut -d "/" -f 2)
# IPv4 Getaway
GATEWAY_ADDRESS_V4="${PRIVATE_SUBNET_V4::-4}1"
# Private Subnet Ipv6
PRIVATE_SUBNET_V6=${PRIVATE_SUBNET_V6:-"fd42:42:42::0/64"}
# Private Subnet Mask IPv6
PRIVATE_SUBNET_MASK_V6=$(echo "$PRIVATE_SUBNET_V6" | cut -d "/" -f 2)
# IPv6 Getaway
GATEWAY_ADDRESS_V6="${PRIVATE_SUBNET_V6::-4}1"
# Detect IPV4
function detect-ipv4() {
if type ping >/dev/null 2>&1; then
PING="ping -c3 google.com > /dev/null 2>&1"
else
PING6="ping -4 -c3 google.com > /dev/null 2>&1"
fi
if eval "$PING"; then
IPV4_SUGGESTION="y"
else
IPV4_SUGGESTION="n"
fi
}
# Detect IPV4
detect-ipv4
# Test outward facing IPV4
function test-connectivity-v4() {
if [ "$SERVER_HOST_V4" == "" ]; then
SERVER_HOST_V4="$(wget -qO- -t1 -T2 ipv4.icanhazip.com)"
if [ "$INTERACTIVE" == "yes" ]; then
read -rp "System public IPV4 address is $SERVER_HOST_V4. Is that correct? [y/n]: " -e -i "$IPV4_SUGGESTION" CONFIRM
if [ "$CONFIRM" == "n" ]; then
echo "Aborted. Use environment variable SERVER_HOST_V4 to set the correct public IP address."
fi
fi
fi
}
# Test IPV4 Connectivity
test-connectivity-v4
# Detect IPV6
function detect-ipv6() {
if type ping >/dev/null 2>&1; then
PING6="ping6 -c3 ipv6.google.com > /dev/null 2>&1"
else
PING6="ping -6 -c3 ipv6.google.com > /dev/null 2>&1"
fi
if eval "$PING6"; then
IPV6_SUGGESTION="y"
else
IPV6_SUGGESTION="n"
fi
}
# Test IPV6 Connectivity
detect-ipv6
# Test outward facing IPV6
function test-connectivity-v6() {
if [ "$SERVER_HOST_V6" == "" ]; then
SERVER_HOST_V6="$(wget -qO- -t1 -T2 ipv6.icanhazip.com)"
if [ "$INTERACTIVE" == "yes" ]; then
read -rp "System public IPV6 address is $SERVER_HOST_V6. Is that correct? [y/n]: " -e -i "$IPV6_SUGGESTION" CONFIRM
if [ "$CONFIRM" == "n" ]; then
echo "Aborted. Use environment variable SERVER_HOST_V6 to set the correct public IP address."
fi
fi
fi
}
# Test IPV6 Connectivity
test-connectivity-v6
# Detect public interface and pre-fill for the user
function server-pub-nic() {
if [ "$SERVER_PUB_NIC" == "" ]; then
SERVER_PUB_NIC="$(ip -4 route ls | grep default | grep -Po '(?<=dev )(\S+)' | head -1)"
if [ "$INTERACTIVE" == "yes" ]; then
read -rp "System public nic address is $SERVER_PUB_NIC. Is that correct? [y/n]: " -e -i y CONFIRM
if [ "$CONFIRM" == "n" ]; then
echo "Aborted. Use environment variable SERVER_PUB_NIC to set the correct public IP address."
fi
fi
fi
}
# Run The Function
server-pub-nic
# Determine host port
function set-port() {
echo "What port do you want WireGuard server to listen to?"
echo " 1) 51820 (Recommended)"
echo " 2) Custom (Advanced)"
echo " 3) Random [1024-65535]"
until [[ "$PORT_CHOICE" =~ ^[1-3]$ ]]; do
read -rp "Port choice [1-3]: " -e -i 1 PORT_CHOICE
done
# Apply port response
case $PORT_CHOICE in
1)
SERVER_PORT="51820"
;;
2)
until [[ "$SERVER_PORT" =~ ^[0-9]+$ ]] && [ "$SERVER_PORT" -ge 1 ] && [ "$SERVER_PORT" -le 65535 ]; do
read -rp "Custom port [1-65535]: " -e -i 51820 SERVER_PORT
done
;;
3)
SERVER_PORT=$(shuf -i1024-65535 -n1)
echo "Random Port: $SERVER_PORT"
;;
esac
}
# Set Port
set-port
# Determine Keepalive interval.
function nat-keepalive() {
echo "What do you want your keepalive interval to be?"
echo " 1) 25 (Default)"
echo " 2) 0 "
echo " 3) Custom (Advanced)"
until [[ "$NAT_CHOICE" =~ ^[1-3]$ ]]; do
read -rp "Nat Choice [1-3]: " -e -i 1 NAT_CHOICE
done
# Nat Choices
case $NAT_CHOICE in
1)
NAT_CHOICE="25"
;;
2)
NAT_CHOICE="0"
;;
3)
until [[ "$NAT_CHOICE " =~ ^[0-9]+$ ]] && [ "$NAT_CHOICE " -ge 1 ] && [ "$NAT_CHOICE " -le 25 ]; do
read -rp "Custom NAT [0-25]: " -e -i 25 NA_CHOICE
done
;;
esac
}
# Keepalive
nat-keepalive
# Custom MTU or default settings
function mtu-set() {
echo "What MTU do you want to use?"
echo " 1) 1280 (Recommended)"
echo " 1) 1420"
echo " 2) Custom (Advanced)"
until [[ "$MTU_CHOICE" =~ ^[1-3]$ ]]; do
read -rp "MTU choice [1-3]: " -e -i 1 MTU_CHOICE
done
case $MTU_CHOICE in
1)
MTU_CHOICE="1280"
;;
2)
MTU_CHOICE="1420"
;;
3)
until [[ "$MTU_CHOICE" =~ ^[0-9]+$ ]] && [ "$MTU_CHOICE" -ge 1 ] && [ "$MTU_CHOICE" -le 1500 ]; do
read -rp "Custom MTU [1-1500]: " -e -i 1500 MTU_CHOICE
done
;;
esac
}
# Set MTU
mtu-set
# What ip version would you like to be available on this VPN?
function ipvx-select() {
echo "What IPv do you want to use to connect to WireGuard server?"
echo " 1) IPv4 (Recommended)"
echo " 2) IPv6 (Advanced)"
until [[ "$SERVER_HOST" =~ ^[1-2]$ ]]; do
read -rp "IP Choice [1-2]: " -e -i 1 SERVER_HOST
done
case $SERVER_HOST in
1)
SERVER_HOST="$SERVER_HOST_V4"
;;
2)
SERVER_HOST="[$SERVER_HOST_V6]"
;;
esac
}
# IPv4 or IPv6 Selector
ipvx-select
# Do you want to disable IPv4 or IPv6 or leave them both enabled?
function disable-ipvx() {
echo "Do you want to disable IPv4 or IPv6 on the server?"
echo " 1) No (Recommended)"
echo " 2) IPV4"
echo " 3) IPV6"
until [[ "$DISABLE_HOST" =~ ^[1-3]$ ]]; do
read -rp "Disable Host Choice [1-3]: " -e -i 1 DISABLE_HOST
done
case $DISABLE_HOST in
1)
DISABLE_HOST="$(
echo "net.ipv4.ip_forward=1" >>/etc/sysctl.d/wireguard.conf
echo "net.ipv6.conf.all.forwarding=1" >>/etc/sysctl.d/wireguard.conf
sysctl --system
)"
;;
2)
DISABLE_HOST="$(
echo "net.ipv4.conf.all.disable_ipv4=1" >>/etc/sysctl.d/wireguard.conf
echo "net.ipv4.conf.default.disable_ipv4=1" >>/etc/sysctl.d/wireguard.conf
echo "net.ipv6.conf.all.forwarding=1" >>/etc/sysctl.d/wireguard.conf
sysctl --system
)"
;;
3)
DISABLE_HOST="$(
echo "net.ipv6.conf.all.disable_ipv6 = 1" >>/etc/sysctl.d/wireguard.conf
echo "net.ipv6.conf.default.disable_ipv6 = 1" >>/etc/sysctl.d/wireguard.conf
echo "net.ipv6.conf.lo.disable_ipv6 = 1" >>/etc/sysctl.d/wireguard.conf
echo "net.ipv4.ip_forward=1" >>/etc/sysctl.d/wireguard.conf
sysctl --system
)"
;;
esac
}
# Disable Ipv4 or Ipv6
disable-ipvx
# Would you like to allow connections to your LAN neighbors?
function client-allowed-ip() {
echo "What traffic do you want the client to forward to wireguard?"
echo " 1) Everything (Recommended)"
echo " 2) Exclude Private IPs (Allows LAN IP connections)"
until [[ "$CLIENT_ALLOWED_IP" =~ ^[1-2]$ ]]; do
read -rp "Client Allowed IP Choice [1-2]: " -e -i 1 CLIENT_ALLOWED_IP
done
case $CLIENT_ALLOWED_IP in
1)
CLIENT_ALLOWED_IP="0.0.0.0/0,::/0"
;;
2)
CLIENT_ALLOWED_IP="0.0.0.0/1,128.0.0.0/1,::/1,8000::/1"
;;
esac
}
# Traffic Forwarding
client-allowed-ip
# Would you like to install Unbound.
function ask-install-dns() {
read -rp "Do You Want To Install Unbound (y/n): " -e -i y INSTALL_UNBOUND
if [ "$INSTALL_UNBOUND" == "n" ]; then
echo "Which DNS do you want to use with the VPN?"
echo " 1) AdGuard (Recommended)"
echo " 2) Google"
echo " 3) OpenDNS"
echo " 4) Cloudflare"
echo " 5) Verisign"
echo " 6) Quad9"
echo " 7) FDN"
echo " 8) DNS.WATCH"
echo " 9) Yandex Basic"
echo " 10) Clean Browsing"
read -rp "DNS [1-10]: " -e -i 1 DNS_CHOICE
case $DNS_CHOICE in
1)
CLIENT_DNS="176.103.130.130,176.103.130.131,2a00:5a60::ad1:0ff,2a00:5a60::ad2:0ff"
;;
2)
CLIENT_DNS="8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844"
;;
3)
CLIENT_DNS="208.67.222.222,208.67.220.220,2620:119:35::35,2620:119:53::53"
;;
4)
CLIENT_DNS="1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001"
;;
5)
CLIENT_DNS="64.6.64.6,64.6.65.6,2620:74:1b::1:1,2620:74:1c::2:2"
;;
6)
CLIENT_DNS="9.9.9.9,149.112.112.112,2620:fe::fe,2620:fe::9"
;;
7)
CLIENT_DNS="80.67.169.40,80.67.169.12,2001:910:800::40,2001:910:800::12"
;;
8)
CLIENT_DNS="84.200.69.80,84.200.70.40,2001:1608:10:25::1c04:b12f,2001:1608:10:25::9249:d69b"
;;
9)
CLIENT_DNS="77.88.8.8,77.88.8.1,2a02:6b8::feed:0ff,2a02:6b8:0:1::feed:0ff"
;;
10)
CLIENT_DNS="185.228.168.9,185.228.169.9,2a0d:2a00:1::2,2a0d:2a00:2::2"
;;
esac
fi
}
# Ask To Install DNS
ask-install-dns
# What would you like to name your first WireGuard peer?
function client-name() {
echo "Tell me a name for the client config file. Use one word only, no special characters. (No Spaces)"
read -rp "Client Name: " -e CLIENT_NAME
}
# Client Name
client-name
# Install WireGuard Server
function install-wireguard-server() {
# Installation begins here.
if [ "$DISTRO" == "Ubuntu" ]; then
apt-get update
apt-get install software-properties-common -y
add-apt-repository ppa:wireguard/wireguard -y
apt-get update
apt-get install wireguard qrencode ntpdate linux-headers-"$(uname -r)" haveged -y
elif [ "$DISTRO" == "Debian" ]; then
apt-get update
echo "deb http://deb.debian.org/debian/ unstable main" >/etc/apt/sources.list.d/unstable.list
printf 'Package: *\nPin: release a=unstable\nPin-Priority: 90\n' >/etc/apt/preferences.d/limit-unstable
apt-get update
apt-get install wireguard qrencode ntpdate linux-headers-"$(uname -r)" haveged -y
elif [ "$DISTRO" == "Raspbian" ]; then
apt-get update
echo "deb http://deb.debian.org/debian/ unstable main" >/etc/apt/sources.list.d/unstable.list
apt-get install dirmngr -y
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 04EE7237B7D453EC
printf 'Package: *\nPin: release a=unstable\nPin-Priority: 90\n' >/etc/apt/preferences.d/limit-unstable
apt-get update
apt-get install wireguard qrencode ntpdate raspberrypi-kernel-headers haveged -y
elif [ "$DISTRO" == "Arch" ]; then
pacman -S linux-headers wireguard-tools wireguard-arch haveged qrencode ntp
elif [ "$DISTRO" = 'Fedora' ]; then
dnf update -y
dnf copr enable jdoss/wireguard -y
dnf install qrencode ntpdate kernel-headers-"$(uname -r)" kernel-devel-"$(uname -r)" wireguard-dkms wireguard-tools haveged -y
elif [ "$DISTRO" == "CentOS" ]; then
yum update -y
wget -O /etc/yum.repos.d/wireguard.repo https://copr.fedorainfracloud.org/coprs/jdoss/wireguard/repo/epel-7/jdoss-wireguard-epel-7.repo
yum install epel-release -y
yum install wireguard-dkms wireguard-tools qrencode ntpdate kernel-headers-"$(uname -r)" kernel-devel-"$(uname -r)" haveged -y
elif [ "$DISTRO" == "Redhat" ]; then
yum update -y
wget -O /etc/yum.repos.d/wireguard.repo https://copr.fedorainfracloud.org/coprs/jdoss/wireguard/repo/epel-7/jdoss-wireguard-epel-7.repo
yum install epel-release -y
yum install wireguard-dkms wireguard-tools qrencode ntpdate kernel-headers-"$(uname -r)" kernel-devel-"$(uname -r)" haveged -y
fi
}
# Install WireGuard Server
install-wireguard-server
# Function to install unbound
function install-unbound() {
if [ "$INSTALL_UNBOUND" = "y" ]; then
# Installation Begins Here
if [ "$DISTRO" == "Ubuntu" ]; then
# Install Unbound
apt-get install unbound unbound-host e2fsprogs -y
# Set Config
echo 'server:
num-threads: 4
verbosity: 1
root-hints: "/etc/unbound/root.hints"
auto-trust-anchor-file: "/var/lib/unbound/root.key"
interface: 0.0.0.0
interface: ::0
max-udp-size: 3072
access-control: 0.0.0.0/0 refuse
access-control: 10.8.0.0/24 allow
private-address: 10.8.0.0/24
hide-identity: yes
hide-version: yes
harden-glue: yes
harden-dnssec-stripped: yes
harden-referral-path: yes
unwanted-reply-threshold: 10000000
val-log-level: 1
cache-min-ttl: 1800
cache-max-ttl: 14400
prefetch: yes
qname-minimisation: yes
prefetch-key: yes' >/etc/unbound/unbound.conf
# Apply settings
systemctl stop systemd-resolved
systemctl disable systemd-resolved
elif [ "$DISTRO" == "Debian" ]; then
# Install Unbound
apt-get install unbound unbound-host e2fsprogs -y
# Set Config
echo 'server:
num-threads: 4
verbosity: 1
root-hints: "/etc/unbound/root.hints"
auto-trust-anchor-file: "/var/lib/unbound/root.key"
interface: 0.0.0.0
interface: ::0
max-udp-size: 3072
access-control: 0.0.0.0/0 refuse
access-control: 10.8.0.0/24 allow
private-address: 10.8.0.0/24
hide-identity: yes
hide-version: yes
harden-glue: yes
harden-dnssec-stripped: yes
harden-referral-path: yes
unwanted-reply-threshold: 10000000
val-log-level: 1
cache-min-ttl: 1800
cache-max-ttl: 14400
prefetch: yes
qname-minimisation: yes
prefetch-key: yes' >/etc/unbound/unbound.conf
elif [ "$DISTRO" == "Raspbian" ]; then
# Install Unbound
apt-get install unbound unbound-host e2fsprogs -y
# Set Config
echo 'server:
num-threads: 4
verbosity: 1
root-hints: "/etc/unbound/root.hints"
auto-trust-anchor-file: "/var/lib/unbound/root.key"
interface: 0.0.0.0
interface: ::0
max-udp-size: 3072
access-control: 0.0.0.0/0 refuse
access-control: 10.8.0.0/24 allow
private-address: 10.8.0.0/24
hide-identity: yes
hide-version: yes
harden-glue: yes
harden-dnssec-stripped: yes
harden-referral-path: yes
unwanted-reply-threshold: 10000000
val-log-level: 1
cache-min-ttl: 1800
cache-max-ttl: 14400
prefetch: yes
qname-minimisation: yes
prefetch-key: yes' >/etc/unbound/unbound.conf
elif [[ "$DISTRO" == "CentOS" ]]; then
# Install Unbound
yum install unbound unbound-libs -y
sed -i 's|# interface: 0.0.0.0$|interface: 10.8.0.1|' /etc/unbound/unbound.conf
sed -i 's|# access-control: 127.0.0.0/8 allow|access-control: 10.8.0.1/24 allow|' /etc/unbound/unbound.conf
sed -i 's|# hide-identity: no|hide-identity: yes|' /etc/unbound/unbound.conf
sed -i 's|# hide-version: no|hide-version: yes|' /etc/unbound/unbound.conf
sed -i 's|use-caps-for-id: no|use-caps-for-id: yes|' /etc/unbound/unbound.conf
elif [[ "$DISTRO" == "Fedora" ]]; then
dnf install unbound unbound-host -y
sed -i 's|# interface: 0.0.0.0$|interface: 10.8.0.1|' /etc/unbound/unbound.conf
sed -i 's|# access-control: 127.0.0.0/8 allow|access-control: 10.8.0.1/24 allow|' /etc/unbound/unbound.conf
sed -i 's|# hide-identity: no|hide-identity: yes|' /etc/unbound/unbound.conf
sed -i 's|# hide-version: no|hide-version: yes|' /etc/unbound/unbound.conf
sed -i 's|use-caps-for-id: no|use-caps-for-id: yes|' /etc/unbound/unbound.conf
elif [[ "$DISTRO" == "Arch" ]]; then
pacman -S unbound unbound-host
mv /etc/unbound/unbound.conf /etc/unbound/unbound.conf.old
echo 'server:
use-syslog: yes
do-daemonize: no
username: "unbound"
directory: "/etc/unbound"
trust-anchor-file: trusted-key.key
root-hints: root.hints
interface: 10.8.0.0
access-control: 10.8.0.0 allow
port: 53
num-threads: 2
use-caps-for-id: yes
harden-glue: yes
hide-identity: yes
hide-version: yes
qname-minimisation: yes
prefetch: yes' >/etc/unbound/unbound.conf
fi
# Set DNS Root Servers
wget -O /etc/unbound/root.hints https://www.internic.net/domain/named.cache
# Setting Client DNS For Unbound On WireGuard
CLIENT_DNS="10.8.0.1"
# Allow the modification of the file
chattr -i /etc/resolv.conf
# Disable previous DNS servers
sed -i "s|nameserver|#nameserver|" /etc/resolv.conf
sed -i "s|search|#search|" /etc/resolv.conf
# Set localhost as the DNS resolver
echo "nameserver 127.0.0.1" >> /etc/resolv.conf
# Use -i to enable modifications
chattr +i /etc/resolv.conf
# Restart unbound
if pgrep systemd-journal; then
systemctl enable unbound
systemctl restart unbound
else
service unbound restart
fi
fi
}
# Running Install Unbound
install-unbound
# WireGuard Set Config
function wireguard-setconf() {
SERVER_PRIVKEY=$(wg genkey)
SERVER_PUBKEY=$(echo "$SERVER_PRIVKEY" | wg pubkey)
CLIENT_PRIVKEY=$(wg genkey)
CLIENT_PUBKEY=$(echo "$CLIENT_PRIVKEY" | wg pubkey)
CLIENT_ADDRESS_V4="${PRIVATE_SUBNET_V4::-4}3"
CLIENT_ADDRESS_V6="${PRIVATE_SUBNET_V6::-4}3"
PRESHARED_KEY=$(wg genpsk)
mkdir -p /etc/wireguard
mkdir -p /etc/wireguard/clients
touch $WG_CONFIG && chmod 600 $WG_CONFIG
# Set Wireguard settings for this host and first peer.
echo "# $PRIVATE_SUBNET_V4 $PRIVATE_SUBNET_V6 $SERVER_HOST:$SERVER_PORT $SERVER_PUBKEY $CLIENT_DNS $MTU_CHOICE $NAT_CHOICE $CLIENT_ALLOWED_IP
[Interface]
Address = $GATEWAY_ADDRESS_V4/$PRIVATE_SUBNET_MASK_V4,$GATEWAY_ADDRESS_V6/$PRIVATE_SUBNET_MASK_V6
ListenPort = $SERVER_PORT
PrivateKey = $SERVER_PRIVKEY
PostUp = iptables -A FORWARD -o $WIREGUARD_PUB_NIC; iptables -A FORWARD -i $WIREGUARD_PUB_NIC -j ACCEPT; iptables -t nat -A POSTROUTING -o $SERVER_PUB_NIC -j MASQUERADE; ip6tables -A FORWARD -i $WIREGUARD_PUB_NIC -j ACCEPT; ip6tables -t nat -A POSTROUTING -o $SERVER_PUB_NIC -j MASQUERADE; iptables -A INPUT -s $PRIVATE_SUBNET_V4 -p udp -m udp --dport 53 -m conntrack --ctstate NEW -j ACCEPT
PostDown = iptables -D FORWARD -o $WIREGUARD_PUB_NIC; iptables -D FORWARD -i $WIREGUARD_PUB_NIC -j ACCEPT; iptables -t nat -D POSTROUTING -o $SERVER_PUB_NIC -j MASQUERADE; ip6tables -D FORWARD -i $WIREGUARD_PUB_NIC -j ACCEPT; ip6tables -t nat -D POSTROUTING -o $SERVER_PUB_NIC -j MASQUERADE; iptables -D INPUT -s $PRIVATE_SUBNET_V4 -p udp -m udp --dport 53 -m conntrack --ctstate NEW -j ACCEPT
SaveConfig = false
# $CLIENT_NAME start
[Peer]
PublicKey = $CLIENT_PUBKEY
PresharedKey = $PRESHARED_KEY
AllowedIPs = $CLIENT_ADDRESS_V4/32,$CLIENT_ADDRESS_V6/128
# $CLIENT_NAME end" >$WG_CONFIG
echo "# $CLIENT_NAME
[Interface]
Address = $CLIENT_ADDRESS_V4/$PRIVATE_SUBNET_MASK_V4,$CLIENT_ADDRESS_V6/$PRIVATE_SUBNET_MASK_V6
DNS = $CLIENT_DNS
MTU = $MTU_CHOICE
PrivateKey = $CLIENT_PRIVKEY
[Peer]
AllowedIPs = $CLIENT_ALLOWED_IP
Endpoint = $SERVER_HOST:$SERVER_PORT
PersistentKeepalive = $NAT_CHOICE
PresharedKey = $PRESHARED_KEY
PublicKey = $SERVER_PUBKEY" >"/etc/wireguard/clients"/"$CLIENT_NAME"-$WIREGUARD_PUB_NIC.conf
# Generate QR Code
qrencode -t ansiutf8 -l L <"/etc/wireguard/clients"/"$CLIENT_NAME"-$WIREGUARD_PUB_NIC.conf
# Echo the file
echo "Client Config --> "/etc/wireguard/clients"/"$CLIENT_NAME"-$WIREGUARD_PUB_NIC.conf"
# Restart WireGuard
if pgrep systemd-journal; then
systemctl enable wg-quick@$WIREGUARD_PUB_NIC
systemctl restart wg-quick@$WIREGUARD_PUB_NIC
else
service wg-quick@$WIREGUARD_PUB_NIC restart
fi
}
# Setting Up Wireguard Config
wireguard-setconf
# Setup Network Time Protocol To Correct Server.
ntpdate pool.ntp.org
# After WireGuard Install
else
# Already installed what next?
function wireguard-next-questions() {
echo "Looks like Wireguard is already installed."
echo "What do you want to do?"
echo " 1) Add A New WireGuard User"
echo " 2) Remove User From WireGuard"
echo " 3) Uninstall WireGuard"
echo " 4) Exit"
until [[ "$WIREGUARD_OPTIONS" =~ ^[1-4]$ ]]; do
read -rp "Select an Option [1-4]: " -e -i 1 WIREGUARD_OPTIONS
done
case $WIREGUARD_OPTIONS in
1)
echo "Tell me a new name for the client config file. Use one word only, no special characters. (No Spaces)"
read -rp "New client name: " -e NEW_CLIENT_NAME
CLIENT_PRIVKEY=$(wg genkey)
CLIENT_PUBKEY=$(echo "$CLIENT_PRIVKEY" | wg pubkey)
PRESHARED_KEY=$(wg genpsk)
PRIVATE_SUBNET_V4=$(head -n1 $WG_CONFIG | awk '{print $2}')
PRIVATE_SUBNET_MASK_V4=$(echo "$PRIVATE_SUBNET_V4" | cut -d "/" -f 2)
PRIVATE_SUBNET_V6=$(head -n1 $WG_CONFIG | awk '{print $3}')
PRIVATE_SUBNET_MASK_V6=$(echo "$PRIVATE_SUBNET_V6" | cut -d "/" -f 2)
SERVER_HOST=$(head -n1 $WG_CONFIG | awk '{print $4}')
SERVER_PUBKEY=$(head -n1 $WG_CONFIG | awk '{print $5}')
CLIENT_DNS=$(head -n1 $WG_CONFIG | awk '{print $6}')
MTU_CHOICE=$(head -n1 $WG_CONFIG | awk '{print $7}')
NAT_CHOICE=$(head -n1 $WG_CONFIG | awk '{print $8}')
CLIENT_ALLOWED_IP=$(head -n1 $WG_CONFIG | awk '{print $9}')
LASTIP4=$(grep "/32" $WG_CONFIG | tail -n1 | awk '{print $3}' | cut -d "/" -f 1 | cut -d "." -f 4)
LASTIP6=$(grep "/128" $WG_CONFIG | tail -n1 | awk '{print $3}' | cut -d "/" -f 1 | cut -d "." -f 4)
CLIENT_ADDRESS_V4="${PRIVATE_SUBNET_V4::-4}$((LASTIP4 + 1))"
CLIENT_ADDRESS_V6="${PRIVATE_SUBNET_V6::-4}$((LASTIP6 + 1))"
echo "# $NEW_CLIENT_NAME start
[Peer]
PublicKey = $CLIENT_PUBKEY
PresharedKey = $PRESHARED_KEY
AllowedIPs = $CLIENT_ADDRESS_V4/32,$CLIENT_ADDRESS_V6/128
# $NEW_CLIENT_NAME end" >>$WG_CONFIG
echo "# $NEW_CLIENT_NAME
[Interface]
Address = $CLIENT_ADDRESS_V4/$PRIVATE_SUBNET_MASK_V4,$CLIENT_ADDRESS_V6/$PRIVATE_SUBNET_MASK_V6
DNS = $CLIENT_DNS
MTU = $MTU_CHOICE
PrivateKey = $CLIENT_PRIVKEY
[Peer]
AllowedIPs = $CLIENT_ALLOWED_IP
Endpoint = $SERVER_HOST$SERVER_PORT
PersistentKeepalive = $NAT_CHOICE
PresharedKey = $PRESHARED_KEY
PublicKey = $SERVER_PUBKEY" >"/etc/wireguard/clients"/"$NEW_CLIENT_NAME"-$WIREGUARD_PUB_NIC.conf
qrencode -t ansiutf8 -l L <"/etc/wireguard/clients"/"$NEW_CLIENT_NAME"-$WIREGUARD_PUB_NIC.conf
echo "Client config --> "/etc/wireguard/clients"/"$NEW_CLIENT_NAME"-$WIREGUARD_PUB_NIC.conf"
# Restart WireGuard
if pgrep systemd-journal; then
systemctl restart wg-quick@$WIREGUARD_PUB_NIC
else
service wg-quick@$WIREGUARD_PUB_NIC restart
fi
;;
2)
# Remove User
echo "Which WireGuard User Do You Want To Remove?"
cat $WG_CONFIG | grep start | awk '{ print $2 }'
read -rp "Type in Client Name : " -e REMOVECLIENT
read -rp "Are you sure you want to remove $REMOVECLIENT ? (y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]; then
echo
sed -i "/\# $REMOVECLIENT start/,/\# $REMOVECLIENT end/d" $WG_CONFIG
fi
exit
if pgrep systemd-journal; then
systemctl restart wg-quick@$WIREGUARD_PUB_NIC
else
service wg-quick@$WIREGUARD_PUB_NIC restart
fi
echo "Client named $REMOVECLIENT has been removed."
;;
3)
# Uninstall Wireguard and purging files
read -rp "Do you really want to remove Wireguard? [y/n]:" -e -i n REMOVE_WIREGUARD
if [ "$DISTRO" == "CentOS" ]; then
wg-quick down $WIREGUARD_PUB_NIC
yum remove wireguard qrencode ntpdate haveged unbound unbound-host -y
elif [ "$DISTRO" == "Debian" ]; then
wg-quick down $WIREGUARD_PUB_NIC
apt-get remove --purge wireguard qrencode ntpdate haveged unbound unbound-host -y
apt-get autoremove -y
elif [ "$DISTRO" == "Ubuntu" ]; then
wg-quick down $WIREGUARD_PUB_NIC
apt-get remove --purge wireguard qrencode ntpdate haveged unbound unbound-host -y
apt-get autoremove -y
elif [ "$DISTRO" == "Raspbian" ]; then
wg-quick down $WIREGUARD_PUB_NIC
apt-get remove --purge wireguard qrencode ntpdate haveged unbound unbound-host dirmngr -y
apt-get autoremove -y
elif [ "$DISTRO" == "Arch" ]; then
wg-quick down $WIREGUARD_PUB_NIC
pacman -Rs wireguard qrencode ntpdate haveged unbound unbound-host -y
elif [ "$DISTRO" == "Fedora" ]; then
wg-quick down $WIREGUARD_PUB_NIC
dnf remove wireguard qrencode ntpdate haveged unbound unbound-host -y
elif [ "$DISTRO" == "Redhat" ]; then
wg-quick down $WIREGUARD_PUB_NIC
yum remove wireguard qrencode ntpdate haveged unbound unbound-host -y
fi
# Removing Wireguard Files
rm -rf /etc/wireguard
# Removing Wireguard User Config Files
rm -rf /etc/wireguard/clients
# Removing Unbound Files
rm -rf /etc/unbound
# Removing Qrencode
rm -rf /etc/qrencode
# Removing system wireguard config
rm -f /etc/sysctl.d/wireguard.conf
# Removing wireguard config
rm -f /etc/wireguard/$WIREGUARD_PUB_NIC.conf
# Removing Unbound Config
rm -f /etc/unbound/unbound.conf
# Removing NTP config
rm -f /etc/ntp.conf
# Removing Haveged Config
rm -f /etc/default/haveged
# Allow the modification of the resolv file
chattr -i /etc/resolv.conf
# Disable previous DNS servers
sed -i "s|nameserver|#nameserver|" /etc/resolv.conf
sed -i "s|search|#search|" /etc/resolv.conf
# Set localhost as the DNS resolver
echo "nameserver 8.8.8.8" >> /etc/resolv.conf
# Use -i to enable modifications
chattr +i /etc/resolv.conf
;;
4)
exit
;;
esac
}
# Running Questions Command
wireguard-next-questions
fi