Skip to content

freifunk-luebeck/ffdyndns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FFdynDNS

pipeline status

Current debian package ffdyndns.deb

Freifunk dynamic DNS Service

Nginx config

Webserver must set X-Forwarded-For header. Otherwise ffdyndns cannont know the ip address of the client.

DNS config

An example bind config:

zone "example.com" {
        type master;
        file "example.com";
        allow-update {
             127.0.0.1 ;
        };
};

And a zonefile for that zone:

$ORIGIN .
$TTL 30 ; 30 seconds
example.com         IN SOA  ns.example.com. hostmaster.example.com. (
                                2016062805 ; serial
                                3600       ; refresh (1 hour)
                                600        ; retry (10 minutes)
                                2600       ; expire (43 minutes 20 seconds)
                                30         ; minimum (30 seconds)
                                )
                        NS      ns.example.com.
                        NS      ns2.example.com.

Releases

No releases published

Packages

No packages published

Languages