syse.no #220

Open
opened 2025-11-20 04:21:40 -05:00 by saavagebueno · 0 comments
Owner

Originally created by @tobiaspedersen on GitHub (Oct 8, 2022).

Originally assigned to: @qdm12 on GitHub.

Please add Syse provider.

They have the following shell script available to update dns records if that helps

#!/bin/bash

ZONE=example.com
HOST=host.example.com
KEY="<secret>"
IP=$(wget -q https://api.ipify.org/ -O -)
CACHE=/var/tmp/setip.cache
SERVER=ns.syse.no

touch $CACHE

if [ "$IP" != "$(cat $CACHE)" ] ; then
	printf "server $SERVER\nzone $ZONE\nupdate delete $HOST A\nupdate add $HOST 60 A $IP\nsend\nquit" | nsupdate -y $ZONE:$KEY && echo -n $IP > $CACHE
fi
Originally created by @tobiaspedersen on GitHub (Oct 8, 2022). Originally assigned to: @qdm12 on GitHub. Please add [Syse](https://www.syse.no) provider. They have the following shell script available to update dns records if that helps ``` #!/bin/bash ZONE=example.com HOST=host.example.com KEY="<secret>" IP=$(wget -q https://api.ipify.org/ -O -) CACHE=/var/tmp/setip.cache SERVER=ns.syse.no touch $CACHE if [ "$IP" != "$(cat $CACHE)" ] ; then printf "server $SERVER\nzone $ZONE\nupdate delete $HOST A\nupdate add $HOST 60 A $IP\nsend\nquit" | nsupdate -y $ZONE:$KEY && echo -n $IP > $CACHE fi ```
saavagebueno added the Category: New provider 🆕 label 2025-11-20 04:21:40 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ddns-updater#220