Annotation of tftpd/etc/tftpd.conf, revision 1.2.8.1

1.1       misho       1: #
                      2: # TFTPd Config
                      3: #
1.2.8.1 ! misho       4: # $Id: tftpd.conf,v 1.2 2014/02/17 14:28:29 misho Exp $
1.1       misho       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: 
1.2.8.1 ! misho      16: # if you don't want direct access to write file. You can specify buffer size in bytes
        !            17: buf_io = 65536
        !            18: 
1.1       misho      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
1.2       misho      27: #      parameters:: <action> <opcode> <filename> <mode> <client_address> <client_port>
1.1       misho      28: request = /etc/tftpd/request.sh
                     29: complete = /etc/tftpd/complete.sh
                     30: error = /etc/tftpd/error.sh

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