Disable ISP DNS EdgeOS Guide Custom Nameservers

By October 6, 2017Networking

Start by logging into EdgeOS so we can configure your DNS manually.
[raw] ssh ubnt@192.168.1.1
[/raw]

Turn on configuration mode
[raw] configure
[/raw]

Disable /etc/resolv.conf from using ISP servers – replace eth1 with your WAN interface
[raw] set interfaces ethernet eth1 dhcp-options name-server no-update
[/raw]

Replace with your preferred DNS below.
[raw] edit service dns forwarding
set name-server 208.67.222.222
set name-server 208.67.220.220
top
[/raw]

Finally use DNSMasq, commit and save changes.
[raw] set system name-server 127.0.0.1
commit
save
exit
[/raw]

To reset the adapter
[raw] renew dhcp interface eth1
[/raw]

Leave a Reply