Jump to content

IP-Adressen: Difference between revisions

From Parasol
Tag: visualeditor
 
(24 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Parasol Island - Interne IP Adressen==
==Parasol Island - Interne IP Adressen==
=== Client Network ===
{| class="wikitable"
10.110.0.0/16   [DUS]
|+
10.111.0.0/16   [BER]
!
!Florastraße 75
Düsseldorf
!Rudi-Dutschke-Straße 26
Berlin
!Holzstarße 17
München
|-
|ParasolPrivate
|<code>10.1.0.0/16</code>
|<code>10.11.0.0/16</code>
|<code>10.21.0.0/16</code>
|-
|ParasolPublic
|<code>10.2.64.0/23</code>
|<code>10.12.64.0/23</code>
|<code>10.22.64.0/23</code>
|-
|IoT
|<code>10.2.128.0/23</code>
|<code>10.12.128.0/23</code>
|<code>10.22.128.0/23</code>
|-
|VPN (OpenVPN)
|<code>10.2.2.0/24</code>
|<code>10.12.2.0/24</code>
|<code>10.22.2.0/24</code>
|-
|VPN (WireGuard)
|<code>10.2.0.0/24</code>
|<code>10.12.0.0/24</code>
|<code>10.22.0.0/24</code>
|}


=== Wireless Network ===
== Parasol Island - Externe IP Adressen ==
10.20.0.0/16  [ParasolPrivate]
Externe IP Adressen sind IP Adressen die uns von unseren Internet Service Providern (ISP) zugewiesen wurden. Diese Adressen sind aus dem Internet erreichbar.
10.21.0.0/16  [ParasolPrivate] [BER]
10.30.0.0/16  [ParasolPublic]
10.31.0.0/16  [ParasolPublic] [BER]


=== Server Network ===
===Whitelisting IP Ranges===
10.100.0.0/16  [DUS]
Um alle IP Adressen von Parasol Island auf eine Whitelist setzen zu lassen können auch ganze Netzwerke übermittelt werden.
10.101.0.0/16  [BER]
Externe Sever werden von uns aus immer über eines der folgenden Netze erreicht.
192.168.0.0/24  [DUS-old]
<syntaxhighlight lang="text">
  185.6.68.160/27 DUS
  62.96.12.80/29 BER
</syntaxhighlight>


 
===Händle & Korte (Düsseldorf)===
==Service Providers==
<syntaxhighlight lang="text">
 
  185.6.68.160/27 Netzadresse
 
  185.6.68.161 H&K Router
==Parasol Island - Externe IP Adressen==
  185.6.68.162 H&K Router
===== QSC =====
  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
 
===== Händle & Korte =====
  185.6.68.162/27 Netzwerk
  185.6.68.163 Gateway
  185.6.68.163 Gateway
  '''185.6.68.164 (Default IP Düsseldorf)'''
  185.6.68.164
  185.6.68.165
  185.6.68.165
  185.6.68.166
  185.6.68.166
Line 70: Line 81:
  185.6.68.190
  185.6.68.190
  185.6.68.191 Broadcast
  185.6.68.191 Broadcast
</syntaxhighlight>


===== Colt (Berlin) =====
===Colt (Berlin)===
<font color="red">213.61.244.82 (alte Default IP Berlin)
<syntaxhighlight lang="text">
213.61.244.83
  62.96.12.80/29 Netzadresse
213.61.244.84
213.61.244.85
213.61.244.86</font>
 
  62.96.12.80/29 Netzwerk
  62.96.12.81 Gateway
  62.96.12.81 Gateway
  '''62.96.12.82 (Default IP Berlin)'''
  62.96.12.82 (Default IP Berlin)
  62.96.12.83
  62.96.12.83
  62.96.12.84
  62.96.12.84
Line 86: Line 93:
  62.96.12.86
  62.96.12.86
  62.96.12.87 Broadcast
  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
allow 10.242.3.0/24; # VPN L2TP via IPSec
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 from 10.242.2.0/24 # VPN SSL
allow from 10.242.3.0/24 # VPN L2TP via IPSec
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

Latest revision as of 08:14, 5 August 2025

Parasol Island - Interne IP Adressen

[edit]
Florastraße 75

Düsseldorf

Rudi-Dutschke-Straße 26

Berlin

Holzstarße 17

München

ParasolPrivate 10.1.0.0/16 10.11.0.0/16 10.21.0.0/16
ParasolPublic 10.2.64.0/23 10.12.64.0/23 10.22.64.0/23
IoT 10.2.128.0/23 10.12.128.0/23 10.22.128.0/23
VPN (OpenVPN) 10.2.2.0/24 10.12.2.0/24 10.22.2.0/24
VPN (WireGuard) 10.2.0.0/24 10.12.0.0/24 10.22.0.0/24

Parasol Island - Externe IP Adressen

[edit]

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

[edit]

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.160/27 DUS
  62.96.12.80/29 BER

</syntaxhighlight>

Händle & Korte (Düsseldorf)

[edit]

<syntaxhighlight lang="text">

185.6.68.160/27 Netzadresse
185.6.68.161 H&K Router
185.6.68.162 H&K Router
185.6.68.163 Gateway
185.6.68.164
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>

Colt (Berlin)

[edit]

<syntaxhighlight lang="text">

62.96.12.80/29 Netzadresse
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>