• 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.

How soon will changes for nameservers take affect?

R

Roger Nordseth

Guest
I discovered that my domains as i own was on internal IP so a ping on my namesevers came up with internal ip.
The domains i host is on external IP .

I have set SOA to update sooner then hours but no change yet
 
I had this issue and i had to use a sql query to change all the soa records, then a shell script to rebuild named , and then restart.

This will change the ttl to 5 minutes(300 seconds)

mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa

> UPDATE `dns_zone` SET `ttl` = '300', `ttl_unit` = '60' WHERE `id` >1;quit;

With this script you rebuild the bind config files: mysql -Ns -uadmin -p`cat /etc/psa/.psa.shadow` -D psa -e 'select name from dns_zone' | awk '{print "/usr/local/psa/admin/sbin/dnsmng update " $1 }' | sh

http://www.linuxweblog.com/blogs/sandip/20091114/bulk-update-dns-ttl-all-plesk-domains
 
Back
Top