Useful Snippets

Welcome!


This blog is used to collect useful snippets related to Linux, PHP, MySQL and more. Feel free to post comments with improvements or questions!

Are your smart devices spying on you? Make better purchasing choices and find products that respect your privacy at Unwanted.cloud

RSS Latest posts from my personal blog


Subscribe to RSS feed


Change DNS servers for a Debian server

Stanislav KhromovStanislav Khromov

Edit the file

vim /etc/dhcp/dhclient.conf

Uncomment the line starting with #prepend domain-name-servers and set your dns servers. Below is an example using the Google Public DNS.

prepend domain-name-servers 8.8.8.8, 8.8.4.4;

(Note removal of hash sign at beginning and two comma-separated DNS servers.)

Reboot and you should be set. You can verify the servers in use by running

dig google.com

The IP for the DNS server will be at the bottom of the output, like this:

;; SERVER: 8.8.4.4#53(8.8.4.4)

Full-stack impostor syndrome sufferer & Software Engineer at Schibsted Media Group

Comments 0
There are currently no comments.