Sponsor:

Server and Web Integrator
Link:
Kloxo-MR logo
6.5.0 or 7.0.0
Click for "How to install"
Donation/Sponsorship:
Kloxo-MR is open-source.
Donate and or Sponsorship always welcome.
Click to:
Click Here
Please login or register. 2024-05-21, 00:37:52

Author Topic: PowerDNS config needs a fix for IPv6  (Read 4223 times)

0 Members and 1 Guest are viewing this topic.

Offline Spacedust

  • Super Grand Master
  • ****
  • Posts: 4,050
  • Karma: +1/-0
    • View Profile
PowerDNS config needs a fix for IPv6
« on: 2015-05-09, 20:11:16 »
It should be like this:

Quote
  local-address=0.0.0.0
  local-ipv6=0:0:0:0:0:0:0:0
  local-port=53

Or IPv6 will not respond properly. I did that on both of my servers and it works perfectly :)

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: PowerDNS config needs a fix for IPv6
« Reply #1 on: 2015-05-09, 20:18:08 »
Your IPv6 running well?.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline Spacedust

  • Super Grand Master
  • ****
  • Posts: 4,050
  • Karma: +1/-0
    • View Profile
Re: PowerDNS config needs a fix for IPv6
« Reply #2 on: 2015-05-09, 21:24:57 »
Your IPv6 running well?.

Yes for DNS and mail (my old Outlook 2003 does not support IPv6).

FTP is still on IPv4, web server is not responding.

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: PowerDNS config needs a fix for IPv6
« Reply #3 on: 2015-05-09, 21:45:34 »
Web need add listen for IPv6 too.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: PowerDNS config needs a fix for IPv6
« Reply #4 on: 2015-05-09, 21:49:19 »
Please test with remove all 'A record' (need Kloxo-MR 7.0 to latest upload).
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: PowerDNS config needs a fix for IPv6
« Reply #5 on: 2015-05-09, 22:01:49 »
Please test IPv6 for hiawatha and hiawatha-proxy. Look like hiawatha doesn't need code change for accept IPv6.

Look like Apache doesn't need code change too.
« Last Edit: 2015-05-09, 22:08:41 by MRatWork »
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline Spacedust

  • Super Grand Master
  • ****
  • Posts: 4,050
  • Karma: +1/-0
    • View Profile
Re: PowerDNS config needs a fix for IPv6
« Reply #6 on: 2015-05-09, 22:19:38 »
Can't change this on production server. I need to stick with nginxproxy ;)

If you want IPv6 on your home connection just use this site https://tunnelbroker.net/, setup the closest tunnel to your home, and then setup your router and it will work perfectly.

Offline Spacedust

  • Super Grand Master
  • ****
  • Posts: 4,050
  • Karma: +1/-0
    • View Profile
Re: PowerDNS config needs a fix for IPv6
« Reply #7 on: 2015-05-10, 15:58:23 »
Yes ! Just add something like this to nginx:

All my pages are not visible even if I completely disable IPv4.

Next step is to add GLUE for IPv6. If I try to ping my domain via IPv6 it doesn't work. It resolves the name via IPv4 then responds via IPv6.

Quote
-rw-r--r-- 1 root root 31 May 10 15:50 listen_nonssl_back.conf
-rw-r--r-- 1 root root 47 May 10 15:51 listen_nonssl_back_default.conf
-rw-r--r-- 1 root root 27 May 10 15:47 listen_nonssl.conf
-rw-r--r-- 1 root root 44 May 10 15:47 listen_nonssl_default.conf
-rw-r--r-- 1 root root 27 May 10 15:47 listen_nonssl_front.conf
-rw-r--r-- 1 root root 44 May 10 15:49 listen_nonssl_front_default.conf
-rw-r--r-- 1 root root 31 May 10 15:51 listen_ssl_back.conf
-rw-r--r-- 1 root root 47 May 10 15:52 listen_ssl_back_default.conf
-rw-r--r-- 1 root root 29 May 10 15:51 listen_ssl.conf
-rw-r--r-- 1 root root 45 May 10 15:54 listen_ssl_default.conf
-rw-r--r-- 1 root root 29 May 10 15:55 listen_ssl_front.conf
-rw-r--r-- 1 root root 45 May 10 15:55 listen_ssl_front_default.conf

Files are like this:

Quote
listen 8080;
listen [::]:8080;
listen 8080 default;
listen [::]:8080 default;
listen 80;
listen [::]:80;
listen 80 default;
listen [::]:80 default;
listen 80;
listen [::]:80;
listen 80 default;
listen [::]:80 default;
listen 8433;
listen [::]:8433;
listen 8433 default;
listen [::]:8433 default;
listen 443;
listen [::]:443;
listen 443 default;
listen [::]:443 default;
listen 443;
listen [::]:443;
listen 443 default;
listen [::]:443 default;

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: PowerDNS config needs a fix for IPv6
« Reply #8 on: 2015-05-10, 17:35:53 »
Yes, need add 'listen [::]'.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline Spacedust

  • Super Grand Master
  • ****
  • Posts: 4,050
  • Karma: +1/-0
    • View Profile
Re: PowerDNS config needs a fix for IPv6
« Reply #9 on: 2015-05-10, 18:35:07 »
Yes, need add 'listen [::]'.

GLUE added and working.

FTP and MAIL not responding.

Mail server IPv6 connectivity
Connecting to mail.xxx.pl [2a01:4f8:120:134d:0:0:0:2]...
  Failed to connect

 


Top 10 Social Networking:    Facebook    Twitter    LinkedIn    Pinterest    Google Plus    Tumblr    Instagram    VK    Flickr    Vine
Click Here

Page created in 0.066 seconds with 22 queries.

web stats analysis