File:
[ELWIX - Embedded LightWeight unIX -] /
elwix /
config /
etc /
default /
tftpd.conf
Revision
1.2:
download - view:
text,
annotated -
select for diffs -
revision graph
Mon Sep 15 19:06:44 2014 UTC (10 years, 1 month ago) by
misho
Branches:
MAIN
CVS tags:
elwix2_8,
elwix2_7,
elwix2_6,
elwix2_3,
HEAD,
ELWIX2_7,
ELWIX2_6,
ELWIX2_5,
ELWIX2_2p0
elwix 2.2
1: #
2: # TFTPd Config
3: #
4: # $Id: tftpd.conf,v 1.2 2014/09/15 19:06:44 misho Exp $
5:
6: [tftpd]
7: # Drop priv to user
8: user = root
9: # Chroot to dir
10: chroot = /
11:
12: dir = /dev
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: # if you wish padding to end of buf_io size with ascii char. Usually uses for NAND storages
19: #buf_pad = 0
20:
21: bind = 0.0.0.0
22: port = 69
23:
24: # timeout transfer in seconds
25: timeout = 5
26:
27: [exec_on]
28: # execute scripts on events
29: # parameters:: <action> <opcode> <filename> <mode> <client_address> <client_port>
30: request = /etc/tftpd/request.sh
31: complete = /etc/tftpd/complete.sh
32: error = /etc/tftpd/error.sh
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>