Installation: xinetd.conf

File xinetd.conf, 924 bytes (added by mirek@…, 4 years ago)

xinetd config

Line 
1defaults
2{
3 log_type = syslog local6
4}
5
6service time
7{
8 socket_type = dgram
9 protocol = udp
10 wait = yes
11 user = root
12 type = INTERNAL UNLISTED
13 id = time-dgram
14 port = 37
15 per_source = 1
16 cps = 50 10
17}
18
19service daytime
20{
21 type = INTERNAL UNLISTED
22 id = daytime-dgram
23 socket_type = dgram
24 protocol = udp
25 user = root
26 wait = yes
27 port = 13
28 per_source = 1
29 cps = 50 10
30}
31
32service tftp
33{
34 disable = no
35 socket_type = dgram
36 protocol = udp
37 wait = yes
38 user = root
39 server = /usr/local/libexec/in.tftpd
40 server_args = -B 65464 -t 10 -p -v -v -v -u tftp -s /tftpboot
41 instances = 20
42 per_source = 1
43 cps = 50 10
44 log_type = SYSLOG ftp info
45}
46