{% extends 'base.html' %} {% block title %}DynDNS @ SFeri{% endblock %} {% block head_extensions %} {% endblock %} {% block content %}

Dynamic DNS

What is DynDNS? Unless you are at Schönherz, your IP address probably updates from time to time. With dynamic DNS, you can always point your-domain.dyndns.sfsrv.hu to your device.

How to use? Register a new domain here and you will get a unique token. To update your IP address on the DNS server, just visit https://sferi.hu/dyndns-update?token=[your token] manually or via a script: curl -4 'https://sferi.hu/dyndns-update?token=[your token]'.

Currently, only IPv4 is supported.

Warning: You should keep your token a secret.

{% if recordsCount > 0 %}

Your DynDNS domains

{% for r in records %} {% endfor %}
Domain Token Update link Current IP
{{ r['domain'] }} {{ r['token'] }} link {{ r['ip'] }}
{% endif %}

Register a new domain

{% if otherRecords != None %}

Other records

{% for r in otherRecords %} {% endfor %}
User Domain Current IP Last update
{{ r['username'] }} {{ r['domain'] }} {{ r['ip'] }} {{ r['lastupdate'] }}
{% endif %}
{% endblock %}