I did a netstat and found that I have a port 9098 opened by xinetd.
However, when I `cat /etc/xinetd.d/service`, I find that it should be off by default:
Code:
# default: off
# description: An internal xinetd service, listing active services.
service services
{
disable = no
type = INTERNAL UNLISTED
port = 9098
socket_type = stream
protocol = tcp
wait = no
only_from = 127.0.0.1
}
I am trying to find out what exactly does it do?