"Fossies" - the Fresh Open Source Software Archive

Member "srg-1.3.6/examples/filtered_sites" (5 Aug 2009, 728 Bytes) of package /linux/privat/old/srg-1.3.6.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    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.