Click here to Skip to main content
15,881,089 members
Articles / Web Development / HTML

ISAPI Filter to Allow Access Only to Hosts with Selected IP Addresses

Rate me:
Please Sign up or sign in to vote.
4.11/5 (10 votes)
6 Dec 1999 73.1K   1.6K   42   2
This article describes an ISAPI filter to allow access only to hosts with IP addresses listed in an external datasource.

The example uses a file (ipaddressdb.txt) to keep track of authorized IP addresses, but you might modify this sample to access a database which holds IP address information.

For each URL request, the filter first looks in a cache of recently allowed addresses, and when that fails, it looks in the ipaddressdb.txt file. This shows an efficient way to authorize connections: a cache allows the filter to quickly allow or disallow access, and because each request comes in through the filter, speed is critical.

The project is a standard appwizard generated ISAPI filter. There are 4 parameters that can be changed to fine tune the filter: the maximum number of cached addresses, the position after which a cached entry will be moved to the front of the list (to make the search time shorter!), the name of the file that contains the IP address list and the name of the HTML file that indicates to the client that a host with its IP address is not allowed to access this server. All these parameters are #define directives in the IPAddressFilter.h header file.

The filter could be improved in several ways: using a database instead of a file for IP address information (you should consider using stored procedures to search and/or to cache!), load parameters from registry, automatic selection of the number of cached addresses and the list reorder parameter, etc.

The full source code is provided, you will have to compile it in order to get a working filter. Once you have compiled the project, you will need to take the following steps to install:

  1. Run REGEDT32.EXE and modify the server's registry as follows. Select the Filter DLLs key in HKEY_LOCAL_MACHINE\CurrentControlSet\Services\W3SVC\Parameters. Add a local path to ipaddressfilter.dll, usually C:\WinNT\System32\InetSrv\ipaddressfilter.dll. The filter entries are separated by commas. The order is important, if you have other filters with the same priority, the first one listed will receive the requests first.
  2. Copy the ipaddressfilter.dll file to the directory you specified in the registry.
  3. Make sure the System account has execute rights on the filter DLL file.
  4. Edit the ipaddressdb.txt file so it contains valid IP addresses. The format of the file is:

    127.*
    172.16.1.6
    172.16.5.*
    172.17.*

  5. Copy the ipaddressdb.txt file to the directory you specified in the IPAddressFilter.h header file for the IP address database.
  6. Copy the NoAccess.htm file to the directory you specified in the IPAddressFilter.h header file for the page to indicate that the access is denied for this IP address.
  7. Make sure the System account has read rights on the NoAccess.htm and ipaddressdb.txt files.
  8. Restart the WWW service.

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Cuba Cuba
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralPoor Documentation Pin
mikanu5-Apr-07 6:34
mikanu5-Apr-07 6:34 
GeneralGood Pin
Jesus Oliva21-Dec-02 15:15
Jesus Oliva21-Dec-02 15:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.