dnsmasq local name resolution with NetworkManager
2015-08-27
169 words
1 min read
Network Manager suports starting dnsmasq which helps you have a local cache for DNS thus getting faster resolution for the DNS queries.
So, one thing that I have been thinking about is having a local name resolution for the VMs. So, I wanted something like this to work:
vm1 => 172.17.42,1
vm2 => 172.17.42,2
and so on …
To achieve this and reverse dns to work, we will add the entries in file “/etc/NetworkManager/dnsmasq.d/hostnames“. Just one more problem, adding so many entries manually? So, to help you with that, I created this small script:
#!/bin/bash - #=============================================================================== # # FILE: add-dnsmasq.sh # # USAGE: ./add-dnsmasq.sh # # DESCRIPTION: # # OPTIONS: --- # REQUIREMENTS: --- # BUGS: --- # NOTES: --- # AUTHOR: Amit Agarwal (aka), # ORGANIZATION: # REVISION: --- #=============================================================================== IPPRE='172.17.42.' for i in {1..250} do echo "address=/vm$i/$IPPRE$i" >> /etc/NetworkManager/dnsmasq.d/hostnames echo "ptr-record=vm$i,$IPPRE$i" >> /etc/NetworkManager/dnsmasq.d/hostnames done
Just run this script to add all the entries and restart dnsmasq by killing the already running instance. 🙂
Related Articles:
- 2015/08/17 bash – expand shell variables ( bash bug resolved )
- 2015/07/09 evvsubst – substitute variables in text in shell
- 2015/06/29 Easily monitor and archive your system log reports.
- 2015/06/22 tlp – optimize and maximize your battery power.
- 2015/05/05 docker search description truncated
Authored By Amit Agarwal
Amit Agarwal, Linux and Photography are my hobbies.Creative Commons Attribution 4.0 International License.