4

I would like send a chat message (like mail chat) between two systems, the systems are inter-connected proxy IP.

Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
Sant
  • 41
  • 1
  • 1
  • 6
  • Have a look in https://askubuntu.com/questions/61995/chat-over-lan-from-linux-to-linux?newreg=48e69317ed184414ae8c3d89463199ed – Vascon63 Feb 17 '20 at 19:34

3 Answers3

9

You can use talk or ytalk

More info:

Alternatively:

You can use netcat,

On box1: nc -l 3333

On box2: nc $IP 3333, where $IP equals the local IP address of the first system.

Once you do this, in the same box (box2) , type something and press enter. Take a look on your other box.

You can also choose a different port and get it opened on the firewall.

neuron
  • 1,941
  • 11
  • 20
  • Thank you. I have gone through `netcat` working good. Actually I need like gmail chat, means here box1 is must be open then only box2 can go ahead. Directly con't proceed it. Do that possible? – Sant Jul 15 '15 at 06:57
1

Edit: Neuron was 15s faster :)

Since you don't state your specific OS or networking setup, it won't be easy to suggest anything. Have a look at this example of a "chat" using netcat.

Lenniey
  • 113
  • 5
0

ychat for simple chat, but personally I'd be inclined to setup a (or just connect to an existing) IRC server

DaFoot
  • 101
  • 2