mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 11:13:24 +02:00
* Ein tftp-Server für space. * xinetd standardmäßig installiert in der ISO. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@233 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
18 lines
502 B
Plaintext
18 lines
502 B
Plaintext
# description: The tftp server serves files using the trivial file transfer \
|
|
# protocol. The tftp protocol is often used to boot diskless \
|
|
# workstations, download configuration files to network-aware printers, \
|
|
# and to start the installation process for some operating systems.
|
|
service tftp
|
|
{
|
|
socket_type = dgram
|
|
protocol = udp
|
|
wait = yes
|
|
user = root
|
|
server = /usr/sbin/in.tftpd
|
|
server_args = -s /var/log/tftpboot
|
|
disable = no
|
|
per_source = 11
|
|
cps = 100 2
|
|
flags = IPv4
|
|
}
|