forked from eduvpn/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy_fedora.sh
executable file
·221 lines (169 loc) · 7.78 KB
/
deploy_fedora.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
#!/bin/sh
#
# Deploy a single VPN machine
# Fedora 28
#
###############################################################################
# VARIABLES
###############################################################################
MACHINE_HOSTNAME=$(hostname -f)
# DNS name of the Web Server
printf "DNS name of the Web Server [${MACHINE_HOSTNAME}]: "; read -r WEB_FQDN
WEB_FQDN=${WEB_FQDN:-${MACHINE_HOSTNAME}}
# DNS name of the OpenVPN Server (defaults to DNS name of the Web Server
# use different name if you want to allow moving the OpenVPN processes to
# another machine in the future without breaking client configuration files
printf "DNS name of the OpenVPN Server [%s]: " "${WEB_FQDN}"; read -r VPN_FQDN
VPN_FQDN=${VPN_FQDN:-${WEB_FQDN}}
# The interface that connects to "the Internet" (for firewall rules)
printf "External interface connecting to the Internet [eth0]: "; read -r EXTERNAL_IF
EXTERNAL_IF=${EXTERNAL_IF:-eth0}
###############################################################################
# SYSTEM
###############################################################################
# SELinux enabled?
if ! /usr/sbin/selinuxenabled
then
echo "Please **ENABLE** SELinux before running this script!"
exit 1
fi
PACKAGE_MANAGER=/usr/bin/dnf
###############################################################################
# SOFTWARE
###############################################################################
# disable and stop existing firewalling
systemctl disable --now firewalld >/dev/null 2>/dev/null || true
systemctl disable --now iptables >/dev/null 2>/dev/null || true
systemctl disable --now ip6tables >/dev/null 2>/dev/null || true
# Add production RPM repository
curl -L -o /etc/yum.repos.d/LC.repo \
https://repo.letsconnect-vpn.org/rpm/release/fedora/LC.repo
# install software (dependencies)
${PACKAGE_MANAGER} -y install mod_ssl php-opcache httpd iptables pwgen \
iptables-services php-fpm php-cli policycoreutils-python chrony
# install additional language packs
# this is needed on Fedora, not on CentOS where they are all in glibc-common
${PACKAGE_MANAGER} -y install glibc-langpack-nl glibc-langpack-nb \
glibc-langpack-da glibc-langpack-fr
# install software (VPN packages)
${PACKAGE_MANAGER} -y install vpn-server-node vpn-server-api vpn-admin-portal \
vpn-user-portal
###############################################################################
# SELINUX
###############################################################################
# allow Apache to connect to PHP-FPM
setsebool -P httpd_can_network_connect=1
# allow OpenVPN to bind to the management ports
semanage port -a -t openvpn_port_t -p tcp 11940-12195
# allow OpenVPN to bind to additional ports for client connections
semanage port -a -t openvpn_port_t -p tcp 1195-1263
semanage port -a -t openvpn_port_t -p udp 1195-1263
###############################################################################
# APACHE
###############################################################################
# Use a hardened ssl.conf instead of the default, gives A+ on
# https://www.ssllabs.com/ssltest/
cp resources/ssl.conf /etc/httpd/conf.d/ssl.conf
cp resources/localhost.centos.conf /etc/httpd/conf.d/localhost.conf
# VirtualHost
cp resources/vpn.example.centos.conf "/etc/httpd/conf.d/${WEB_FQDN}.conf"
sed -i "s/vpn.example/${WEB_FQDN}/" "/etc/httpd/conf.d/${WEB_FQDN}.conf"
###############################################################################
# PHP
###############################################################################
# set timezone to UTC
cp resources/70-timezone.ini /etc/php.d/70-timezone.ini
# session hardening
cp resources/75-session.fedora.ini /etc/php.d/75-session.ini
###############################################################################
# VPN-SERVER-API
###############################################################################
# update the IPv4 CIDR and IPv6 prefix to random IP ranges and set the extIf
vpn-server-api-update-ip --profile internet --host "${VPN_FQDN}" --ext "${EXTERNAL_IF}"
# initialize the CA
sudo -u apache vpn-server-api-init
###############################################################################
# VPN-USER-PORTAL
###############################################################################
# generate OAuth public/private keys
sudo -u apache 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.${EXTERNAL_IF}.accept_ra = 2
EOF
sysctl --system
###############################################################################
# UPDATE SECRETS
###############################################################################
# update API secret
vpn-server-api-update-api-secrets
###############################################################################
# CERTIFICATE
###############################################################################
# generate self signed certificate and key
openssl req \
-nodes \
-subj "/CN=${WEB_FQDN}" \
-x509 \
-sha256 \
-newkey rsa:2048 \
-keyout "/etc/pki/tls/private/${WEB_FQDN}.key" \
-out "/etc/pki/tls/certs/${WEB_FQDN}.crt" \
-days 90
###############################################################################
# WEB
###############################################################################
mkdir -p "/var/www/${WEB_FQDN}"
# Copy server info JSON file
cp resources/info.json "/var/www/${WEB_FQDN}/info.json"
sed -i "s/vpn.example/${WEB_FQDN}/" "/var/www/${WEB_FQDN}/info.json"
###############################################################################
# DAEMONS
###############################################################################
systemctl enable --now php-fpm
systemctl enable --now httpd
###############################################################################
# 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@default-internet-0
systemctl enable --now openvpn-server@default-internet-1
###############################################################################
# FIREWALL
###############################################################################
# generate and install the firewall
vpn-server-node-generate-firewall --install
systemctl enable --now iptables
systemctl enable --now ip6tables
###############################################################################
# USERS
###############################################################################
USER_PASS=$(pwgen 12 -n 1)
ADMIN_PASS=$(pwgen 12 -n 1)
sudo -u apache vpn-user-portal-add-user --user me --pass "${USER_PASS}"
sudo -u apache vpn-admin-portal-add-user --user admin --pass "${ADMIN_PASS}"
###############################################################################
# SHOW INFO
###############################################################################
echo "########################################################################"
echo "# Admin Portal"
echo "# https://${WEB_FQDN}/vpn-admin-portal"
echo "# User: admin"
echo "# Pass: ${ADMIN_PASS}"
echo "# User Portal"
echo "# https://${WEB_FQDN}/vpn-user-portal"
echo "# User: me"
echo "# Pass: ${USER_PASS}"
echo "# OAuth Public Key:"
echo "# $(vpn-user-portal-show-public-key)"
echo "########################################################################"
# ALL DONE!