A service is running in my system (redhat linux) which opens the port 9000. When i do
# telnet localhost 9000 it says,

Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.

But when i do the same with my network ip,
# telnet 172.21.198.62 9000

It says,

Trying 172.21.198.62...
telnet: connect to address 172.21.198.62: Connection refused
telnet: Unable to connect to remote host: Connection refused

Why is that ?

I've diabled the firewall using service iptables stop


Moreover this happens only for this port, telnet 172.21.198.62 22 works properly.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Process listen only 127.0.0.0:9000

netstat -an | grep 9000

change program conf

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.