24 lines
725 B
TOML
24 lines
725 B
TOML
# he-dydns configuration
|
|
# Copy to $HOME/.config/he-dydns/config.toml
|
|
|
|
# Optional: watch this network interface for its IPv4/IPv6 addresses instead
|
|
# of guessing the public IP via an external service.
|
|
# interface = "eth0"
|
|
|
|
# Optional: how often to update in daemon mode, in minutes. Default: 5.
|
|
# interval_minutes = 5
|
|
|
|
# record_type selects which DNS record this entry updates: "A" (IPv4) or
|
|
# "AAAA" (IPv6). HE's dynamic DNS API cannot infer this from the address
|
|
# submitted, so it must be set explicitly. Defaults to "A" when omitted.
|
|
|
|
[[entries]]
|
|
hostname = "home.example.com"
|
|
token = "your-he-dyndns-token"
|
|
record_type = "A"
|
|
|
|
[[entries]]
|
|
hostname = "home.example.com"
|
|
token = "your-he-dyndns-token"
|
|
record_type = "AAAA"
|