I was wondering whether it is possible to create a private network (I previously used this tutorial: Create A Private Network | Algorand Developer Portal), which would use a public IP instead of localhost that would be accessible from another VM on my network or remotely? Trying to change the EndpointAddress in config.json (tried both the public IP and 0.0.0.0) does not work and algod simply stops using IPv4.
If this is not possible, how can I implement a remote node without using mainnet (I’m testing)?
Changing the EndpointAddress should make your node listen on the provided address.
Please make sure to restart the node after making changes to the config.json file.
Hi @tsachi - thanks for your answer! I tried EndpointAddress before but probably haven’t restarted the network properly. It functioned by setting the address to 0.0.0.0:0 and restarting. Thank you!