• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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