home *** CD-ROM | disk | FTP | other *** search
- # Sample FTPD.CFG file for FTPD.NLM
- #
- # lines beginning with # are comments.
-
- maxconnections 5 # specify max # connections
- # forced to 2 or less in DEMO mode
-
- screendelay 2 # set delay in seconds between status
- # screen updates
-
- logfile sys:system\logfile.ftp
- # specify alternate logfile
-
- # The following lines are examples. Modify to
- # suite your needs and delete any remaining lines
- # that do not apply
-
- #####################################################
- # DEFAULT CLASS
- #
- # The following class conditions will be used if
- # the incoming IP address (or name) doesn't match
- # any other class
- #####################################################
- # The following class allows access to all users on
- # all servers accept for bkc (on any server). Once
- # connected, users may be idle up to 2 minutes, and
- # connected for at most 10 minutes. They can only login
- # mon-fri and they are only allowed readonly access
-
- class default
- deny */bkc
- settings connect 10, idle 2 +
- timerange mon-fri/0-23 +
- readonly
-
- #########################################################
- # CLASS DOM.MURK.COM
- #
- # The following class is used if the client IP address
- # is in subnet 20
- # or any name ending in dom.murk.com
- #########################################################
- # Access to all servers is denied, accept for access to
- # server GIMP, which allows all users. However users can
- # only login mon-fri between 10PM and 5AM, or
- # any time saturday and sunday
-
- class dom_murk_com
- address *.dom.murk.com
- address 113.121.20.*
- deny */*
- allow gimp/*
- settings timerange mon-fri/22-5 +
- timerange sat-sun/0-23
-
- ##########################################################
- # CLASS MURKWORKS
- #
- # This class is used if the client IP address is in class
- # B network 113.121 or its IP name ends in murk.com
- # NOTE: Class dom.murk.com has precidence over this class as
- # appropriate since it is more specific
- ##########################################################
- # This class allows access to any user on THIS SERVER ONLY
- # All users except for bkc have readonly access and can only login
- # on weekends between 10am and 9pm
- # User bkc has access only on the weekends
- # In either case, all read/write operations will be logged to
- # the file vol1:usr\fred\logfile.ftp
-
- class murkworks
- address 113.121.*.*
- address *.murk.com
- deny */*
- allow * readonly timerange sun-sat/10-21
- allow bkc timerange sat-sun/0-23
- settings log 25 +
- logfile vol1:usr\fred\logfile.ftp
-
-
-
-
-
-