<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2712.300" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV>> I am wanting to restrict visitors to a web Server, ensuring that
any<BR>> visitors IP address must start with a specific address range for
example<BR>> 208.149. This restricts the visitors ip range from
208.149.0.0 to<BR>> 208.149.255.255.</DIV>
<DIV><BR>Pop these directives into your httpd.conf or .htaccess file as
appropriate.<BR><BR>Order Deny,Allow<BR>Deny from all<BR>Allow from
208.149<BR><BR>Full docs available at:-<BR><A
href="http://httpd.apache.org/docs/howto/auth.html#allowdeny">http://httpd.apache.org/docs/howto/auth.html#allowdeny</A><BR><BR>Cheers
Jonathan, i should of realised this for myself, i was looking for and expecting
something a lot more complicated for some reason.</DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>Mark</FONT></DIV></BODY></HTML>