Dominios, DNS, hosting y correo de un solo proveedor.
Empresa



This recipe refers to the existing regfish DynDNS product and not to the regfish DNS API. The service updates hostnames through regfish DynDNS endpoints, so you can use custom updaters, router integrations, or small homeserver scripts without direct DNS API access.
The core flow is always the same: you enable DynDNS for a domain in the Regfish domain management UI, receive a personal token, and then send updates through GET or POST requests to https://dyndns.regfish.de.
home.example.comLog in to the Regfish domain management UI, open the target domain, and enable Dynamic DNS in the nameserver settings. After that you receive your personal DynDNS token.
You can optionally enable email notifications for later DynDNS updates as well.
If you build your own updater or a small script, a minimal local configuration could look like this:
{
"token": "YOUR_DYNDNS_TOKEN",
"fqdn": "home.example.com",
"ttl": 300
}This is not a regfish API request. It is only one possible local configuration object from which your updater can derive the actual DynDNS URL parameters later.
The legacy service accepts a fixed set of parameters. The most important ones are:
token: your DynDNS token, requiredfqdn: the full hostname, requiredthisipv4=1: use the IPv4 address of the calling systemthisipv6=1: use the IPv6 address of the calling systemipv4: set an explicit IPv4 addressipv6: set an explicit IPv6 addressforcehost=1: allow creation of a new host entryttl: TTL in seconds, default 300If you are working with a generic DynDNS client or a script, the token is typically used like a username. You do not need a separate password for the plain URL call itself.
For many simple setups, a request to dyndns.regfish.de that uses the current IPv4 of the calling system is enough:
curl 'https://dyndns.regfish.de/?fqdn=home.example.com&token=YOUR_DYNDNS_TOKEN'You can also send the same update via POST if your client prefers that.
If your updater already knows the target address, you can send it explicitly. That is useful for custom scripts or special network setups.
{
"ipv4": "203.0.113.42",
"ipv6": "2001:db8::42"
}curl 'https://dyndns.regfish.de/?fqdn=home.example.com&ipv4=203.0.113.42&token=YOUR_DYNDNS_TOKEN'For IPv6 the flow is analogous. If the request itself should reliably run over IPv6, use https://dyndns6.regfish.de.
curl 'https://dyndns6.regfish.de/?fqdn=home.example.com&thisipv6=1&token=YOUR_DYNDNS_TOKEN'If the hostname does not exist yet, you can allow creation through forcehost=1:
curl 'https://dyndns.regfish.de/?fqdn=home.example.com&ipv4=203.0.113.42&forcehost=1&token=YOUR_DYNDNS_TOKEN'Use forcehost=1 deliberately and only where your updater is really meant to own that hostname.
The service works with simple status codes. The most relevant ones for operations are:
100: update successful101: no update required401 or 402: authentication failed408 or 409: invalid IP address412: invalid FQDN format414: unknown errorA robust DynDNS job treats 100 and 101 as successful outcomes and only alerts on real error codes.
dyndns6.regfish.de when your client is definitely running in an IPv6 contextforcehost=1 mainly for the initial bootstrap and not blindly on every requestThis flow uses the existing regfish DynDNS product exactly the way legacy DynDNS clients, script updaters, and simple device integrations expect: hostname, token, and target IP are updated directly through the regfish DynDNS endpoints.
La DNS API de Regfish es una gran solucion para desarrolladores que quieren automatizar dominios y zonas DNS. Sumate a la comunidad y aprovecha las ventajas de la automatizacion DNS. La DNS API esta disponible gratis para todos los clientes de Regfish.