savvii/openprovider-zone-export

Convert OpenProvider DNS records to Zone files

1.0.2 2023-02-02 19:50 UTC

This package is auto-updated.

Last update: 2024-04-18 12:19:41 UTC


README

The script get_zones.php calls the OpenProvider API to receive a list of all domains and their DNS records. These are written to output/zones as Bind zone files.

Requirements

  • An OpenProvider account with domains and DNS records in it.
  • MacOS, FreeBSD or Linux
  • Composer 2.x installed
  • Git
  • PHP 8.0 or greater with the GMP and DOM extension enabled. Can be installed on MacOS using HomeBrew

Install

Clone project & Composer Install

git clone git@github.com:Savvii/openprovider-zone-export.git
cd openprovider-zone-export
composer install
cp config.php.example config.php

Update Configuration

Edit config.php

  • Configure op_username with your OpenProvider username.
  • Configure op_password with your OpenProvider password.

Optional: Put a manual list of domains in input/domainlist.txt, each domain on a separate line.

Execute

Get zones from OpenProvider API

./get_zones.php

The zone files will be written to output/zones. Custom nameservers will be written to output/custom_nameservers.json

Change nameservers in zone files

./update_zones.php

Zone files in output/zones will be updated. Custom nameservers need to be specified in config.php.