diff options
author | ficus <ficus@robocracy.org> | 2012-11-17 01:19:44 +0100 |
---|---|---|
committer | ficus <ficus@robocracy.org> | 2012-11-17 01:19:44 +0100 |
commit | 4b7afd6137b62dfcfc09aa8a05f59935fef69489 (patch) | |
tree | e4466fd24d48ff303caaaeb3a190ee0a223f0df0 /config/includes.chroot/etc/default | |
parent | d2e16f2311fbf6d2a93dfde5adc86dc8e27381aa (diff) | |
download | torouter-live-4b7afd6137b62dfcfc09aa8a05f59935fef69489.tar.gz torouter-live-4b7afd6137b62dfcfc09aa8a05f59935fef69489.zip |
import conf from old torouter repository
Diffstat (limited to 'config/includes.chroot/etc/default')
-rw-r--r-- | config/includes.chroot/etc/default/dnsmasq | 2 | ||||
-rw-r--r-- | config/includes.chroot/etc/default/openntpd | 6 | ||||
-rwxr-xr-x | config/includes.chroot/etc/default/ttdnsd | 17 |
3 files changed, 25 insertions, 0 deletions
diff --git a/config/includes.chroot/etc/default/dnsmasq b/config/includes.chroot/etc/default/dnsmasq new file mode 100644 index 0000000..ddaa02b --- /dev/null +++ b/config/includes.chroot/etc/default/dnsmasq @@ -0,0 +1,2 @@ + +ENABLED=0 diff --git a/config/includes.chroot/etc/default/openntpd b/config/includes.chroot/etc/default/openntpd new file mode 100644 index 0000000..318e7bd --- /dev/null +++ b/config/includes.chroot/etc/default/openntpd @@ -0,0 +1,6 @@ +# /etc/default/openntpd + +# Append '-s' to set the system time when starting in case the offset +# between the local clock and the servers is more than 180 seconds. +# For other options, see man ntpd(8). +DAEMON_OPTS="-f /etc/openntpd/ntpd.conf -s" diff --git a/config/includes.chroot/etc/default/ttdnsd b/config/includes.chroot/etc/default/ttdnsd new file mode 100755 index 0000000..0a22bc4 --- /dev/null +++ b/config/includes.chroot/etc/default/ttdnsd @@ -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" |