Author

Topic: How to set up new DNS Seeds for an altcoin? (Read 10551 times)

full member
Activity: 156
Merit: 100
April 05, 2014, 09:44:59 PM
#9
hi,all
       I had the same question,I had created a new coin and delete thes code.My coin used conf file to help us connect with each other,but sometimes,client show no connection.How can i solve,should i creat a dns service by myself,and write dns address in the code?
hero member
Activity: 623
Merit: 501
January 08, 2014, 04:32:45 PM
#8
The main reason of having DNS seed server is to solve the "no connection" issue. The wallet(client) check-in to DNS seed server when it start up to 1. report to it as an active node & 2. get other active nodes available.

DNS seed is optional for most crypto currencies, but for a new alt coin, better to have it as it helps a lot with connection issues.

It is NOT a node.

https://github.com/sipa/bitcoin-seeder

Regards.

Thanks for that link
full member
Activity: 165
Merit: 100
December 28, 2013, 09:30:17 AM
#7
The main reason of having DNS seed server is to solve the "no connection" issue. The wallet(client) check-in to DNS seed server when it start up to 1. report to it as an active node & 2. get other active nodes available.

DNS seed is optional for most crypto currencies, but for a new alt coin, better to have it as it helps a lot with connection issues.

It is NOT a node.

https://github.com/sipa/bitcoin-seeder

Regards.
hero member
Activity: 623
Merit: 501
December 28, 2013, 08:29:10 AM
#6
In case we're talking about a Litecoin clone (scrypt), I've read somewhere that mentioning DNS Seeds in the coding (in net.cpp) isn't necessary but I don't know if this statement is correct.
copper member
Activity: 1380
Merit: 504
THINK IT, BUILD IT, PLAY IT! --- XAYA
December 28, 2013, 05:34:10 AM
#5
Someone told me once upon a time that seeds are not nodes but, rather, hostnames / subdomains / domains whose DNS is on a modified DNS-server, one that has been modified to use the list of current live nodes to populate the hostname with currently live nodes.

So basically instead of merely plugging into your DNS a whole bunch of IP addresses that people have claimed they would maintain nodes at, your DNS server itself answers DNS queries with the IP address of nodes that actually are alive at the time and actually do have their incoming port open at the time.

-MarkM-


That's a pretty slick little trick.

Does anyone know of a repo for anything like that?

But wouldn't it just be a lot easier to have a simple HTTP response with a text list of 1 IP per line?

Is there any real advantage to using a modified DNS server?
legendary
Activity: 2940
Merit: 1090
December 28, 2013, 05:27:10 AM
#4
Someone told me once upon a time that seeds are not nodes but, rather, hostnames / subdomains / domains whose DNS is on a modified DNS-server, one that has been modified to use the list of current live nodes to populate the hostname with currently live nodes.

So basically instead of merely plugging into your DNS a whole bunch of IP addresses that people have claimed they would maintain nodes at, your DNS server itself answers DNS queries with the IP address of nodes that actually are alive at the time and actually do have their incoming port open at the time.

-MarkM-
hero member
Activity: 623
Merit: 501
December 28, 2013, 05:20:15 AM
#3
Sorry, I got no answer for you cause I'm looking for the same information. Hope someone of this community is willing to share his knowledge?  Wink
full member
Activity: 165
Merit: 100
October 30, 2013, 02:57:54 PM
#1
I noticed that in the bitcoin source code, we have:
Code:
static const char *strMainNetDNSSeed[][2] = {
    {"bitcoin.sipa.be", "seed.bitcoin.sipa.be"},
    {"bluematt.me", "dnsseed.bluematt.me"},
    {"dashjr.org", "dnsseed.bitcoin.dashjr.org"},
    {"xf2.org", "bitseed.xf2.org"},
    {NULL, NULL}
};

If I'm creating my own altcoin, I should probably start by changing these seed nodes. When setting up a new node, how exactly will it return data? Are these the domains that point to bitcoin clients currently running and from that, the process of peer discovery can grow?
Jump to: