Extension:IPAuth
From MediaWiki.org
|
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 |
||
| 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" );