• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved ipv6 stops working after 10-15min

KNARZ

New Pleskian
I want to fine tune some server and from my observation I run in a ipv6 Problem.
If reboot the server everything works fine as it should but after 10-15min ipv6 stops working.

I'm not sure if it has to do with the hosting/server, configuration or the webserver (apache, nginx) at all but why does it work in the beginning and than stops?


I tried to rebuild the config and restartet nginx and apache but nothing changed.

I'm testing this with http://ipv6-test.com/validate.php
Results:
s11.jpg


s22.jpg
 
Last edited:
Have you tried to find something useful in logs? Any results of troubleshooting?
 
Yeah I'm pretty basic - there are so many logs, that I don't know which one I should look into.
 
thanks for the info. I found some things in syslog but so fare nothing related (in this 15min timeframe) but I fixed some other minor issues.
I contacted the hoster. They said I should try it within recovery console and than check if ipv6 is working.
 
I guessed it's about psa-firewall rules. But now after a while (like 30min) all ping request timed out. - I will investigate further. - Nothing in particular in the syslog
 
Last edited:
Okay.
So there were two things.

1) Testing with ping was blocked by PSA-Firewall
2) Testing with the Test-Website failed because of DHCP v4 auto config after 30 minutes.

/etc/network/interfaces looks like:
Code:
# The primary network interface
auto eth0
iface eth0 inet dhcp

post-up while ip -6 addr show tentative | grep . > /dev/null ; do sleep 1 ; done

iface eth0 inet6 static
       address X
       netmask Y
       gateway Z

post-up while ip -6 addr show tentative | grep . > /dev/null ; do sleep 1 ; done

After exactly 30min IPv6 will fail. That is caused by not configured:
Code:
net.ipv6.conf.eth0.accept_ra=0

So I placed a /etc/sysctl.d/ipv6.conf
with the above line of code and restarted.
Now IPv6 works fine.

Sources that helped me by this issue:
https://www.gibts-doch-garnicht.de/ipv6-bei-manitu-und-netcup/
https://debianforum.de/forum/viewtopic.php?f=30&t=155189
 
Thank you KNARZ, this worked for me as well using a CentOS 7 LXC container for plesk. Much appreciated, hopefully others will find this.
 
Back
Top