Originally posted by: MarkTaylor
stupid question, but what app is listening on that port ? and have you actually started the app ? if you have and it is not listening on that port then you need to config the app to do so ..
So, on localhost do the following:
netstat -Aan | grep -i list ## will show all ports that are listening
netstat -Aan | grep <your port number> ## will see what is open on that port
If you see your app listening, then
tn 0 <port number>
If this all works, then you must be telnetting from another host and there is a firewall in the way.
Rgds
Mark Taylor