0.0.3 • Published 5 years ago

hoverdns v0.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Hover.com DNS API Library and Command Line Tool

This package provides a module for integrating the Hover.com unofficial API, as well as a command line tool.

Usage (command line tool)

hoverdns -u <USERNAME> -p <PASSWORD> -c <PATH TO CONFIG FILE>

Config File Example

---
- domain: example.com
  records:
  - type: a
    name: "*"
    content: 123.123.123.123
    ttl: 900
  - type: a
    name: "@"
    content: 123.123.123.123
  - type: mx
    name: "@"
    content: 10 mx.hover.com.cust.hostedemail.com
    ttl: 900
  - type: cname
    name: mail
    content: mail.hover.com.cust.hostedemail.com
    ttl: 900

- domain: example2.com
  records:
  - type: a
    name: "*"
    content: 111.111.111.111
    ttl: 900