Apache auth ----------- To get apache allowing a subnet through without a password, but require a password for anywhere else, do the following in httpd.conf: AllowOverride None order deny,allow deny from all allow from 192.168.1 AuthType Basic AuthName "Password protected" AuthUserFile /path/to/.htpasswd require valid-user Satisfy any