ddns-updater
ddns-updater copied to clipboard
`namesilo.com`
Can you add namesilo ddns updater?
Any chance this might get done in the near future?
I'd really rather use this updater than some of the others out there, due to it's robustness and popularity.
Thanks in advance, and if asking violated some rule that I missed, my apologies!
I started on this, but I've decided to move to my management of DNS for my domains to Cloudflare, so I've lost motivation to continue working on it. I didn't make it far - just primarily research the api, make the start of a readme, and take a screenshot of where to click to manage DNS. Instead of doing a full PR I'll just include the little bit of work here:
README
Namesilo
Configuration
Example
{
"settings": [
{
"provider": "namesilo",
"domain": "domain.com",
"host": "home",
"key": "71dZaE8c2Aa926Ca2E8c1",
"ip_version": "ipv4"
}
]
}
Compulsory parameters
-
"domain"
your domain. Example:domain.com
. -
"host"
your host. Can be a subdomain or"@"
or"*"
. Example:home
to update the record forhome.domain.com
. -
"key"
the api key obtained using domain setup instructoins below. Example:71dZaE8c2Aa926Ca2E8c1
.
Optional parameters
-
"ip_version"
can beipv4
(A records), oripv6
(AAAA records) oripv4 or ipv6
(update one of the two, depending on the public ip found). It defaults toipv4 or ipv6
.
Domain setup
-
Login to Namesilo API Manager with your account credentials.
-
Generate an API key. The generated API key will look similar to
71dZaE8c2Aa926Ca2E8c1
.- (do not check the "Generate key for read-only access" box)
Testing
- Go to domain manager.
- Choose "Manage DNS for this domain" (the globe icon) for the domain you wish to test.
- Change the IP address of the host to
127.0.0.1
. - Run the ddns-updater.
- Refresh the Namesilo webpage to check the update occurred.
Other references
And here are a few implementations from around the internet of other doing it, though none of them written in go:
- https://github.com/joshp23/ns_ddns/blob/master/ns_ddns.sh
- https://github.com/vic1707/Namesilo-DDNS-updater/blob/main/Namesilo-DDNS-updater.bash
- https://github.com/lin010151/ddns-scripts_namesilo/blob/master/update_namesilo.sh
- https://github.com/Mr-Jos/namesilo_ddns_cli/blob/master/namesilo_ddns.sh
- https://github.com/Charles94jp/NameSilo-DDNS/blob/python/lib/namesilo_client.py
- https://github.com/Charles94jp/NameSilo-DDNS/blob/python/readme.en-us.md
- https://github.com/CloudNClock/Namesilo-DDNS-Update/blob/master/namesilo_DDNS_Update.py