ddns/README.md

40 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2023-03-08 10:28:09 +01:00
# DDNS
_DDNS_ is a dynamic DNS helper for Digital Ocean users to utilize their DO account as a Dynamic DNS resolver.
## Installation
2023-04-16 18:34:20 +02:00
Download the latest relase from https://gitlab.pm/rune/ddns/releases. Unzip and move to a folder in you path (ease of use). You can also rename the file ```ddns.py``` to just ```ddns``` and make the file executable with ```chmod +x ddns```. To install required python modules run ```pip3 install -r requirements.txt```
2023-03-08 10:28:09 +01:00
## Usage
2023-03-08 10:29:26 +01:00
For instructions run
2023-03-08 10:42:18 +01:00
2023-03-08 10:29:26 +01:00
```bash
2023-03-08 10:28:09 +01:00
ddns -h
```
The program is best suited to be executed with e.g cron or any other system that can run at intervals. To run the app every 6 hours with cron add the following line to your crontab
```bash
0 */6 * * * /usr/local/bin/ddns
```
## Contributing
Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.
2023-03-09 11:50:34 +01:00
## Support
2023-04-16 18:45:19 +02:00
If you found a bug or you have suggestion for new features create an issue.
2023-03-09 11:50:34 +01:00
## Future development
- [ ] IPv6 support
- [ ] Add and delete non existing (new) domains to DO account
2023-03-08 10:28:09 +01:00
## License
2023-03-08 10:45:38 +01:00
[<img src="https://www.gnu.org/graphics/gplv3-with-text-136x68.png">](https://www.gnu.org/licenses/gpl-3.0.en.html)