skip to main | skip to sidebar

Hacker's Blog

Monday, May 29, 2006

Networking Hacks

How to chat without using talk

At Server side:
nc -l -p 5600 -vv
At client Side:
nc 10.100.116.37 5600

Here 10.100.116.37 is the ip of server. 5600 is the port.

How to transfer file with out using ftp

At Server Side:
nc -v -w 30 -p 5600 -l > filename.back
At Client Side:
nc -v -w 2 10.100.116.37 5600 < filename

Posted by guptav at 6:42 PM
Labels: Hacks
Newer Post Older Post Home

Labels

  • Hacks (12)
  • Perl (8)
  • Shell (5)
  • Vim (4)
  • C++ (3)
  • Links (3)
  • article (3)
  • notes (3)
  • misc (2)
  • Kernel (1)
  • Python (1)
  • git (1)
  • howto (1)
  • programming (1)
  • sysadmin (1)

Blog Archive

  • ►  2012 (2)
    • ►  May (2)
  • ►  2008 (6)
    • ►  November (1)
    • ►  June (1)
    • ►  April (1)
    • ►  February (1)
    • ►  January (2)
  • ►  2007 (7)
    • ►  September (2)
    • ►  July (1)
    • ►  May (1)
    • ►  April (3)
  • ▼  2006 (30)
    • ►  November (5)
    • ►  September (3)
    • ►  July (1)
    • ►  June (1)
    • ▼  May (18)
      • How to set up thinclient in Linux
      • C++ Programs [Interview]
      • How To Speed Up Firefox [Howto]
      • How to Export sound in Linux [Howto]
      • Vim Movements
      • How to set up ssh keys for Linux
      • Changing MySQL root password
      • Makefile for c++ project
      • Picking a random quote or signature from a file [p...
      • Linux Tips
      • Linux Command Line Tips
      • Vim Folding Tips
      • How to Search in Google
      • Vim and HTML
      • Extract links from a file [perl]
      • Networking Hacks
      • How to mail using telnet
      • SMTP Commands
    • ►  April (2)
  • ►  2005 (1)
    • ►  November (1)

Links

  • Google News

Contributors

  • Saurabh Joshi
  • guptav