https://github.com/coord-e/r53ddns
command-line utility to update A record in Route53 with current global IP address
https://github.com/coord-e/r53ddns
ddns ddns-updater route53
Last synced: about 2 months ago
JSON representation
command-line utility to update A record in Route53 with current global IP address
- Host: GitHub
- URL: https://github.com/coord-e/r53ddns
- Owner: coord-e
- License: apache-2.0
- Created: 2020-03-12T12:34:10.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2020-03-12T15:46:22.000Z (over 5 years ago)
- Last Synced: 2025-02-06T18:55:34.070Z (8 months ago)
- Topics: ddns, ddns-updater, route53
- Language: Rust
- Homepage:
- Size: 33.2 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# r53ddns
[](https://github.com/coord-e/r53ddns/actions?workflow=Test+and+Lint)
[](https://github.com/coord-e/r53ddns/actions?workflow=Release)
[](https://crates.io/crates/r53ddns)
[](https://crates.io/crates/r53ddns)
[](https://hub.docker.com/r/coorde/r53ddns)
[](https://hub.docker.com/r/coorde/r53ddns)`r53ddns` is a simple command-line utility to update `A` record in Route53 with current global IP address.
## Installation
Download the latest compiled binary from links below and put it in your executable path.
Platform|Download
--------|--------
Linux 64-bit|[r53ddns-x86_64-unknown-linux-musl](https://github.com/coord-e/r53ddns/releases/latest/download/r53ddns-x86_64-unknown-linux-musl)
macOS 64-bit|[r53ddns-x86_64-apple-darwin](https://github.com/coord-e/r53ddns/releases/latest/download/r53ddns-x86_64-apple-darwin)
Windows 64-bit|[r53ddns-x86_64-pc-windows-msvc.exe](https://github.com/coord-e/r53ddns/releases/latest/download/r53ddns-x86_64-pc-windows-msvc.exe)### with Cargo
```shell
$ cargo install r53ddns
```### with Docker
```shell
$ alias r53ddns="docker run coorde/r53ddns"
```## Example configuration
`r53ddns` works very well even in non-user environments. The following is an example systemd.service(5) file to execute `r53ddns`.
```
[Unit]
Description=Update DDNS
# OnFailure=notify-failure@%n.service[Service]
Type=Simple
ExecStart=/path/to/r53ddns -l Info -k -s -z -n[Install]
WantedBy=multi-user.target
```You can run this service daily using systemd.timer(5) to be up-to-date.
## License
Licensed under either of
* Apache License, Version 2.0
([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license
([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)at your option.
## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.