0

Edit connection Mobile Broadband : select network name : Edit IP4 settings: Under Methods : Automatic PPP and Automatic PPP address only

Changed DNS Server to: 198.153.192.40 and Search Domains To: 198.153.194.40 Yet the output of $ cat /etc/resolv.conf: Is

Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.0.1
search 198.153.194.40

It is the same output on wireless network also.

Is this normal for nameserver?

Out put of Cat /etc/issue :

Distributor ID: Ubuntu
Description:    Ubuntu 12.04.3 LTS
Release:    12.04
Codename:   precise
Ubuntu 12.04.3 LTS \n \l

Am having many intrusions to my PC and wonder if that is a contribute factor.

Although, DNS test like (www.dnsleaktest.com) does show what was implemented at "Edit Connections" That is the IP address' of the public DNS added.

Ubuntu Network Tools (3.2.0) shows:

Devices: Network Devices: Loopback interface (lo) Protocol: IPv6 IP address: ::1 Netmask: 128 Scope: Host Protocol: IPv4 IP address: 127.0.0.1 Netmask: 255.0.0.0 Scope:

1 Answers1

2

Yes, that is normal. On Ubuntu Desktop since 12.04 there is a dnsmasq instance listening on the the loopback interface at address 127.0.0.1 (127.0.1.1 in 12.10 and later) that functions as a forwarder for DNS queries.

However, it is not normal to set search to an IP address. You may delete the Search Domain entry; it is not necessary on consumer desktop installations.

You can test the local nameserver with something like

dig google.com @127.0.0.1

Dnsmasq receives upstream nameserver addresses via NetworkManager->DBUS->dnsmasq.

jdthood
  • 12,625