"Fossies" - the Fresh Open Source Software Archive

Member "zebedee-2.5.3/server.zbd" (17 Sep 2003, 2896 Bytes) of package /linux/privat/old/zebedee-2.5.3.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. See also the latest Fossies "Diffs" side-by-side code changes report for "server.zbd": 2.4.1A_vs_2.5.3.

    1 #
    2 # Sample Zebedee server configuration file
    3 #
    4 # This shows the use of many, but not all, of the configuration file
    5 # options available for use by a server.
    6 #
    7 # $Id: server.zbd,v 1.7 2003/09/17 08:06:36 ndwinton Exp $
    8 
    9 verbosity 2	# Slightly more than basic messages
   10 
   11 # Comment out the following line once you have read the comments
   12 # in this file and enabled or disabled the appropriate options!
   13 
   14 message "DEFAULT CONFIGURATION FILE -- EDIT BEFORE USE"
   15 
   16 detached false	# You will probably want this 'true' for normal
   17 		# use but I want to make sure that you see the
   18 		# preceding message if you haven't edited this.
   19 
   20 server true	# Yes, it's a server!
   21 ipmode both	# Operate in mixed TCP/UDP mode
   22 
   23 compression zlib:9	# Allow maximum zlib compression
   24 keylength 256		# Allow keys up to 256 bits
   25 keylifetime 36000	# Shared keys last 10 hours
   26 maxbufsize 16383	# Allow maximum possible buffer size
   27 
   28 # Uncomment the following line to log messages to a local file.
   29 #
   30 #  logfile './server.log'
   31 #
   32 # Or to log to the system logging facility uncomment this:
   33 #
   34 #  logfile SYSLOG
   35 
   36 keygenlevel 2	# Generate maximum strength private keys
   37 
   38 checksumlevel 3	    # Allow maximum strength checksums
   39 minchecksumlevel 0  # Allow no checksums if client requests
   40 
   41 # Uncomment the following line if you want to use a fixed private
   42 # key stored in a static file. The file should contain a line of
   43 # the form "privatekey hexadecimal-key-string". This file should
   44 # be readable by the user running Zebedee but no-one else.
   45 #
   46 #  include './server.key'
   47 
   48 # To validate the identity of clients use a line something like
   49 # the following:
   50 #
   51 #  checkidfile './clients.id'
   52 
   53 # The "redirect" expression can be use to set the default ports
   54 # allowed when a target specification consists of a hostname but
   55 # no other ports. The "redirect none" statement prohibits
   56 # tunnelling anywhere by default.
   57 
   58 redirect none
   59 
   60 # Set up allowed targets. Note that there are NO targets allowed
   61 # by this file by default. You must explicitly edit it to enable
   62 # them.
   63 
   64 # The following are good for testing purposes. Either TCP or UDP
   65 # are allowed.
   66 #
   67 #  target localhost:daytime,echo,chargen
   68 
   69 # Basic interactive services, TCP only.
   70 #
   71 #  target localhost:telnet/tcp,ftp/tcp
   72 
   73 # VNC traffic -- usually you will only need a subset of this
   74 # range, perhaps 5900 or 5901.
   75 #
   76 #  target localhost:5900-5999/tcp
   77 
   78 # X Window System -- again, usually you will only need
   79 # a subset of this range.
   80 #
   81 #  target localhost:6000-6010/tcp
   82 
   83 # Here is an example of specifying targets using a subnet. In
   84 # this case allowing tunnels to be established to VNC servers
   85 # on the 10.1.1.xx subnet.
   86 #
   87 #  target 10.1.1.0/24:5900/tcp
   88 
   89 # The following line ensures that the default target host
   90 # is the local machine. The last named host becomes the
   91 # default so leaving this here ensures that "localhost" is,
   92 # the default unless overridden on the command line.
   93 
   94 target localhost