dns-over-tls

Crates.iodns-over-tls
lib.rsdns-over-tls
version0.1.0
sourcesrc
created_at2020-05-12 16:45:54.318574
updated_at2020-05-12 16:45:54.318574
descriptionA simple DoT Proxy
homepage
repositoryhttps://git.asonix.dog/asonix/dns-over-tls-proxy
max_upload_size
id240732
size56,304
asonix (asonix)

documentation

README

DNS over TLS

a simple proxy for DoT queries

Usage

Install

cargo install dns-over-tls

Run

$ ./dns-over-tls --help
dns-over-tls 0.1.0

USAGE:
    dns-over-tls --address <address> --cert <cert> --key <key> --upstream <upstream>

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -a, --address <address>      The local address to bind the server to
    -c, --cert <cert>            Path to the TLS Certificate
    -k, --key <key>              Path to the TLS Key
    -u, --upstream <upstream>    The upstream DNS server
Example:
$ ./dns-over-tls -a 0.0.0.0:8053 -c /etc/dot/tls.crt -k /etc/dot/tls.key -u 1.1.1.1:53

DNS over TLS respects the RUST_LOG environment variable for setting log levels. Running with RUST_LOG=info is recommended.

Contributing

Unless otherwise stated, all contributions to this project will be licensed under the CSL with the exceptions listed in the License section of this file.

License

This work is licensed under the Cooperative Software License. This is not a Free Software License, but may be considered a "source-available License." For most hobbyists, self-employed developers, worker-owned companies, and cooperatives, this software can be used in most projects so long as this software is distributed under the terms of the CSL. For more information, see the provided LICENSE file. If none exists, the license can be found online here. If you are a free software project and wish to use this software under the terms of the GNU Affero General Public License, please contact me at asonix@asonix.dog and we can sort that out. If you wish to use this project under any other license, especially in proprietary software, the answer is likely no.

Commit count: 0

cargo fmt