Difference between revisions of "How to use telnet without the telnet command installed"

From Tech-Wiki
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
[[Category:Linux]]
 
[[Category:Linux]]
  
The telnet command in not installed by default anymore. So you can use this command below:
+
The telnet command in not installed by default anymore. So you can use this command below instead:
 
  $ cat < /dev/tcp/192.168.0.1/23
 
  $ cat < /dev/tcp/192.168.0.1/23
 +
 +
Another way
 +
$ nc -v portquiz.net 8080

Latest revision as of 01:20, 16 April 2017


The telnet command in not installed by default anymore. So you can use this command below instead:

$ cat < /dev/tcp/192.168.0.1/23

Another way

$ nc -v portquiz.net 8080