https://github.com/boredsquirrel/dyndns
dynamic DNS on Linux with systemd
https://github.com/boredsquirrel/dyndns
Last synced: about 1 year ago
JSON representation
dynamic DNS on Linux with systemd
- Host: GitHub
- URL: https://github.com/boredsquirrel/dyndns
- Owner: boredsquirrel
- License: mit
- Created: 2024-11-26T14:13:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-27T00:48:25.000Z (over 1 year ago)
- Last Synced: 2025-01-26T20:14:44.253Z (over 1 year ago)
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dyndns
dynamic DNS on Linux with systemd
Register at a dynDNS provider, you can find them easily online. They mostly use a trick that your server is a client, downloads a file from them, which tells them your IP. They then update that IP.
```
curl -3sSL -o dyndns.service https://github.com/boredsquirrel/dyndns/raw/refs/heads/main/dyndns.service && sudo mv dyndns.service /etc/systemd/system/
curl -3sSL -o dyndns.timer https://github.com/boredsquirrel/dyndns/raw/refs/heads/main/dyndns.timer && sudo mv dyndns.timer /etc/systemd/system/
```
Make sure to change the service file to use your correct URL, then activate:
```
systemctl enable --now dyndns
```