Blockieren des Zugriffs aus einem bestimmten Land: Unterschied zwischen den Versionen

Keine Bearbeitungszusammenfassung
 
(23 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
[[category:ueberarbeiten]]
[[category:fertig]][[category:Webhosting]]


'''Dieser Artikel befindet sich zur Zeit in Bearbeitung'''
Falls man gewisse Länder aufgrund von vielen Bot-Aktivitäten sperren möchte, kann man hierbei die Ländererkennung (MaxMind GeoIP) bei apache2 in der '''.htaccess''' verwenden. Hierzu braucht man nur ein paar Zeilen mit dem jeweiligen Land (siehe [https://www.geonames.org/countries/ '''hier''']), was man sperren möchte, einfügen:


Falls man gewisse Länder aufgrund von vielen Bot-Aktivitäten sperren möchte, kann man hierbei die Ländererkennung bei apache2 in der '''.htaccess''' verwenden. Hierzu braucht man nur ein paar Zeilen mit dem jeweiligen Land (siehe [https://dev.maxmind.com/geoip/legacy/codes '''hier''']), was man sperren möchte, einfügen:
== Mithilfe von mod_maxminddb (Geo IP) in der .htaccess: ==


== Mithilfe von mod_maxminddb in der .htaccess: ==
=== Blockieren von IPs eines Landes ===
 
'''Grundsätzlich:'''


'''1. Beispiel: China
'''
  <IfModule mod_maxminddb.c>
  <IfModule mod_maxminddb.c>
MaxMindDBEnable On
    MaxMindDBEnable On
MaxMindDBFile COUNTRY_DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
    MaxMindDBFile DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
MaxMindDBEnv MM_COUNTRY_CODE COUNTRY_DB/country/iso_code
    MaxMindDBEnv MM_COUNTRY_CODE DB/country/iso_code
SetEnvIf MM_COUNTRY_CODE ^(CN) BlockCountry
    SetEnvIf MM_COUNTRY_CODE ^(Country_Code)$ BlockCountry
Deny from env=BlockCountry
    <RequireAll>
        Require all granted
        Require not env BlockCountry
    </RequireAll>
  </IfModule>
  </IfModule>


'''2. Beispiel: Russland & China'''
'''Beispiel: Russland & China & Vietnam''':


  <IfModule mod_maxminddb.c>
  <IfModule mod_maxminddb.c>
MaxMindDBEnable On
    MaxMindDBEnable On
MaxMindDBFile COUNTRY_DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
    MaxMindDBFile DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
MaxMindDBEnv MM_COUNTRY_CODE COUNTRY_DB/country/iso_code
    MaxMindDBEnv MM_COUNTRY_CODE DB/country/iso_code
SetEnvIf MM_COUNTRY_CODE ^(RU|CN) BlockCountry
    SetEnvIf MM_COUNTRY_CODE ^(RU|CN|VN)$ BlockCountry
Deny from env=BlockCountry
    <RequireAll>
        Require all granted
        Require not env BlockCountry
    </RequireAll>
  </IfModule>
  </IfModule>


== Mithilfe von mod_geoip in der .htaccess: ==


1. Beispiel: China
==== Erlauben von IPs eines Landes ====
 
'''Grundsätzlich:'''


  GeoIPEnable On   
  <IfModule mod_maxminddb.c>
SetEnvIf GEOIP_COUNTRY_CODE CN DenyCountry
  MaxMindDBEnable On
Allow from all
   MaxMindDBFile DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
Deny from env=DenyCountry
  MaxMindDBEnv MM_COUNTRY_CODE DB/country/iso_code
  SetEnvIf MM_COUNTRY_CODE ^(Country_Code) AllowCountry
  Order Allow,Deny
  Allow from env=AllowCountry
</IfModule>


2. Beispiel: Russland & China


  GeoIPEnable On   
'''Beispiel: Deutschland''':
SetEnvIf GEOIP_COUNTRY_CODE CN DenyCountry
 
SetEnvIf GEOIP_COUNTRY_CODE RU DenyCountry
  <IfModule mod_maxminddb.c>
SetEnvIf GEOIP_COUNTRY_CODE KR DenyCountry
  MaxMindDBEnable On
SetEnvIf GEOIP_COUNTRY_CODE RU DenyCountry 
   MaxMindDBFile DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
Allow from all
  MaxMindDBEnv MM_COUNTRY_CODE DB/country/iso_code
  Deny from env=DenyCountry
  SetEnvIf MM_COUNTRY_CODE ^(DE) AllowCountry
  Order Allow,Deny
  Allow from env=AllowCountry
  </IfModule>


==== Aktivierung mittels PHP: ====
'''Wichtig: Dadurch werden nur IP-Adressen aus Deutschland erlaubt.'''


Hierbei einfach in die php.ini folgendes einfügen:
'''Eine Liste für die verschiedenen Ländercodes (ISO-3166 alpha2): https://www.geonames.org/countries/'''
extension=geoip.so

Aktuelle Version vom 7. April 2026, 16:35 Uhr


Falls man gewisse Länder aufgrund von vielen Bot-Aktivitäten sperren möchte, kann man hierbei die Ländererkennung (MaxMind GeoIP) bei apache2 in der .htaccess verwenden. Hierzu braucht man nur ein paar Zeilen mit dem jeweiligen Land (siehe hier), was man sperren möchte, einfügen:

Mithilfe von mod_maxminddb (Geo IP) in der .htaccess:

Blockieren von IPs eines Landes

Grundsätzlich:

<IfModule mod_maxminddb.c>
   MaxMindDBEnable On
   MaxMindDBFile DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
   MaxMindDBEnv MM_COUNTRY_CODE DB/country/iso_code
   SetEnvIf MM_COUNTRY_CODE ^(Country_Code)$ BlockCountry
   <RequireAll>
       Require all granted
       Require not env BlockCountry
   </RequireAll>
</IfModule>

Beispiel: Russland & China & Vietnam:

<IfModule mod_maxminddb.c>
   MaxMindDBEnable On
   MaxMindDBFile DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
   MaxMindDBEnv MM_COUNTRY_CODE DB/country/iso_code
   SetEnvIf MM_COUNTRY_CODE ^(RU|CN|VN)$ BlockCountry
   <RequireAll>
       Require all granted
       Require not env BlockCountry
   </RequireAll>
</IfModule>


Erlauben von IPs eines Landes

Grundsätzlich:

<IfModule mod_maxminddb.c>
 MaxMindDBEnable On
 MaxMindDBFile DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
 MaxMindDBEnv MM_COUNTRY_CODE DB/country/iso_code
 SetEnvIf MM_COUNTRY_CODE ^(Country_Code) AllowCountry
 Order Allow,Deny
 Allow from env=AllowCountry
</IfModule>


Beispiel: Deutschland:

<IfModule mod_maxminddb.c>
 MaxMindDBEnable On
 MaxMindDBFile DB /usr/local/share/maxminddb/GeoLite2-Country.mmdb
 MaxMindDBEnv MM_COUNTRY_CODE DB/country/iso_code
 SetEnvIf MM_COUNTRY_CODE ^(DE) AllowCountry
 Order Allow,Deny
 Allow from env=AllowCountry
</IfModule>

Wichtig: Dadurch werden nur IP-Adressen aus Deutschland erlaubt.

Eine Liste für die verschiedenen Ländercodes (ISO-3166 alpha2): https://www.geonames.org/countries/