Search code examples
windowsserverwindows-7telnet

How can I use the telnet server service, that comes with windows, to listen for a port?


Is there an easy way to use the telnet server from command line?
I can connect with telnet [ip/domain] [port] but is there a telnet equivalent of nc -l -p [port]?

I've tried using netcat for windows but it didn't support ANSI.
I've tried telnet-server but that didn't work.

Is there a native Win7 way of making a telnet server? And if so, how?


Solution

  • The partial answer is net start telnet, though there's no easy way to emulate netcat -e.

    EDIT: Just use netcat, it can transmit ansi art, but only telnet can display it.