With the telnet program one can connect to any TCP port on any host, but is there a way to listen on some port on current host?
i.e.
1) on host a: telnet listen 12345
2) on host b: telnet host_a 12345
I don't want any service behind the listening side, just connection and whatever typed to be transferred as is both ways.
I know I can already do the 2), but is there any way to achieve the 1)? I'm interested in both Windows and Linux solution.
The usual tool for this is something called
netcat
. It's available in most Linux distros, and may even be installed by default in some (the command isnc
). There are even ports for Windows, but nearly every antivirus package on the planet considers it deeply suspicious due it's use in malware which makes it hard to download and use.Depends on the distro and netcat version, you may not need
-p
option.You are looking for a program called netcat. It is the swiss army knife of network utilities. You can tell it to listen on any arbitrary port as well as many other things.
Netcat, is what you're looking for.
http://netcat.sourceforge.net/
Download Netcat. Swiss army knife of network utilities. http://netcat.sourceforge.net/
Even better than
netcat
issocat
.It provides a lot more control over socket options, and also many more choices for where to send received data.
Internet Maniac can listen on any TCP and UDP port in Windows world