Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uriegel/dyn-dns-update
DynDns client based on .NET Core for Linux and Windows
https://github.com/uriegel/dyn-dns-update
Last synced: 8 days ago
JSON representation
DynDns client based on .NET Core for Linux and Windows
- Host: GitHub
- URL: https://github.com/uriegel/dyn-dns-update
- Owner: uriegel
- License: mit
- Created: 2020-03-15T16:51:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-25T20:37:39.000Z (8 months ago)
- Last Synced: 2024-04-25T23:20:18.374Z (7 months ago)
- Language: C#
- Size: 1.36 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dyn-dns-update
DynDns client based on .NET Core for Linux and Windows
Similar to ddclient## Installation
```
dotnet tool install DynDnsUpdater --global
```## Executing the tool
```
DynDnsUpdater
```follow Instructions for giving necessary parameters
Settings are saved in ```~/.config/dyndns-updater.conf``` (Linux)
## Executing tool every day (Linux)
```
crontab -e
```Append
```
PATH=$PATH:/home/pi/.dotnet/tools
DOTNET_ROOT=/home/pi/.dotnet
0 3 * * * DynDnsUpdater > /home/pi/logs/dyndns.log 2>&1
```This executes dns update every day at 3 AM (universal time). Last log is saved in ```/home/pi/logs/dyndns.log```