1 # Destination Site Filter 2 # 3 # This file consists of lines in one of the following two formats, blanks lines 4 # or lines starting with a '#' are ignored. 5 # 6 # host <hostname> 7 # e.g. host www.site.com 8 # subnet <network> <netmask> 9 # e.g. subnet 10.10.0.0 255.255.0.0 10 # 11 # host lines are matched directly against the request hostname, if the request 12 # matches the request line is ignored. 13 # 14 # subnet lines resolve the request hostname to an IP address and then compare 15 # that IP address to the specified subnet. If the ip address is within the 16 # specified subnet the request line is ignored. 17 # 18 # You are strongly advised against using subnet lines as they cause very very 19 # slow report generation due to all the extra DNS lookups.