ho aggiunto il file micro_httpd a xinetd.d con questo contenuto:

codice:
# default: on
# description: Server http.
service micro_http
{
	disable	= no
	server = /usr/sbin/micro_httpd
	server_args = /home/matteo/
	port = 61000
	socket_type = stream
	protocol =  tcp
	wait = no
	only_from = 127.0.0.1
}
ho riavviato xinetd e ho aggiunto la riga

micro_http 61000/tcp #Micro HTTP server

al file etc/services

ma se digito l'indirizzo http://127.0.0.1:61000 il browser mi risponde:

the connection was refused when attempting to contact 127.0.0.1:61000

qualcuno sa spiegarmi dove sbaglio?