Create a simple chat server on Ubuntu

This is an easy way to have a chat session between two hosts.

On 1st host:
host1# netcat -lp 1337

On 2nd host:
host2 # netcat host1 1337


<now start chatting.....   to easy>