So I have try to pinging coinpayments.net and I see no problem with it.
Do I just copy and past all the code to the Unobtanium.conf or I need to choose certain addnode from the code?
"rpcallow=192.168.0.* (or whatever your LAN range is)"And I am not quite sure what Lan range is.
Copy and paste all of this code into a
new Unobtanium.conf file (there should
not be one there already if you've followed my instructions to step 6 earlier):
rpcuser=DDingC
rpcpassword=DDingCsPassword
rpcport=65535
port=65534
server=0
listen=1
daemon=1
rpcallow=192.168.0.*
#Addnodes (edited by cragv Feb 2, 2015)
addnode=107.178.222.72
addnode=118.211.233.170
#addnode=123.3.182.103
addnode=130.211.52.84
#addnode=137.135.56.97
#addnode=171.96.247.122
#addnode=171.96.247.216
#addnode=174.71.57.33
addnode=188.77.210.215
addnode=192.99.15.174
addnode=196.217.152.237
#addnode=2001:41d0:a:3568::1
#addnode=207.161.232.137
#addnode=212.18.50.157
#addnode=213.21.33.12
addnode=46.10.57.232
addnode=66.118.128.10
addnode=66.38.68.32
#addnode=69.9.221.56
#addnode=70.65.223.126
#addnode=71.231.13.60
addnode=71.35.31.39
#addnode=73.168.130.37
addnode=74.216.69.154
#addnode=75.104.136.189
#addnode=77.24.88.92
#addnode=77.247.149.118
#addnode=77.57.110.236
#addnode=80.128.196.29
#addnode=82.111.88.34
addnode=83.45.201.127
#addnode=86.99.68.163
#addnode=88.134.97.222
#addnode=89.85.69.152
#addnode=91.44.252.232
#addnode=98.222.94.137
#addnode=99.231.163.95
addnode=chainz.cryptoid.info
addnode=coinwallet.co
addnode=cryptap.us
addnode=allcrypt.com
addnode=bleutrade.com
addnode=coinpayments.net
I've put a hash at the start of each line for nodes that didn't respond, so the software will ignore these. This is known as 'commenting' in coder-speak. I hate to spoon feed you, but you can copy and paste the above set of code directly into your conf file, set your rpcallow command to match your IP range, and you should be fine. I've set server=0 with the assumption that you're not mining locally. (Again, copy-pasting the above is the right next step assuming you've followed my previous instructions and have tested your wallet with no conf file and left it for an hour or so).
"LAN range" is analogous to "IP address range". It is the range of Internet Protocol addresses on which your home network runs. To determine your "LAN range", open the CMD window again and enter:
ipconfigIn the results, you're looking for your Local Area Connection that will have the prefix of the type of network adapter you're using. "Ethernet adapter" means wired cable to your switch/router, while "WLAN adapter" or "$brand name $adapter type adapter" will show for wireless connections (for example, "Intel PRO 6 WLAN adapter Local Area Connection"). In my case (and yours if your computer has a network cable from your router for internet connection), the one I was looking for was
Ethernet adapter Local Area Connection.
Here's an edited version of part of my ipconfig results (I've changed my subnet details to protect my privacy):
C:\Users\cragv>ipconfig
Windows IP Configuration
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
IPv4 Address. . . . . . . . . . . : 192.168.1.5
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.1
If I was setting up a conf file (I don't use one with my UNO wallet, I'm not mining, just running the wallet and it connects fine), I'd use this:
rpcallow=192.168.1.*I'm using automatic network settings (aka. 'Dynamic IP address') in my Windows network adapter settings. The * means my IP address can change to something else (
192.168.1.<2-254> and the
rpcallow command will still work. Conversely, if I had a static IP address (that is, it was manually set in my Windows settings), I might use this:
rpcallow=192.168.1.5 (or whatever my IP address was if it wasn't 5).
If this is all strange and confusing to you, it's likely you're using automatic network adapter settings, meaning your modem/router is providing your computer's IP address. Thus, you want to use
ipconfig to find your IP address (IPv4 in particular) and then set your
rpcallow command to use the first three of four blocks in the address (ie.
192.168.1.*). Your Default Gateway needs to be on the same 'subnet' (IP range) as your computer in order for the two to communicate. Look at my results again: my router's
Default Gateway (aka. my private router address as opposed to my public IP address that I present to the internet - find yours at
www.whatismyip.com) is
192.168.1.1. Thus, my local PC address needs to be
192.168.1.<2 to 254> (with some caveats). Set your
rpcallow accordingly.
TL;DR: lol just kidding, it took me a while to put these posts together for you. I know you read them. Here's a recap instead:
You should make a new conf file as there shouldn't be one already. Copy and paste the data I put in the first code window from this post and then check your rpcallow matches your local IP address range. Default Windows is 192.168.0.* but many routers these days use 192.168.1.* and sometimes 192.168.10.*. Find yours with ipconfig. Save the conf file and test your wallet. Report back with results. Good luck!