diff options
author | Christian Hesse <mail@eworm.de> | 2013-11-04 11:19:30 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-11-04 11:19:30 +0100 |
commit | 13fd8f76079e7e9a0529754eb834fd93549d5a6b (patch) | |
tree | 31f9583db88678b612f61fdd12ee2ecf9a439da6 /pacredir.conf | |
parent | 3ea4fd22575e1d7f081b1777809a4aa9b6af8a0c (diff) | |
download | pacredir-13fd8f76079e7e9a0529754eb834fd93549d5a6b.tar.gz pacredir-13fd8f76079e7e9a0529754eb834fd93549d5a6b.tar.zst |
add configuration file for pacredir
This allows to ignore hosts on specified interfaces and add static
hosts.
Diffstat (limited to 'pacredir.conf')
-rw-r--r-- | pacredir.conf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pacredir.conf b/pacredir.conf new file mode 100644 index 0000000..e68393e --- /dev/null +++ b/pacredir.conf @@ -0,0 +1,20 @@ +# pacredir configuration file + +# We need a default section and call it 'general', so do not change this line. +[general] + +# Some people like to run avahi on network interfaces with low bandwidth or +# high cost, for example to use 'Bonjour' (Link-Local Messaging) on it. +# Add these interfaces here to ignore them by pacredir. Just give multiple +# interface if desired, separated by space, comma or semicolon. +#ignore interfaces = tap0 +#ignore interfaces = tun0 +#ignore interfaces = openvpn +#ignore interfaces = tap0 tun0 openvpn + +# You may want to add hosts that do not announce their services via avahi or +# are connected to a different network segment. Add them here. +# Please note that pacdbserve hosts depend on the servers architecture! +#pacserve hosts = test1.domain +#pacserve hosts = test1.domain test2.domain +#pacdbserve hosts = test3.domain test4.domain |