ddns-updater icon indicating copy to clipboard operation
ddns-updater copied to clipboard

`namesilo.com`

Open seaneoz opened this issue 2 years ago • 3 comments

Can you add namesilo ddns updater?

seaneoz avatar Mar 03 '22 01:03 seaneoz

I second this request.

NameSilo add DNS record

NameSilo update DNS record

calonmerc avatar Jun 09 '22 18:06 calonmerc

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!

kssxs avatar Aug 24 '23 20:08 kssxs

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

Namesilo Logo

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 for home.domain.com.
  • "key" the api key obtained using domain setup instructoins below. Example: 71dZaE8c2Aa926Ca2E8c1.

Optional parameters

  • "ip_version" can be ipv4 (A records), or ipv6 (AAAA records) or ipv4 or ipv6 (update one of the two, depending on the public ip found). It defaults to ipv4 or ipv6.

Domain setup

  1. Login to Namesilo API Manager with your account credentials.

  2. 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

  1. Go to domain manager.
  2. Choose "Manage DNS for this domain" (the globe icon) for the domain you wish to test. manage domain namesilo_domain_dns_manage
  3. Change the IP address of the host to 127.0.0.1.
  4. Run the ddns-updater.
  5. 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

Zeustopher avatar Jan 29 '24 20:01 Zeustopher