IP-Adressen: Difference between revisions
| Line 16: | Line 16: | ||
===Server Network=== | ===Server Network=== | ||
<syntaxhighlight lang="text"> | <syntaxhighlight lang="text"> | ||
10. | 10.1.0.0/16 [DUS] | ||
10.101.0.0/16 [BER] | 10.101.0.0/16 [BER] | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 13:06, 9 May 2022
Parasol Island - Interne IP Adressen
Client Network
<syntaxhighlight lang="text"> 10.1.0.0/16 [DUS] 10.111.0.0/16 [BER] </syntaxhighlight>
Wireless Network
<syntaxhighlight lang="text"> 10.1.0.0/16 [ParasolPrivate] 10.21.0.0/16 [ParasolPrivate] [BER] 10.2.64.0/23 [ParasolPublic] 10.31.0.0/16 [ParasolPublic] [BER] </syntaxhighlight>
Server Network
<syntaxhighlight lang="text"> 10.1.0.0/16 [DUS] 10.101.0.0/16 [BER] </syntaxhighlight>
VPN Network
<syntaxhighlight lang="text"> 10.242.2.0/24 [DUS] 10.242.3.0/24 [DUS] 10.181.2.0/24 [BER] 10.181.3.0/24 [BER] </syntaxhighlight>
Parasol Island - Externe IP Adressen
Externe IP Adressen sind IP Adressen die uns von unseren Internet Service Providern (ISP) zugewiesen wurden. Diese Adressen sind aus dem Internet erreichbar.
Whitelisting IP Ranges
Um alle IP Adressen von Parasol Island auf eine Whitelist setzen zu lassen können auch ganze Netzwerke übermittelt werden. Externe Sever werden von uns aus immer über eines der folgenden Netze erreicht. <syntaxhighlight lang="text">
185.6.68.162/27 DUS 62.96.12.80/29 BER
</syntaxhighlight>
QSC (Düsseldorf)
<syntaxhighlight lang="text">
87.193.232.112/29 Netzwerk 87.193.232.113 Gateway 87.193.232.114 87.193.232.115 87.193.232.116 87.193.232.117 87.193.232.118 87.193.232.119 Broadcast
83.236.171.192/29 Netzwerk 83.236.171.193 83.236.171.194 83.236.171.195 83.236.171.196 83.236.171.197 83.236.171.198 83.236.171.199 Broadcast
</syntaxhighlight>
Händle & Korte (Düsseldorf)
<syntaxhighlight lang="text">
185.6.68.162/27 Netzwerk 185.6.68.163 Gateway 185.6.68.164 (Default IP Düsseldorf) 185.6.68.165 185.6.68.166 185.6.68.167 185.6.68.168 185.6.68.169 185.6.68.170 185.6.68.171 185.6.68.172 185.6.68.173 185.6.68.174 185.6.68.175 185.6.68.176 185.6.68.177 185.6.68.178 185.6.68.179 185.6.68.180 185.6.68.181 185.6.68.182 185.6.68.183 185.6.68.184 185.6.68.185 185.6.68.186 185.6.68.187 185.6.68.188 185.6.68.189 185.6.68.190 185.6.68.191 Broadcast
</syntaxhighlight>
Unitymedia (Düsseldorf)
<syntaxhighlight lang="text">
130.180.99.168/30 Netzwerk 130.180.99.169 Gateway 130.180.99.170 130.180.99.171 Broadcast
</syntaxhighlight>
Colt (Berlin)
<syntaxhighlight lang="text">
213.61.244.82 (alte Default IP Berlin) 213.61.244.83 213.61.244.84 213.61.244.85 213.61.244.86
62.96.12.80/29 Netzwerk 62.96.12.81 Gateway 62.96.12.82 (Default IP Berlin) 62.96.12.83 62.96.12.84 62.96.12.85 62.96.12.86 62.96.12.87 Broadcast
</syntaxhighlight>
nginx allow file
allow 10.110.0.0/16; # LAN allow 10.111.0.0/16; # LAN BER allow 10.20.0.0/16; # ParasolPrivate WiFi allow 10.21.0.0/16; # ParasolPrivate WiFi BER allow 10.30.0.0/16; # ParasolPublic Wifi allow 10.31.0.0/16; # ParasolPublic Wifi BER allow 10.100.0.0/16; # Internal Servers allow 10.101.0.0/16; # Internal Servers BER allow 192.168.0.0/24; # Internal Servers allow 10.242.2.0/24; # VPN SSL (DUS) allow 10.242.3.0/24; # VPN L2TP via IPSec (DUS) allow 10.181.2.0/24; # VPN SSL (BER) allow 10.181.3.0/24; # VPN L2TP via IPSec (BER) allow 10.190.10.40; #gitlab allow 66.249.64.0/19; # Google PageSpeed allow 144.76.224.70; # Usersnap allow 78.46.60.85; # Usersnap allow 136.243.88.28; # Usersnap
apache allow file
order deny,allow deny from all allow from 10.110.0.0/16 # LAN allow from 10.111.0.0/16 # LAN BER allow from 10.20.0.0/16 # ParasolPrivate WiFi allow from 10.21.0.0/16 # ParasolPrivate WiFi BER allow from 10.30.0.0/16 # ParasolPublic Wifi allow from 10.31.0.0/16 # ParasolPublic Wifi BER allow from 10.100.0.0/16 # Internal Servers allow from 10.101.0.0/16 # Internal Servers BER allow from 192.168.0.0/24 # Internal Servers allow 10.242.2.0/24 # VPN SSL (DUS) allow 10.242.3.0/24 # VPN L2TP via IPSec (DUS) allow 10.181.2.0/24 # VPN SSL (BER) allow 10.181.3.0/24 # VPN L2TP via IPSec (BER) allow from 10.190.10.40 #gitlab allow from 66.249.64.0/19 # Google PageSpeed allow from 144.76.224.70 # Usersnap allow from 78.46.60.85 # Usersnap allow from 136.243.88.28 # Usersnap