Commit e568ed64cd69ebce5cd78edbafe5191563e7dfcb
1 parent
99ed087a
Added sample config file
Showing
1 changed file
with
28 additions
and
0 deletions
dyndns.cfg.dist
0 → 100644
1 | +# dyndns.cfg.dist - Sample configuration File for dyndns.pl, copy this file to | |
2 | +# the same directory as dyndns.pl and name it dyndns.cfg (same as script without | |
3 | +# extension .pl and with extension .cfg) | |
4 | +# values below are the defaults as also hard-coded in the script. | |
5 | + | |
6 | +# DNS Settings | |
7 | +#dns_server = 192.168.1.1 # DNS Server to communicate with (use IP!) | |
8 | + | |
9 | +#expand_cnames = 1 # CNAME levels to expand (0 to disable) | |
10 | +#require_rr = # Require existing record of this type to update | |
11 | +#replace_rr = A, AAAA, TXT # Records types to replace (clear) during update | |
12 | +#record_ttl = 1h # TTL for created records, format: [0-9]+[mhws]? | |
13 | + | |
14 | +#update_txt = Last DynDNS update on # if set add TXT with this+date on update | |
15 | +#delete_txt = DynDNS cleared on # if set add TXT with this+date on delete | |
16 | + | |
17 | +#expire_after = 1w # Expire time for registrations in minutes, | |
18 | + # hours, weeks or seconds. format: [0-9]+[mhws]? | |
19 | + | |
20 | +# Authentication Settings | |
21 | +#auth_mode = remote # either 'static', 'remote' or 'both' | |
22 | +#static_signer = # required for AuthMode 'static' or 'both' | |
23 | +#static_key = # required for AuthMode 'static' or 'both' | |
24 | + | |
25 | +# Debugging | |
26 | +#allow_debug_key = off # Debuging, off to disable, empty for always on | |
27 | + # and other values to enable with debug= param | |
28 | + | |
... | ... |