Podręcznik:$wgBlockCIDRLimit

This page is a translated version of the page Manual:$wgBlockCIDRLimit and the translation is 46% complete.
Dostęp: $wgBlockCIDRLimit
Maximum CIDR range when blocking an IP range.
Wprowadzono w wersji:1.16.0 (r58377)
Usunięto w wersji:nadal w użyciu
Dozwolone wartości:(positive integer)
Domyślna wartość:(zobacz poniżej)

Szczegóły

Maximum CIDR range when blocking an IP range.

Domyślna wartość

Wersja MediaWiki:
1.20

MediaWiki 1.20wmf4 and later: (Zobacz gerrit:11259 i gerrit:11260)

$wgBlockCIDRLimit = [
	'IPv4' => 16, # Blocks larger than a /16 (64k addresses) will not be allowed
	'IPv6' => 19,
];
Wersje MediaWiki:
1.16 – 1.19

Before 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 adresów
);
This setting does not control Extension:GlobalBlocking , which has its own configuration setting.