readme
This commit is contained in:
parent
574dce2794
commit
2283912657
1 changed files with 33 additions and 0 deletions
33
readme.md
Normal file
33
readme.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# ddnser
|
||||
|
||||
Refreshes domain records periodically or when interfaces change IP addresses.
|
||||
|
||||
## Usage
|
||||
|
||||
Create a config file:
|
||||
|
||||
```json
|
||||
{
|
||||
// "ip": "hardcoded IP address, if set it is used instead of detected address",
|
||||
// how often to poll unconditionally
|
||||
"every": 60,
|
||||
"domains": [
|
||||
{
|
||||
"type": "njalla ddns",
|
||||
"name": "estoesprueba.nulo.in",
|
||||
"key": "INSERT_KEY"
|
||||
},
|
||||
{
|
||||
"type": "he.net ddns",
|
||||
"name": "pruebas.bat.ar",
|
||||
"key": "INSERT_KEY"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
Run:
|
||||
|
||||
```sh
|
||||
ddnser ./path/to/config.json
|
||||
```
|
Reference in a new issue