Post
Topic
Board Announcements (Altcoins)
Re: WARP - Something different - Crowdfunding Ended - 29.94BTC Raised
by
boki15
on 29/01/2016, 19:28:00 UTC
I created a "warp.conf" file here. Is it ok the way I did it?

Code:
addnode=109.235.71.102
addnode=24.48.120.173
addnode=70.83.227.32
server=0
rpcuser=user
rpcpassword=pass
rpcallowip=127.0.0.1
rpcallowip=192.168.1.*
rpcconnect=127.0.0.1

Thanks

It does not matter where you place your nodes, on beginn or at the end, good is, it is structured and not mixed. I like your config Smiley, it's the first where I see addnodes on beginn. And I am sure you use different user and pass than posted Smiley, correct?

Code: (These are entries that I in most cases add (ie. for POW mining, you can't mine warp), like to specify custom ports, different from defaults)
listen=1
daemon=1
server=1
rpcport=31313
port=31312

Last time I gave a tip to a person on this forum, I was told I am arrogant. I'll try it again and hope it can help you and others.

There is nothing wrong with your config, this is just another way of writing, for some usefull, for others less usefull.
Code: (Some would say it's an overhead, additional bytes to the config, for me it's usefull :))
rpcallowip=127.0.0.1/32

Code: (and for the range I would take)
rpcallowip=192.168.1.0/24

WHAT DOES /24 or /32 MEAN???
Code: (Here is some explanation:)
/32 is a network mask of 255.255.255.255
/24 is a network mask of 255.255.255.0

Code: (so it must mean)
192.168.0.254/32 = ip address of 192.168.0.254
192.168.0.1/24 = range of ip's from 192.168.0.1 to 192.168.0.1.255

Code: (a subnet mask is 32 bits. and looks like this in binary)
00000000.00000000.00000000.00000000

Code: (in a 24 netmask (255.255.255.0) the bits looks like this)
11111111.11111111.11111111.00000000

all number one's represent closed bit. Zero's can support 2 ip addresses per bit, the calculation is 2^N -2 where N= the number of open (0) bits, -2 because all open and all closed are not valid.

Means, in 192.168.0.0/24 valid firewall range is 192.168.0.1-192.168.0.254, in 192.168.0.1/32 the ONLY valid ip is 192.168.0.1

I am not chinese, but if somebody doesn't understand my chinese and is interested in this topic, feel free to google for CIDR notation....

Have a nice day @all Smiley