OSX Sierra hosts file is ignored

19

4

For some reason, two days ago my hosts file started being ignored.
I'm using Mac with Sierra OSx . This is the current content of the /etc/hosts file

##
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhostage
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost

127.0.0.1 localkur.com

Pinging localkur.com returns

ping: cannot resolve localkur.com: Unknown host

I have restart the system, clean the cache using these commands

sudo killall -HUP mDNSResponder;
sudo discoveryutil mdnsflushcache;
sudo discoveryutil udnsflushcaches;

Reopen the file in different text editing programs, vm, sublime etc.
Double checked if space or tab (or double space or double tab) - tested with all possibilities.
Also monitor the file with this command

 sudo fs_usage | grep "/etc/hosts"

And got that result when refreshing the browser or saving it with sublime

12:23:35  open              private/etc/hosts 0.000019   Google Chrom
12:23:36  open              private/etc/hosts 0.000019   Google Chrom
12:23:41  stat64            /private/etc/hosts 0.000022   Sublime Text
12:23:43  stat64            /private/etc/hosts 0.000019   Sublime Text
12:23:45  stat64            /private/etc/hosts 0.000019   Sublime Text
12:23:45  open              /private/etc/hosts 0.000019   Sublime Text

What am I missing ?
Why is this file ignored ?
How to enable it again ?

T1000

Posted 2017-03-22T10:28:42.677

Reputation: 293

What are checked lines in System Preferences > Network > Advanced ... > Proxies? Anything special? – FarazX – 2017-03-22T11:07:44.690

the file might be corrupted/damaged, it has to be an ascii file - why don't you recreate it? – 13dimitar – 2017-03-22T11:15:50.800

@FarazX there is "Bypass proxy settings for these Hosts & Domains:" and the value is "*.local, 169.254/16" – T1000 – 2017-03-22T12:16:41.943

@13nilux how to recreate it properly ? – T1000 – 2017-03-22T12:16:47.617

with nano - move do old file to /etc/oldhosts, create a new file with nano, populate it with the values of the old file and save it as /etc/hosts – 13dimitar – 2017-03-22T12:29:04.013

@13nilux dude ! You are genious! Apparently something happened to the file ... and now is ok! Can you please make it like normal answer so I can upvote you! Thanks – T1000 – 2017-03-22T13:11:08.603

Answers

11

The file might be corrupted/damaged, it has to be an ASCII file. You should recreate it:

  • move the old file with mv -f /etc/hosts /etc/oldhosts
  • create a new file with nano
  • populate it with the values of the old file
  • save it as /etc/hosts

That should do it.

13dimitar

Posted 2017-03-22T10:28:42.677

Reputation: 701

1Thanks, that was the problem in my case! The file was looking totaly normal but it was apparently with changed encoding or something else. It was visible by 'cat /etc/hosts' because cat wasn't listing the whole content of the file, just last line.... – T1000 – 2017-03-22T15:42:27.403

12It'd be wise to check file -I /etc/hosts output first. If it outputs charset=us-ascii, this answer won't work for you. – MCCCS – 2018-07-20T09:32:09.653

10

Look at System Preferences -> Network

If the currently active "Location" has one or more DNS servers listed then the system will create the file "/etc/resolv.conf" which will list those nameservers as the place to go for resolution, bypassing /etc/hosts entirely

resolv.conf is created dynamically by "Network" prefs, and overwritten based on the "DNS Server" field of the currently active "Location" or removed if that field is blank

BenL

Posted 2017-03-22T10:28:42.677

Reputation: 101

This resolved the issue for me. Thanks for posting this solution. – PhilR – 2018-04-10T19:06:57.587

My system uses DHCP to receive the DNS resolver, and has an /etc/resolv.conf file. How can I override normal DNS query to block popunders? My intent was to add lines to /etc/hosts. – jetset – 2018-07-30T21:31:04.437

How do you plan to distinguish between valid DNS queries and popunders? Sounds like it might be a browser level problem. Might it be better served by a browser solution like "Privacy Badger" or "uBlock Origin"? – BenL – 2018-08-01T12:22:48.513

1So what's the solution? Removing the DNS listed on the DNS tab. – multigoodverse – 2018-11-30T20:59:03.267

In my case, I couldn't remove the DNS (i use pi-hole), but wanted some domains to be blackholed before they were even sent to the pi-hole DNS to resolve. For some reason, having 127.0.0.1 example.com in /etc/hosts did not work and sent dns queries to the pi-hole which were then resolved in browser, but changing 127.0.0.1 to 0.0.0.0 such that my entry read 0.0.0.0 example.com in /etc/hosts instead worked. – Conor – 2019-12-26T21:29:01.057

2

Also, make sure your list of hostnames doesn't exceed 20 names. I frequent a site which likes to put advertisements in your face, so I assign the FQDN from the popup as an alias of localhost. Recently I found my hosts file wasn't working. Seems the limit is 20 hosts... Example:

127.0.0.4 www.slutroulette.com static.exoclick.com www.gameskwala.com www.thefreecamsecret.com www.slutroulette.com cdn1.adexpert.com cdn2.adexpert.com cdn3.adexpert.com cdn3.adexperts.com abine.com www.abine.com e1.static.hoptopboy.com.rncdn1.com gameinvite.24trk.com main.exoclick.com 0427d7.se syndication.exoclick.com 0427d7.se gamingruff.com www.gamingruff.com mackeeperapp.zeobit.com 
127.0.0.5 ads.adplxmd.com mackeeperapp3.mackeeper.com onclickads.net onclick.net fundownloads108.com pussl10.com rumorsleague.com kitsfilesdll.com pussl8.com nowsetup.enterworldofupgrading.review playgr8.com autoupdate.thebigandgoodfree4upgrading.trade om.elvenar.com www.hitcpm.com www.ibtimes.co.uk mysagagame.com

tc0nn

Posted 2017-03-22T10:28:42.677

Reputation: 41

2

This is an old thread for sure but I was facing the same problem today and I found the solution. Leaving this here in case someone else needs it.

sudo dscacheutil -flushcache

Flushing the DNS cache did the trick in my case.

rahulsoibam

Posted 2017-03-22T10:28:42.677

Reputation: 21

0

/etc/hosts must have unix-style line endings.

In my case I've used Sublime and saved /etc/hosts with default Mac OS style. It was the reason of problem.

Solution taken from here: https://stackoverflow.com/a/42265844/1331420

Alekzander

Posted 2017-03-22T10:28:42.677

Reputation: 111

-1

For me the issue was pasting the details in. Flushing the cache, etc didn't work.

Removing the original entry and manually typing everything in then worked 1st time!

Eddie

Posted 2017-03-22T10:28:42.677

Reputation: 1

-2

It could be use of TAB instead of SPACE. Was in my case. Fixed it nicely!

Tomachi

Posted 2017-03-22T10:28:42.677

Reputation: 154

2Can you elaborate on this a little more? – Toto – 2018-04-12T08:14:18.053