Can I connect to a multichaind service via ngrok?

+4 votes
For example, while trying to connect to a seed node from another machine the command `multichaind chain1@0.tcp.ap.ngrok.io:xxxxx` where `xxxxx` refers to the ngrok port number, I encountered segmentation fault.
asked Sep 23, 2023 by kakkoiiman
I did a nslookup and replaced the FQDN with the IP address and it worked.

This implies multichain node only can only work with IP address?

1 Answer

0 votes

If I remember well, this is a bug solved in the latest release. Check it in the release note to find when it was fixed.

Anyway, you could solve this way:

multichaind chain1@$(dig +short 0.tcp.ap.ngrok.io):xxxxx

answered Sep 24, 2023 by fabio_test
...