Tool for resolving domain names with web interface and API. Meshname/meship supported.
acetone beeb14fe55 1.0.0: REST API, refactoring | 2 vuotta sitten | |
---|---|---|
cppcodec | 3 vuotta sitten | |
html | 3 vuotta sitten | |
.gitignore | 3 vuotta sitten | |
HTTPheaders.h | 2 vuotta sitten | |
LICENSE | 3 vuotta sitten | |
README.md | 3 vuotta sitten | |
funcs.cpp | 3 vuotta sitten | |
funcs.h | 3 vuotta sitten | |
jsonanswer.cpp | 2 vuotta sitten | |
jsonanswer.h | 2 vuotta sitten | |
main.cpp | 2 vuotta sitten | |
mario-dns-tool.pro | 2 vuotta sitten | |
resolver.cpp | 2 vuotta sitten | |
resolver.h | 2 vuotta sitten | |
version.h | 2 vuotta sitten |
Tool for resolving domain names with web interface and API. Meshname / meship supported.
C++, Qt5
The main use of the tool is to translate IPv6 addresses to meship domains for use in services without IPv6 support. Meship (and meshname) domains are resolved by meshnamed.
Also, the tool can be used as a supplement to projects that need to resolve domain names to addresses with some API. Mario DNS provides API with output in JSON format:
# Request:
dns.acetone.ygg
# Answer:
{
"status": true,
"answer": [
"324:71e:281a:9ed3::53"
]
}
You can use version
request for version information.
To use the API, send a domain or address to a socket without additional headers.
Pass address and port to bind via parameters:
./mario-dns 192.168.0.1 5000
Several options are supported, which must be specified after the port:
--no-api
disable API access (only HTTP mode for web browser);--no-http
disable HTTP access (only API mode);--no-resolve
disable DNS resolving (only meship domains);--no-favicon
disable web page favicon (-135KB for faster loading).