mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-17 04:51:11 +08:00
34 lines
735 B
Markdown
34 lines
735 B
Markdown
## 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" %}
|
|
```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" %}
|
|
```javascript
|
|
var REG_NONE = NewRegistrar("none");
|
|
var DSP_PACKETFRAME = NewDnsProvider("packetframe");
|
|
|
|
D("example.tld", REG_NONE, DnsProvider(DSP_PACKETFRAME),
|
|
A("test", "1.2.3.4")
|
|
);
|
|
```
|
|
{% endcode %}
|