With this script you can create master DNS zones at ClouDNS system and automatically import the DNS records into the created DNS zones from an external DNS server. You can download it from here.
1. AUTH_ID should be your API user ID.
Example:
define("AUTH_ID", 0);
AUTH_PASS should be the password of your API user
Example:
define("AUTH_PASS", "xxxxx");
$list is the list with the DNS zones, one per row in format "domain.com,IP"
Example:
$list = "domain1.com,127.0.0.1
domain2.com,127.0.0.2";
When you are ready with your configuration, you can run the script with the following command:
php zones-import-via-transfer.php
The script will output a detailed information for the executed commands, such as whether or not the import was successful.