is it possible to configure an erlang node with multiple long node names? Here are two use cases:
I have an erlang node running on a machine with multiple IPs say 172.16.1.2 and 172.17.1.2. Other nodes in the cluster need to be able to send message to this node via either IP address. So I need the node to have the name of [email protected] and [email protected].
I use the node in both IPC and RPC settings. Other processes in the same machine talk to this node via 127.0.0.1 (let's assume these processes are not aware of the external IP). The node also needs to talk to external world via the external IP. So it will be ideal that the node is run with [email protected] and x@.
Thanks.