We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice if I could add lines to minimega dnsmasq configs
For example to redirect *.test.com to 1.0.0.1 and *.test2.com to 2.0.0.1 I add this to /etc/dnsmasq.conf:
/etc/dnsmasq.conf
address=/test.com/1.0.0.1;address=/test2.com/2.0.0.1
The text was updated successfully, but these errors were encountered:
There have been quite a few use cases this has come into play and as a workaround I've been using miniccc to add the lines and restart the service.
Namely:
Redirecting certain domains to specific dns servers
server=/test.com/3.0.0.1 server=/test2.com/4.0.0.1
Adding cname records
domain=test.com cname=www.test.com,test.com
Maybe something like router r0 dnsmasq-append server=/test.com/3.0.0.1;server=/test2.com/4.0.0.1
router r0 dnsmasq-append server=/test.com/3.0.0.1;server=/test2.com/4.0.0.1
Sorry, something went wrong.
No branches or pull requests
It would be nice if I could add lines to minimega dnsmasq configs
For example to redirect *.test.com to 1.0.0.1 and *.test2.com to 2.0.0.1 I add this to
/etc/dnsmasq.conf
:The text was updated successfully, but these errors were encountered: