Reputation: 507
I have two erlang clients:
And one remote erlang server with global IP address “externalIP1”:
server@“externalIP1”
To connect the clients and the server by a two-way communication, I’m going to forward client machines through the second global IP address “externalIP2” on my router.
Thanks in advance!
Upvotes: 1
Views: 381
Reputation: 437
Port forwarding ? you mean NAT or SSH ?
I feel using SSH port forwarding is a way more easier to setup for erlang distribution . Please check the third answer in Run Erlang Observer with ssh port forwarding
Or else you alternatively try epmdless Erlang environment using Docker and this aviods making any addational network setup other than Docker's one
For it, Please check this
https://www.erlang-solutions.com/blog/erlang-and-elixir-distribution-without-epmd.html
Upvotes: 2