26 lines
414 B
Plaintext
26 lines
414 B
Plaintext
|
# Begin /etc/xinetd.d/echo
|
||
|
|
||
|
service echo
|
||
|
{
|
||
|
disable = yes
|
||
|
type = INTERNAL
|
||
|
id = echo-stream
|
||
|
socket_type = stream
|
||
|
protocol = tcp
|
||
|
user = root
|
||
|
wait = no
|
||
|
}
|
||
|
|
||
|
service echo
|
||
|
{
|
||
|
disable = yes
|
||
|
type = INTERNAL
|
||
|
id = echo-dgram
|
||
|
socket_type = dgram
|
||
|
protocol = udp
|
||
|
user = root
|
||
|
wait = yes
|
||
|
}
|
||
|
|
||
|
# End /etc/xinetd.d/echo
|