Number of masternode's connections

How many connections have your running masternodes? My one have 8-10 after a week. Is it not enough? I see http://drk.poolhash.org/masternode.html masternodes have 20-30 and they had 60-70 in the past. As I understand, number of connection doesn't affect on payments while masternode is in list.
My darkcoin.conf contains maxconnections=200 and externalip=my elastic ip.
 
Last edited by a moderator:
How many connections have your running masternodes? My one have 8-10 after a week. It is not enough? I see http://drk.poolhash.org/masternode.html masternodes have 20-30 and they had 60-70 in the past. As I understand, number of connection doesn't affect on payments while masternode is in list.
My darkcoin.conf contains maxconnections=200 and externalip=my elastic ip.
The number of outgoing connections is hardcoded to 8, so your client will only connect to 8 nodes by default. maxconnections= settings only affect incoming connections.

Nevertheless you should see more than 8-10 connections after a week. You could try to decrease the bantime= setting to 300 seconds (instead of 86400) so that your client is not banning other nodes that long.

This is one of my masternodes, 23 connections atm

Code:
drkmn01@ip-10-65-172-60:~$ darkcoind getinfo
{
    "version" : 101232,
    "protocolversion" : 70035,
    "walletversion" : 60001,
    "balance" : 0.00000000,
    "anonymized_balance" : 0.00000000,
    "blocks" : 131543,
    "timeoffset" : 0,
    "connections" : 23,
    "proxy" : "",
    "difficulty" : 2632.55913280,
    "testnet" : false,
    "keypoololdest" : 1409064258,
    "keypoolsize" : 1001,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00001000,
    "errors" : ""
}
 
Hi,

I am hosting a node for a customer for more than 10000 minutes now, and the node has never established more than 12 connections at once. This ist what the status looks like:
CSS:
dcmonitor@dcnode-fra-01:~# ./masternode status
{
    "version" : 101232,
    "protocolversion" : 70035,
    "walletversion" : 60001,
    "balance" : 0.00000000,
    "anonymized_balance" : 0.00000000,
    "blocks" : 131841,
    "timeoffset" : 0,
    "connections" : 10,
    "proxy" : "",
    "difficulty" : 4372.87893721,
    "testnet" : false,
    "keypoololdest" : 1409177788,
    "keypoolsize" : 1001,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00001000,
    "errors" : ""
}

Should I be bothered too?
 
Back
Top