diff options
author | Arturo FilastoĢ <hellais@torproject.org> | 2011-08-19 10:51:07 +0200 |
---|---|---|
committer | Arturo FilastoĢ <hellais@torproject.org> | 2011-08-19 10:51:07 +0200 |
commit | 11aaab578cc13910aca7a32d87072781056f30df (patch) | |
tree | 01c8473754e676d08b16b300c5889cfc8cfc9d19 /packages/torouter-prep/configs/ttdnsd-default | |
parent | dfe11c74fe59ceaa68778d80ce6a8a16227350f9 (diff) | |
parent | e3327c32629717ee81283b9813e5764e6fda2c2e (diff) | |
download | torouter-11aaab578cc13910aca7a32d87072781056f30df.tar.gz torouter-11aaab578cc13910aca7a32d87072781056f30df.zip |
Merge branch 'master' of ssh://git-rw.torproject.org/torouter
Diffstat (limited to 'packages/torouter-prep/configs/ttdnsd-default')
-rwxr-xr-x | packages/torouter-prep/configs/ttdnsd-default | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/torouter-prep/configs/ttdnsd-default b/packages/torouter-prep/configs/ttdnsd-default new file mode 100755 index 0000000..0a22bc4 --- /dev/null +++ b/packages/torouter-prep/configs/ttdnsd-default @@ -0,0 +1,17 @@ +# /etc/default/ttdnsd + +# Address to bind to - usually this should be 127.0.0.1 +# unless a copy of ttdnsd runs on 127.0.0.n +ADDR_ARG="-b 172.16.23.1" + +# Port to listen on - almost always this should be port 53 +# unless an additional local DNS cache (like unbound, dnscache, pdnsd) +# listen on port 53 as system resolver and is used in front of ttdnsd +# for caching purposes. +PORT_ARG="-p 5354" + +# Debug logging +# DEBUG_LOGGING="-l" + +# Glue all of it together below +DEFAULTS="$ADDR_ARG $PORT_ARG" |