Manual:$wgBlockCIDRLimit
Appearance
Outdated translations are marked like this.
| Acceso: $wgBlockCIDRLimit | |
|---|---|
| Maximum CIDR range when blocking an IP range. |
|
| Introducido en la versión: | 1.16.0 (r58377) |
| Eliminado en la versión: | aún se usa |
| Valores permitidos: | (entero > 0) |
| Valor predeterminado: | (véase más abajo) |
| Otras configuraciones: Alfabéticamente | Por Función | |
Detalles
Maximum CIDR range when blocking an IP range.
Valores predeterminados
| Versión de MediaWiki: | ≥ 1.20 |
MediaWiki 1.20wmf4 y posteriores: (Véase gerrit:11259 y gerrit:11260) (Véase gerrit:11259 y gerrit:11260)
$wgBlockCIDRLimit = [
'IPv4' => 16, # Blocks larger than a /16 (64k addresses) will not be allowed
'IPv6' => 19,
];
| Versiones de MediaWiki: | 1.16 – 1.19 |
Previo a MediaWiki 1.20wmf4:
$wgBlockCIDRLimit = array(
'IPv4' => 16, # Blocks larger than a /16 (64k addresses) will not be allowed
'IPv6' => 64, # 2^64 = ~1.8x10^19 direcciones
);
This setting does not control Extension:GlobalBlocking, which has its own configuration setting.