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

1.1       misho       1: #
                      2: # TFTPd Config
                      3: #
1.2     ! misho       4: # $Id: tftpd.conf,v 1.1.1.1.2.1 2014/02/17 10:12:25 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: 
                     16: bind = 0.0.0.0
                     17: port = 69
                     18: 
                     19: # timeout transfer in seconds
                     20: timeout = 5
                     21: 
                     22: [exec_on]
                     23: # execute scripts on events
1.2     ! misho      24: #      parameters:: <action> <opcode> <filename> <mode> <client_address> <client_port>
1.1       misho      25: request = /etc/tftpd/request.sh
                     26: complete = /etc/tftpd/complete.sh
                     27: error = /etc/tftpd/error.sh

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