Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 735 Bytes

File metadata and controls

34 lines (27 loc) · 735 Bytes

Configuration

To use this provider, add an entry to creds.json with TYPE set to PACKETFRAME along with your Packetframe Token which can be extracted from the token cookie on packetframe.com

Example:

{% code title="creds.json" %}

{
  "packetframe": {
    "TYPE": "PACKETFRAME",
    "token": "your-packetframe-token"
  }
}

{% endcode %}

Metadata

This provider does not recognize any special metadata fields unique to Packetframe.

Usage

An example configuration:

{% code title="dnsconfig.js" %}

var REG_NONE = NewRegistrar("none");
var DSP_PACKETFRAME = NewDnsProvider("packetframe");

D("example.com", REG_NONE, DnsProvider(DSP_PACKETFRAME),
    A("test", "1.2.3.4")
);

{% endcode %}