I have windows Xp , I want to test some port , someone advice me to use telnet command on localhost to test it . but i don't know how i can do it (syntax of telnet command on local host) ?

link|improve this question

67% accept rate
feedback

migrated from serverfault.com Jan 21 '11 at 10:56

This question came from our site for system administrators and desktop support professionals.

2 Answers

You can do this by executing the Command Prompt (Start -> Run -> cmd)

Once you get the command prompt you can test the port by writing this on the command prompt

telnet localhost PORTNUMBER
link|improve this answer
I assume you're trying to test the HW port - if so, this may not get you what you want. I don't know Windows networking as well as another OS, but the OS will likely short circuit the data path and never actually hit the hardware. – Shannon Nelson Aug 5 '11 at 3:53
feedback

to learn some of the syntax from the command prompt type:

c:\telnet /?

Typically you would do something like the following and see what kind of message pops up. Sometimes it may connect but nothing gets displayed. If the port is closed, then there is an error of some kind... even if nothing displays in a couple of seconds, just type "quit" to close the connection.

c:\telnet IPAddrOrHostname Port#
c:\telnet 192.168.0.1 25
c:\telnet server.mydomain.com 80
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.