This is what I tried,but seems not working :

[root@ ~]# netstat -a|grep 48772
udp        0      0 *:48772                     *:*                                     
[root@ ~]# telnet localhost 48772
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
telnet: Unable to connect to remote host: Connection refused
link|improve this question

57% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You can use netcat instead:

nc -u localhost 48772

link|improve this answer
feedback

You need to use netcat instead, telnet only supports tcp. Something like this will work:

$ nc -u localhost 48772

netcat is installed by default on most modern linux machines (assuming that's what you have).

Also for completeness sake I want to point out that there's another tool called socat which describes itself as 'netcat++'. Might be a good thing to check out. In general however netcat will do what you need just fine.

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.