Week 2 - Configuring Network Services Flashcards
What is dnsmasq?
Linux only?
program that provides DNS, DHCP, TFTP, and PXE services in as simple package
What is dnsmasq? [Linux]
a program that provides DNS, DHCP, TFTP, and PXE services in a simple package
What does the command “dig” on Linux allow us to do?
lets us query DNS servers to see their answers
Although not typically how you run a service, what flags would you use to have a service like dnsmasq run in debug mode? [command in Linux]
sudo dnsmasq -d -q
What’s the most basic functionality of dnsmasq?
it is a cache for DNS requests (IP of a host name) meaning it remembers so it doesn’t have to query the DNS server for the same request in the future
What’s the benefit of using dnsmasq when it comes to lists of host names and IPs?
We can give dnsmasq a list of our own host names and IPs and the service will give authoritative answers for them
(use the -H parameter to tell dnsmasq we want to include our list in the information being served)
What is DHC client?
A very common DHCP client on Linux