Remove not needed rule

This commit is contained in:
Jan Philipp Timme 2018-09-20 12:19:25 +02:00
parent 8009ceb3ed
commit c115f7313b
1 changed files with 0 additions and 6 deletions

View File

@ -200,12 +200,6 @@ Für IPv4-Verkehr aus dem VPN soll NAT auf die \texttt{141.71.38.7} durchgeführ
iptables -t nat -A POSTROUTING -s 10.2.0.0/16 -j SNAT --to 141.71.38.7
\end{lstlisting}
Datenverkehr vom VPN-Server zu VPN-Clients ist erlaubt.
\begin{lstlisting}
iptables -A FORWARD -s 10.2.0.1 -d 10.2.0.0/16 -j ACCEPT
ip6tables -A FORWARD -s 2001:638:614:1750::1 -d 2001:683:614:1750::/64 -j ACCEPT
\end{lstlisting}
Datenverkehr zwischen VPN-Clients ist verboten und wird verworfen.
\begin{lstlisting}
iptables -A FORWARD -s 10.2.0.0/16 -d 10.2.0.0/16 -j DROP