Comment 3 for bug 1627270

Revision history for this message
Krzysztof Warunek (kwarunek) wrote :

I experience similar problem. Crash happens after some time ~20h.

My configs:

/etc/pdnsd.conf:
# -- begin pdnsd.conf --
global {
    perm_cache = 32768;
    cache_dir = "/var/cache/pdnsd";
    run_as = "pdnsd";
    server_ip = 127.0.0.1; // Use eth0 here if you want to allow other
                            // machines on your network to query pdnsd.
    status_ctl = on;
    paranoid = on;
    min_ttl = 0s; // We want to honour DNS TTL
    max_ttl = 1w; // One week.
    neg_ttl = 5s;
    timeout = 10; // Global timeout option (10 seconds).
}

server {
    label=OnetDNS;
    ip=10.10.44.11;
    ip=10.10.44.21;
    timeout=2;
    purge_cache=off;
    proxy_only=on;
    uptest=ping;
    ping_timeout=10;
    randomize_servers=on;
}

rr {
    name = localhost;
    reverse = on;
    a = 127.0.0.1;
    owner = localhost;
    soa = localhost,root.localhost,42,86400,900,86400,86400;
}

source {
    owner = localhost;
    file = "/etc/hosts";
    serve_aliases=on;
}

source {
    owner = localhost;
    file = "/etc/hosts.mydomain";
    serve_aliases=on;
}
include {
    file = /etc/pdnsd.d/locdom.conf;
}
# -- end pdnsd.conf --

/etc/pdnsd.d/locdom.conf
# -- begin locdom.conf --
rr {
    name = onetapi.pl;
    ns = localhost;
    soa = localhost,root.localhost,42,86400,900,86400,86400;
    a = 10.177.0.1;
}

rr {
        name = *.locdom.com;
        cname = locdom.com;
}
# -- end locdom.conf --