RPCAllowIP to give access to clients

+2 votes
What is the syntax to  enter multiple ip addresses in the rpcallow paramter in multichain.conf? is there a way to remove this restriction so that any client can connect to this node?
asked Jan 25, 2016 by senthil

1 Answer

+5 votes

It works in the same way as in Bitcoin Core - here's the explanation with examples from this page:

# By default, only RPC connections from localhost are allowed.  Specify
# as many rpcallowip= settings as you like to allow connections from
# other hosts. As of Bitcoin Core 0.10.0, wildcards are no longer allowed. Use one of the sample forms below.
# NOTE: opening up the RPC port to hosts outside your local
# trusted network is NOT RECOMMENDED, because the rpcpassword
# is transmitted over the network unencrypted.
#rpcallowip=10.1.1.34
#rpcallowip=192.168.1.0/255.255.255.0
#rpcallowip=172.16.0.0/24
answered Jan 25, 2016 by MultiChain
...