Restriction by client host


Example: Restricting access to a department:
order deny,allow
deny from all
allow from .dept.cam.ac.uk
  1. Start with all hosts allowed access.
  2. Then apply denials.
  3. Then override with approvals.

Example: Restricting access and cutting off your head of dept.:
order allow,deny
allow from .dept.cam.ac.uk
deny from bosspc.dept.cam.ac.uk
deny from bossmac.dept.cam.ac.uk
  1. Start with all hosts denied access
  2. Then apply approvals
  3. Then override with denials.


Contents / Previous / Next