-2

I currently have a full bitcoin node on my local network and I would like to create another node but only update it by the local network.

I have tried with:

./bitcoind -connect<iplocal>

and

./bitcoind -addnode<iplocal>

but I get the following error

syntax error near unexpected token `newline'

Appreciate your help.

1 Answers1

-1

Juan,

It should be ./bitcoind -connect=<iplocal> rather than ./bitcoind -connect<iplocal> and you should be using -connect and not -addnode since the former will ensure that the node connects to only the host specified.

takinbo
  • 105
  • 2