File:  [ELWIX - Embedded LightWeight unIX -] / tftpd / etc / tftpd.conf
Revision 1.2.8.1: download - view: text, annotated - select for diffs - revision graph
Fri Feb 21 15:46:52 2014 UTC (10 years, 4 months ago) by misho
Branches: tftp1_1
Diff to: branchpoint 1.2: preferred, unified
add buf_io option

    1: #
    2: # TFTPd Config
    3: #
    4: # $Id: tftpd.conf,v 1.2.8.1 2014/02/21 15:46:52 misho Exp $
    5: 
    6: [tftpd]
    7: # Drop priv to user
    8: user = nobody
    9: # Chroot to dir
   10: chroot = /
   11: 
   12: dir = /tftpboot
   13: # if file exists we can override it!
   14: override = yes
   15: 
   16: # if you don't want direct access to write file. You can specify buffer size in bytes
   17: buf_io = 65536
   18: 
   19: bind = 0.0.0.0
   20: port = 69
   21: 
   22: # timeout transfer in seconds
   23: timeout = 5
   24: 
   25: [exec_on]
   26: # execute scripts on events
   27: # 	parameters:: <action> <opcode> <filename> <mode> <client_address> <client_port>
   28: request = /etc/tftpd/request.sh
   29: complete = /etc/tftpd/complete.sh
   30: error = /etc/tftpd/error.sh

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>