Extension:IPAuth

From MediaWiki.org

Jump to: navigation, search

             

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
IPAuth

Release status: beta

Implementation  User identity
Description Automatic login from fixed IPs
Author(s)  Duesentrieb for Wikimedia Deutschland
MediaWiki  1.15 (may work for earlier versions too)
License BSD
Download Download snapshot

Subversion [Help]
Browse source code

log

Example  $wgIPAuthUsers = array( "127.0.0.1" => "Admin" );

check usage (experimental)

IPAuth allows clients accessing from specific IP addresses to be authenticated automatically.

[edit] Configuration

$wgIPAuthUsers
an associative array, mapping IP addresses to user names.
Note: the user names given here must refer to existing users. You have to create them before using them here!

[edit] Example

#Automatically authenticate clients accessing from localhost as user Admin.
$wgIPAuthUsers = array( "127.0.0.1" => "Admin" );

[edit] See also