mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-12 10:27:57 +08:00
20dad35167
* Replace Jekyll highlight tags with fenced code blocks Replace Jekyll highlight tags with fenced code blocks. Canonicalize javascript to js. Correct highlighting languages. Add highlighting to code blocks. Remove leading $ from bash blocks. Remove empty lines at start and end of code blocks. Stripped trailing whitespace. * Fix language of code highlighting
38 lines
779 B
Markdown
38 lines
779 B
Markdown
---
|
|
name: Netcup
|
|
title: Netcup Provider
|
|
layout: default
|
|
jsId: NETCUP
|
|
---
|
|
# Netcup Provider
|
|
|
|
## Configuration
|
|
In your credentials file, you must provide your [api key, password and your customer number](https://www.netcup-wiki.de/wiki/CCP_API#Authentifizierung).
|
|
|
|
```json
|
|
{
|
|
"netcup": {
|
|
"api-key": "abc12345",
|
|
"api-password": "abc12345",
|
|
"customer-number": "123456"
|
|
}
|
|
}
|
|
```
|
|
|
|
## Usage
|
|
Example Javascript:
|
|
|
|
```js
|
|
var REG_NONE = NewRegistrar('none', 'NONE')
|
|
var NETCUP = NewDnsProvider('netcup' 'NETCUP');
|
|
|
|
D('example.tld', REG_NONE, DnsProvider(NETCUP),
|
|
A('test','1.2.3.4')
|
|
);
|
|
```
|
|
|
|
|
|
## Caveats
|
|
Netcup does not allow any TTLs to be set for individual records. Thus in
|
|
the diff/preview it will always show a TTL of 0. `NS` records are also
|
|
not currently supported.
|