Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is my hosts file entry being ignored by the browser? [closed]

Tags:

mapping

ip

hosts

I mapped a website with the IP of www.facebook.com to load Facebook when I request a different url (let's say www.x.lk) particular site. It worked well. But when I tried to map the inverse, which should load www.x.lk when I ask for Facebook, it doesn't work. The original Facebook site is being loaded. What is the problem? Can anyone help me out here?

    # Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   ::1             localhost
104.16.73.189 www.facebook.com
like image 447
Kalana Shalitha Avatar asked May 26 '16 05:05

Kalana Shalitha


People also ask

Why is my hosts file entry being ignored by the browser?

Scroll to the bottom of the first panel to find and click on Network Settings. Near the bottom there is a checkbox marked, "Enable DNS over HTTPS". Unchecking that might solve the problem. Why is my hosts file entry being ignored by the browser?

Why hosts file is not working?

If you have used the right format but still the Hosts file is not working, try the solutions mentioned below: Flush your DNS cache. Reset your NetBios cache. Check the encoding format of the Hosts file.

How do I force a host file?

Click Start, click Run, type Notepad, and then click OK. On the File menu, select Save as, type "hosts" in the File name box, and then save the file to the desktop. Select Start > Run, type %WinDir%\System32\Drivers\Etc, and then select OK. Select the Hosts file, and rename it "Hosts.

Does Firefox ignore hosts file?

Firefox does not honor the hosts file when browsing to an URL.


1 Answers

Are you using Chrome by any chance? If you aren't, then try flushing your system's DNS cache (ipconfig /flushdns on Windows).

Chrome however has its own DNS cache. I found that going to chrome://net-internals/#sockets and clicking "Flush socket pools" worked.

If you don't want to have to do this manually every time, the Host Switch Plus extension might help.

Note: you can also go to chrome://net-internals/#dns to check what the URL is resolving to, but the "Clear host cache" button didn't fix this particular problem for me.

like image 188
Alex Bowe Avatar answered Dec 06 '22 17:12

Alex Bowe