Hi,
On Fri, May 26, 2006 at 09:57:08PM +0200, Eric Shun wrote:
> I would like to ping a node using its public IP address (over the Internet).
> I try to run my nodes using erl -sname
[hidden email] but that doesnt
> work.
> How can I run both nodes so they can communicate using their IP address?
Have you tried with -name instead of -sname?
In my two machines it works fine.
In machine 192.168.0.1 I try:
$ erl -name node2@192.168.0.1 -setcookie hicookie
Erlang (BEAM) emulator version 5.4.6 [source] [threads:0]
Eshell V5.4.6 (abort with ^G)
(node2@192.168.0.1)1> register(b,self()).
true
(node2@192.168.0.1)2> receive X -> X end.
Then, i do the following in machine 192.168.0.2:
$ erl -name node1@192.168.0.2 -setcookie hicookie
Erlang (BEAM) emulator version 5.4.6 [source] [hipe]
Eshell V5.4.6 (abort with ^G)
(node1@192.168.0.2)3> nodes().
[]
(node1@192.168.0.2)4> {b,'node2@192.168.0.1'}!hi.
hi
(node1@192.168.0.2)5> nodes().
['node2@192.168.0.1']
And I receive the hi message in 192.168.0.1.
Cheers.