What's new

Inadyn with dedyn/desec

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Wanabo

Occasional Visitor
I'm trying to setup a dyn dns service called deSEC. I have a dyn subdomain sub.dedyn.io.
In the newest version of inadyn, deSEC will be supported, but there is an older version in Merlin's firmware. So I need to make a custom config.

In /jffs/configs/inadyn.conf.add I have a couple of extra dyndns services configured which are working well.

I found this thread: Go to post #3, which was my starting point and checked the doc's at deSEC and Github.

I tried different configs and fiddled with the code, but no success.
Any one has this working or can offer a hint?

Code:
provider desec {
    hostname = sub.dedyn.io
    password = "somekey"
    ddns-path = /?myipv4=/usr/sbin/nvram get wan0_ipaddr
    ddns-server = "update.dedyn.io"
    username = "sub.dedyn.io"
#    checkip-command = "/usr/sbin/nvram get wan0_ipaddr"
}
 
Last edited:
Got it working! 😊

Code:
custom selfhost {
    ddns-server = update.dedyn.io
    ddns-path = "/?myipv4=%%i"
    hostname = "sub.dedyn.io"
    username = "sub.dedyn.io"
    password = "yourkey"
}
 
Last edited:

Similar threads

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top