2018-09-12 22:19:28 +02:00
|
|
|
\chapter{Vorwort}
|
2018-09-14 14:21:27 +02:00
|
|
|
Diese Dokumentation beschreibt die Installation und den Betrieb des IPv6-VPN-Dienst auf Basis von OpenVPN.
|
|
|
|
|
2018-09-12 22:44:16 +02:00
|
|
|
|
|
|
|
\chapter{Netzwerkkonfiguration}
|
|
|
|
Vor der Installation sind diverse Angaben notwendig.
|
|
|
|
Folgende Informationen wurden vom IT-Team bereitgestellt.
|
|
|
|
|
2018-09-13 17:15:32 +02:00
|
|
|
\begin{lstlisting}
|
2018-09-12 22:44:16 +02:00
|
|
|
root@aphrodite:~# host aither
|
|
|
|
aither.inform.hs-hannover.de has address 141.71.38.70
|
|
|
|
aither.inform.hs-hannover.de has IPv6 address 2001:638:614:1780::131
|
|
|
|
|
|
|
|
root@aphrodite:~# host vpn-test
|
|
|
|
vpn-test.inform.hs-hannover.de has address 141.71.38.7
|
|
|
|
vpn-test.inform.hs-hannover.de has IPv6 address 2001:638:614:1780::7
|
2018-09-13 17:15:32 +02:00
|
|
|
\end{lstlisting}
|
2018-09-12 22:44:16 +02:00
|
|
|
|
2018-09-13 17:15:32 +02:00
|
|
|
IPv4-Bereich für VPN-Clients: \texttt{10.2.0.0/16}
|
2018-09-14 14:21:27 +02:00
|
|
|
|
2018-09-13 17:15:32 +02:00
|
|
|
IPv6-Bereich für VPN-Clients: \texttt{2001:638:614:1750::/64}
|
2018-09-12 22:44:16 +02:00
|
|
|
|
|
|
|
\chapter{Installation des Servers}
|
|
|
|
\dots
|
|
|
|
|
2018-09-13 17:38:37 +02:00
|
|
|
Als Grundlage wird ein bereits installiertes Debian 9 mit den Paketen \enquote{SSH-Server} und \enquote{Standard-Systemwerkzeuge} vorausgesetzt.
|
2018-09-12 22:44:16 +02:00
|
|
|
|
|
|
|
\paragraph{Hostname}
|
2018-09-13 17:15:32 +02:00
|
|
|
\texttt{/etc/hostname} und \texttt{/etc/hosts} anpassen
|
2018-09-12 22:44:16 +02:00
|
|
|
|
2018-09-13 17:27:28 +02:00
|
|
|
\begin{lstlisting}
|
|
|
|
# cat /etc/hostname
|
|
|
|
aither
|
|
|
|
|
|
|
|
# cat /etc/hosts
|
|
|
|
127.0.0.1 localhost
|
|
|
|
127.0.1.1 aither.inform.hs-hannover.de aither
|
|
|
|
[...]
|
|
|
|
|
|
|
|
# cat /etc/apt/sources.list.d/inform.list
|
|
|
|
deb http:/http.edu.inform.hs-hannover.de/depot/debian/stretch/Packages /
|
|
|
|
|
|
|
|
# cat /etc/apt/apt.conf.d/80proxy
|
|
|
|
Acquire::http::Proxy "http://proxy.inform.hs-hannover.de:3128";
|
|
|
|
|
|
|
|
# cat /etc/network/interfaces
|
|
|
|
[...]
|
|
|
|
auto eno1
|
|
|
|
allow-hotplug eno1
|
|
|
|
|
|
|
|
#-primary network interface
|
|
|
|
iface eno1 inet static
|
|
|
|
address 141.71.38.70/24
|
|
|
|
gateway 141.71.38.1
|
|
|
|
iface eno1 inet6 static
|
|
|
|
address 2001:638:614:1780::131/64
|
|
|
|
gateway 201:638:614:1780::1
|
|
|
|
|
|
|
|
#- virtual service interface
|
|
|
|
iface eno1:0 inet static
|
|
|
|
address 141.71.38.7/24
|
|
|
|
gateway 141.71.38.1
|
|
|
|
iface eno1:0 inet6 static
|
|
|
|
address 2001:638:614:1780::7/64
|
|
|
|
gateway 201:638:614:1780::1
|
|
|
|
|
|
|
|
# cat /etc/sysctl.d/04-enable-ipv4-forwarding.conf
|
|
|
|
net.ipv4.conf.all.forwarding = 1
|
|
|
|
|
|
|
|
# cat /etc/sysctl.d/04-enable-ipv4-forwarding.conf
|
|
|
|
net.ipv6.conf.all.forwarding = 1
|
|
|
|
\end{lstlisting}
|
|
|
|
|
2018-09-12 22:44:16 +02:00
|
|
|
\paragraph{Benutzer anlegen}
|
|
|
|
For my time being:
|
|
|
|
adduser jpt
|
|
|
|
gpasswd -a jpt sudo
|
|
|
|
|
|
|
|
\paragraph{Netzwerkkonfiguration}
|
|
|
|
IP-Adressen (physisch und für den Dienst)
|
|
|
|
Forwarding für IPv4 und IPv6 aktivieren
|
|
|
|
|
|
|
|
\paragraph{}
|
|
|
|
APT via Proxy proxy.inform.hs-hannover.de:3128
|
|
|
|
Zusätzliches Repository
|
2018-09-13 17:15:32 +02:00
|
|
|
\begin{lstlisting}
|
2018-09-12 22:44:16 +02:00
|
|
|
wget -O repositoryKeyFile http://http.edu.inform.hs-hannover.de/repository/repositoryKeyFile
|
|
|
|
apt-key add repositoryKeyFile
|
2018-09-13 17:15:32 +02:00
|
|
|
\end{lstlisting}
|
2018-09-12 22:44:16 +02:00
|
|
|
|
|
|
|
\paragraph{Zusätzliche Pakete installieren}
|
2018-09-13 17:38:37 +02:00
|
|
|
Es werden noch Pakete des IT-Teams installiert, die bestimmte Komponenten mit einer einheitlichen Konfiguration versorgen.
|
|
|
|
\begin{lstlisting}
|
2018-09-12 22:44:16 +02:00
|
|
|
apt-get install F4-I-SRV-Config-ALL-*
|
2018-09-13 17:38:37 +02:00
|
|
|
\end{lstlisting}
|
2018-09-12 22:44:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
\paragraph{OpenVPN}
|
|
|
|
apt-get install openvpn
|
|
|
|
\dots
|
|
|
|
Zertifikate beantragen und
|
|
|
|
Konfiguration einspielen
|
|
|
|
\dots
|
|
|
|
systemctl enable openvpn@TODO.service
|
|
|
|
systemctl start openvpn@TODO.service
|
|
|
|
|
|
|
|
\paragraph{iptables}
|
|
|
|
Zugriffe aus dem VPN in die DMZ sind verboten
|
|
|
|
Zugriffe auf den Server sind nur via UDP/1194 und TCP/22 erlaubt
|
|
|
|
IPv4 NAT für 10.2.0.0/16
|
|
|
|
|
|
|
|
\paragraph{Einstellungen für Routing}
|
|
|
|
Viel ist es nicht
|