https://github.com/visualsource/dns_updater
A simple google dynamic domain updater
https://github.com/visualsource/dns_updater
Last synced: 2 months ago
JSON representation
A simple google dynamic domain updater
- Host: GitHub
- URL: https://github.com/visualsource/dns_updater
- Owner: VisualSource
- License: mit
- Created: 2021-08-04T20:33:47.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-15T20:45:19.000Z (over 2 years ago)
- Last Synced: 2023-03-03T21:27:52.213Z (over 2 years ago)
- Language: Rust
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Google Dyanmic DNS Updater
A simple updater for updating DNS records from a list with the current networks external IP address.
## API Reference
#### config.json
The main config file for setting options that the updater will use when running.
If the file does not exits it will be created.```json
{
"domains": [
{
"usr": "USERNAME",
"psd": "PASSWORLD",
"domain": "www.example.com"
}
],
"debug": false,
}
```| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| `domains` | `Array` | **Required**. The list of domains that are to be updated |
| `debug` | `boolean` | **Required**. Debugging output |
| `debug_ip`| `string` | When debug is true, this is the address used rather then using the networks external address |#### dns_errored.json
A list of domains that have received error responses. excluding error response 911.
This is done so that the risk of getting your client blocked by google is avoided.
To reenable a given domain simpley remove the domain name from the array.```json
["www.example.com"]
```| Parameter | Type | Description |
| :-------- | :------- | :-------------------------------- |
| `Array` | `Array` | **Required**. Id of item to fetch |