Linux Today: Linux News On Internet Time.
Search Linux Today
Linux News Sections:  Developer -  High Performance -  Infrastructure -  IT Management -  Security -  Storage -
Linux Today Navigation
LT Home
Contribute
Contribute
Link to Us
Linux Jobs

Partner Sites
JustLinux.com
Linux Planet
PHPBuilder
Technology Jobs

Top White Papers

More on LinuxToday


The amazing tool called netcat

Aug 16, 2009, 07:04 (1 Talkback[s])
(Other stories by Girish Venkatachalam)

"Of course you can argue that you can do the same thing with telnet too. Simply running

$ telnet 192.168.1.5 80
will tell us if a HTTP server is listening at port 80 in 192.168.1.5. nc will do the same thing with
 $ nc -v  192.168.1.5 80
You can run a TCP server on 192.168.1.3 with
 $ nc -l  -p 1234
and you can connect to it from another machine by
$ nc 192.168.1.3 1234 

Complete Story

Related Stories: