Para configurar um serviço de eco no Debian, você pode instalar o xinetd
com:
apt-get install xinetd
É necessário alterar a diretiva disable
para no
in /etc/xinetd.d/echo
; ou se o arquivo não existir, crie-o como mostrado aqui:
# default: off
# description: An xinetd internal service which echo's characters back to
# clients.
# This is the tcp version.
service echo
{
disable = no
type = INTERNAL
id = echo-stream
socket_type = stream
protocol = tcp
user = root
wait = no
}
# This is the udp version.
service echo
{
disable = yes
type = INTERNAL
id = echo-dgram
socket_type = dgram
protocol = udp
user = root
wait = yes
}
Depois de definir disable = no
ou criar o arquivo, reinicie o xinetd
com:
sudo service xinetd restart
Para testar o serviço echo
TCP:
$nc localhost echo
testing...
testing...
xxxx
xxxx
^C