forked from eduvpn/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy_debian.sh
executable file
·187 lines (140 loc) · 6.27 KB
/
deploy_debian.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
#!/bin/sh
#
# Deploy a single VPN machine
#
###############################################################################
# CONFIGURATION
###############################################################################
MACHINE_HOSTNAME=$(hostname -f)
# DNS name of the Web Server
printf "DNS name of the Web Server [%s]: " "${MACHINE_HOSTNAME}"; read -r WEB_FQDN
WEB_FQDN=${WEB_FQDN:-${MACHINE_HOSTNAME}}
###############################################################################
# SOFTWARE
###############################################################################
apt update
DEBIAN_FRONTEND=noninteractive apt install -y apt-transport-https curl \
apache2 php-fpm pwgen iptables-persistent sudo locales-all
curl -L https://repo.letsconnect-vpn.org/2/deb/release/stretch/LC.key | apt-key add -
echo "deb https://repo.letsconnect-vpn.org/2/deb/release/stretch stretch main" > /etc/apt/sources.list.d/LC.list
apt update
# install software (VPN packages)
DEBIAN_FRONTEND=noninteractive apt install -y vpn-server-node vpn-server-api \
vpn-user-portal vpn-maint-scripts
###############################################################################
# LOCALES
###############################################################################
# enable the NL locales
sed -i 's/^# nl_NL/nl_NL/' /etc/locale.gen
# Generate the enabled locales
locale-gen
###############################################################################
# CERTIFICATE
###############################################################################
# generate self signed certificate and key
openssl req \
-nodes \
-subj "/CN=${WEB_FQDN}" \
-x509 \
-sha256 \
-newkey rsa:2048 \
-keyout "/etc/ssl/private/${WEB_FQDN}.key" \
-out "/etc/ssl/certs/${WEB_FQDN}.crt" \
-days 90
###############################################################################
# APACHE
###############################################################################
a2enmod ssl headers rewrite proxy_fcgi setenvif
a2dismod status
a2enconf php7.0-fpm
# VirtualHost
cp resources/ssl.debian.conf /etc/apache2/mods-available/ssl.conf
cp resources/vpn.example.debian.conf "/etc/apache2/sites-available/${WEB_FQDN}.conf"
cp resources/localhost.debian.conf /etc/apache2/sites-available/localhost.conf
# update hostname
sed -i "s/vpn.example/${WEB_FQDN}/" "/etc/apache2/sites-available/${WEB_FQDN}.conf"
a2enconf vpn-server-api
a2enconf vpn-user-portal
a2dissite 000-default
a2ensite "${WEB_FQDN}"
a2ensite localhost
###############################################################################
# PHP
###############################################################################
# set timezone to UTC
cp resources/70-timezone.ini /etc/php/7.0/mods-available/lc-timezone.ini
phpenmod -v 7.0 -s ALL lc-timezone
# restart php-fpm to read the new configuration
systemctl restart php7.0-fpm
###############################################################################
# VPN-SERVER-API
###############################################################################
# update the IPv4 CIDR and IPv6 prefix to random IP ranges
vpn-server-api-update-ip --profile internet --host "${WEB_FQDN}"
# initialize the CA
sudo -u www-data vpn-server-api-init
###############################################################################
# VPN-USER-PORTAL
###############################################################################
# DB init
sudo -u www-data vpn-user-portal-init
###############################################################################
# NETWORK
###############################################################################
cat << EOF > /etc/sysctl.d/70-vpn.conf
net.ipv4.ip_forward = 1
net.ipv6.conf.all.forwarding = 1
# allow RA for IPv6 on external interface, NOT for static IPv6!
#net.ipv6.conf.eth0.accept_ra = 2
EOF
sysctl --system
###############################################################################
# UPDATE SECRETS
###############################################################################
# update API secret
vpn-server-api-update-api-secrets
###############################################################################
# DAEMONS
###############################################################################
systemctl enable --now php7.0-fpm
systemctl restart apache2
###############################################################################
# OPENVPN SERVER CONFIG
###############################################################################
# NOTE: the openvpn-server systemd unit file only allows 10 OpenVPN processes
# by default!
# generate the OpenVPN server configuration files and certificates
vpn-server-node-server-config
# enable and start OpenVPN
systemctl enable --now openvpn-server@internet-0
systemctl enable --now openvpn-server@internet-1
###############################################################################
# FIREWALL
###############################################################################
cp resources/firewall/iptables /etc/iptables/rules.v4
cp resources/firewall/ip6tables /etc/iptables/rules.v6
systemctl enable netfilter-persistent
systemctl restart netfilter-persistent
###############################################################################
# USERS
###############################################################################
REGULAR_USER="demo"
REGULAR_USER_PASS=$(pwgen 12 -n 1)
# the "admin" user is a special user, listed by ID to have access to "admin"
# functionality in /etc/vpn-user-portal/config.php (adminUserIdList)
ADMIN_USER="admin"
ADMIN_USER_PASS=$(pwgen 12 -n 1)
sudo -u www-data vpn-user-portal-add-user --user "${REGULAR_USER}" --pass "${REGULAR_USER_PASS}"
sudo -u www-data vpn-user-portal-add-user --user "${ADMIN_USER}" --pass "${ADMIN_USER_PASS}"
###############################################################################
# SHOW INFO
###############################################################################
echo "########################################################################"
echo "# Portal"
echo "# https://${WEB_FQDN}/"
echo "# Regular User: ${REGULAR_USER}"
echo "# Regular User Pass: ${REGULAR_USER_PASS}"
echo "#"
echo "# Admin User: ${ADMIN_USER}"
echo "# Admin User Pass: ${ADMIN_USER_PASS}"
echo "########################################################################"