[Pdns-users] Power Dns Server As A Domain Name Registry(Parent Name Server)

2013-07-23 Thread Önem Özgülgen
Hello,

Ip Address Of PowerDNS Server with MySQL Backend(Both Authoritative and
Recursive) :

188.132.241.151

Ip Address Of Bind9 Server:

188.132.250.197

Here's the MySQL dump of domains table;

mysql select * from domains;
++--++++-+-+
| id | name | master | last_check | type   | notified_serial | account |
++--++++-+-+
|  5 | etc  | yes|  1 | master |   1 | vixen   |
++--++++-+-+
1 row in set (0.00 sec)


Here's the MySQL dump of records table;

mysql select * from records;
++---+---+--+-+--+--+-+
| id | domain_id | name  | type | content | ttl  | prio |
change_date |
++---+---+--+-+--+--+-+
| 41 | 5 | forum.etc | NS   | ns1.forum.etc   |1 |1
|   1 |
| 43 | 5 | ns1.forum.etc | A| 188.132.250.197 |1 |1
|   1 |
| 39 | 5 | forum.etc | SOA  | 45325325325 |1 |1
|   1 |
++---+---+--+-+--+--+-+
3 rows in set (0.00 sec)


Here's the records file input for the master zone of forum.etc created in
Bind9 Server;

$ttl 38400
forum.etc.INSOAns1. info.forum.etc. (
1374623190
10800
3600
604800
38400 )
forum.etc.INNSns1.
ns1 IN  A   188.132.250.197
www IN  A   94.101.88.30


After i've replaced my pc's dns server ip to PowerDns Server, here's the
nslookup dump for both forum.etc and ns1.forum.etc;

C:\Users\vixennslookup forum.etc
Server:static-151-241-132-188.sadecehosting.net
Address: 188.132.241.151

Name: forum.etc

C:\Users\vixennslookup ns1.forum.etc
Server: static-151-241-132-188.sadecehosting.net
Address: 188.132.241.151

Name: ns1.forum.etc
Address: 188.132.250.197

On the web browser of my pc, when i typed http://ns1.forum.etc i'm getting
an Apache test page of the Bind9 Server and it' ok.

But, if i type http://www.forum.etc it can't connect to the ip address
which i've added in zone records of Bind9 Server.

If you need anything more, please let me know.

Thanks.
___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users


Re: [Pdns-users] Power Dns Server As A Domain Name Registry(Parent Name Server)

2013-07-23 Thread Önem Özgülgen
Hello,

Ip Address Of PowerDNS Server with MySQL Backend(Both Authoritative and
Recursive) :

188.132.241.151

Ip Address Of Bind9 Server:

188.132.250.197

Here's the MySQL dump of domains table;

mysql select * from domains;
++--++++-+-+
|* id | name | master | last_check | type   | notified_serial |
account 
|*++--++++-+-+
|*  5 | etc  | yes|  1 | master |   1 | vixen
 |*++--++++-+-+
1 row in set (0.00 sec)


Here's the MySQL dump of records table;

mysql select * from records;
++---+---+--+-+--+--+-+
|* id | domain_id | name  | type | content | ttl  |
prio |*change_date |
++---+---+--+-+--+--+-+
|* 41 | 5 | forum.etc | NS   | ns1.forum.etc   |1 |
1*|*   1 |*|* 43 | 5 | ns1.forum.etc | A|
188.132.250.197 |1 |1*|*   1 |*|* 39 | 5 |
forum.etc | SOA  | 45325325325 |1 |1*|*   1
|*++---+---+--+-+--+--+-+
3 rows in set (0.00 sec)


Here's the records file input for the master zone of forum.etc created in
Bind9 Server;

$ttl 38400
forum.etc.INSOAns1. info.forum.etc. (
1374623190
10800
3600
604800
38400 )
forum.etc.INNSns1.
ns1 IN  A   188.132.250.197
www IN  A   94.101.88.30


After i've replaced my pc's dns server ip to PowerDns Server, here's the
nslookup dump for both forum.etc and ns1.forum.etc;

C:\Users\vixennslookup forum.etc
Server:static-151-241-132-188.sadecehosting.net
Address: 188.132.241.151

Name: forum.etc

C:\Users\vixennslookup ns1.forum.etc
Server: static-151-241-132-188.sadecehosting.net
Address: 188.132.241.151

Name: ns1.forum.etc
Address: 188.132.250.197

On the web browser of my pc, when i typed http://ns1.forum.etc i'm getting
an Apache test page of the Bind9 Server and it' ok.

But, if i type http://www.forum.etc it can't connect to the ip address
which i've added in zone records of Bind9 Server.

If you need anything more, please let me know.

Thanks.
___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users


Re: [Pdns-users] Power Dns Server As A Domain Name Registry(Parent Name Server)

2013-07-23 Thread Michael Loftis
You're making several mistakes in setting up your delegation.  First
you've included an SOA in your PowerDNS records.  Start Of Authority
is exactly that.  The etc zone needs to have only NS records and (if
necessary) A glue records inside of the delegating server. The PDNS
server is being given a record that indicates *IT* has authority for
the forum.etc zone.  Secondly you delegate to ns1.forum.etc but
forum.etc has ns1. as it's listed delegate, which would be a
zone/record that would not exist.  Either add glue, or change that to
correctly read ns1 or ns1.forum.etc. (note the trailing dot, VERY
important)  The PDNS server may also need an SOA for etc as well as
depending on the resolver/resolver lib being used you might even need
to have delegation in your PDNS for . (the root).





On Tue, Jul 23, 2013 at 5:19 PM, Önem Özgülgen onemozgul...@gmail.com wrote:
 Hello,

 Ip Address Of PowerDNS Server with MySQL Backend(Both Authoritative and
 Recursive) :

 188.132.241.151

 Ip Address Of Bind9 Server:

 188.132.250.197

 Here's the MySQL dump of domains table;

 mysql select * from domains;
 ++--++++-+-+
 | id | name | master | last_check | type   | notified_serial | account |
 ++--++++-+-+
 |  5 | etc  | yes|  1 | master |   1 | vixen   |
 ++--++++-+-+
 1 row in set (0.00 sec)


 Here's the MySQL dump of records table;

 mysql select * from records;
 ++---+---+--+-+--+--+-+
 | id | domain_id | name  | type | content | ttl  | prio |
 change_date |
 ++---+---+--+-+--+--+-+
 | 41 | 5 | forum.etc | NS   | ns1.forum.etc   |1 |1 |
 1 |
 | 43 | 5 | ns1.forum.etc | A| 188.132.250.197 |1 |1 |
 1 |
 | 39 | 5 | forum.etc | SOA  | 45325325325 |1 |1 |
 1 |
 ++---+---+--+-+--+--+-+
 3 rows in set (0.00 sec)


 Here's the records file input for the master zone of forum.etc created in
 Bind9 Server;

 $ttl 38400
 forum.etc.INSOAns1. info.forum.etc. (
 1374623190
 10800
 3600
 604800
 38400 )
 forum.etc.INNSns1.
 ns1 IN  A   188.132.250.197
 www IN  A   94.101.88.30


 After i've replaced my pc's dns server ip to PowerDns Server, here's the
 nslookup dump for both forum.etc and ns1.forum.etc;

 C:\Users\vixennslookup forum.etc
 Server:static-151-241-132-188.sadecehosting.net
 Address: 188.132.241.151

 Name: forum.etc

 C:\Users\vixennslookup ns1.forum.etc
 Server: static-151-241-132-188.sadecehosting.net
 Address: 188.132.241.151

 Name: ns1.forum.etc
 Address: 188.132.250.197

 On the web browser of my pc, when i typed http://ns1.forum.etc i'm getting
 an Apache test page of the Bind9 Server and it' ok.

 But, if i type http://www.forum.etc it can't connect to the ip address which
 i've added in zone records of Bind9 Server.

 If you need anything more, please let me know.

 Thanks.






 ___
 Pdns-users mailing list
 Pdns-users@mailman.powerdns.com
 http://mailman.powerdns.com/mailman/listinfo/pdns-users




-- 

Genius might be described as a supreme capacity for getting its possessors
into trouble of all kinds.
-- Samuel Butler

___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users


Re: [Pdns-users] Power Dns Server As A Domain Name Registry(Parent Name Server)

2013-07-18 Thread Peter van Dijk
Hello,

On Jul 12, 2013, at 12:58 , Önem Özgülgen wrote:

 Creating a child name server on Power DNS like ICANN accredited domain name 
 registrars offer to the customers who use this name server on different 
 server.
 
 So, Power DNS won't give detailed managed DNS functionality, it'll just store 
 the domain name data and name server record, so control of it will be done by 
 other DNS server.(And later, it'll be able to change this name server record 
 again with MySQL query.)
 
 I created the domain name entry in domains table and put the zone records on 
 records table as SOA and name server definition pointing to other server but 
 it's not working what i wish.
 
 Let's say the tld is etc;
 
 etc IN NS ns1.etc
 ns1.etc IN A 1.1.1.1
 
 And, i setup a master zone in 1.1.1.1 ip based server and fill the other 
 records there.
 
 I'm not sure if i could tell my issue clearly, but i wish someone understood 
 me. 


Your only description of the problem is it's not working what i wish. Can you 
please show us what's not working? dig output would be a good start.

Also, when providing output and other data, please do not hide any details - I 
doubt 1.1.1.1 is the IP you are really using.

Kind regards,
-- 
Peter van Dijk
Netherlabs Computer Consulting BV - http://www.netherlabs.nl/


___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users


[Pdns-users] Power Dns Server As A Domain Name Registry(Parent Name Server)

2013-07-12 Thread Önem Özgülgen
Hello,

I'm studying on a start-up project about creating an alternative root
server for alternative tlds.

I installed Power DNS with MySQL backend and it's working without a problem.

What do i want to do is;

Creating a child name server on Power DNS like ICANN accredited domain name
registrars offer to the customers who use this name server on different
server.

So, Power DNS won't give detailed managed DNS functionality, it'll just
store the domain name data and name server record, so control of it will be
done by other DNS server.(And later, it'll be able to change this name
server record again with MySQL query.)

I created the domain name entry in domains table and put the zone records
on records table as SOA and name server definition pointing to other server
but it's not working what i wish.

Let's say the tld is etc;

etc IN NS ns1.etc
ns1.etc IN A 1.1.1.1

And, i setup a master zone in 1.1.1.1 ip based server and fill the other
records there.

I'm not sure if i could tell my issue clearly, but i wish someone
understood me.

Thanks.
Good works.
___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users