Hello,
in attempt to clone a coin from source i have spent almost three days trying to connect nodes to newly compiled daemon and got a connection issue. Since my digitalocean subscription has expired, i can only use my current physical rigs connected through router tp-link R860. That i have only one public IP i have set a VPN connection on my second rig. On the first rig which uses my default IP, i have forwarded both RPC and P2P ports.
Now doing the following to connect to my second machine:
./MyCoind -connect=X.X.X.X &
backward connecting second machine to the first:
./MyCoind -connect=Y.Y.Y.Y &
doing getinfo and seeing no available connections listed.
Both debug.log's say
on first rig:
trying connection Y.Y.Y.Y lastseen=0.0hrs
connection timeout
on second rig:
trying connection X.X.X.X lastseen=0.0hrs
connection timeout
mycoin.conf:
rpcuser=my_user_id
rpcpassword=my_password_id
rpcallowip=127.0.0.1
rpcport=59124
port=59125
rpcthreads=10
server=1
addnode=X.X.X.X
addnode=Y.Y.Y.Y
Nodes are not seen each other. Is it even possible to
get nodes running through one router or should i necessary get a remote server with distinct static IP? I haven't seen this issue when set a node using digitalocean droplet. Please help.