Override hosts
file entries for the lifetime of the process
This project was initially created by @rcaught during his time with @ausaccessfed.
brew install ausaccessfed/hosts-override/hosts-override
curl -Ls https://github.com/ausaccessfed/hosts-override/releases/latest/download/macos.zip > /tmp/hosts-override.zip
unzip /tmp/hosts-override.zip -d /usr/local/bin
curl -Ls https://github.com/ausaccessfed/hosts-override/releases/latest/download/linux.zip > /tmp/hosts-override.zip
unzip /tmp/hosts-override.zip -d /usr/local/bin
- Download https://github.com/ausaccessfed/hosts-override/releases/latest/download/windows.zip
- Unzip the file and run the exe as Administrator
-
Override myhost.com to resolve to 127.0.0.1
sudo hosts-override myhost.com,127.0.0.1
-
google.com will be resolved into an IP / set of IPs
sudo hosts-override myhost.com,google.com
-
Multiple hosts and values are supported
sudo hosts-override myhost.com,127.0.0.1 anotherhost.com,127.0.0.1
-
Refresh of unresolved hosts (with custom interval)
sudo hosts-override -r -i=1m myhost.com,127.0.0.1
-
Run Command Prompt as Administrator and navigate to the directory containing hosts-override.exe
hosts-override.exe myhost.com,127.0.0.1
sudo
or running as Administrator is required as the hosts file is owned byroot
- On exiting the program with an interrupt (CTRL-c), the hosts file is cleaned of appended records
- In the case of an unclean shutdown, the next invocation of
hosts-override
will clear the previous sessions records - IPv4 and IPv6 addresses supported
This is a Go based project so you'll need to install Go on your development machine if you want to make changes.
There is no CI associated with this project, otherwise normal PR review process applies.
We ship releases for:
- Windows
- Linux
- MacOS
To build all three releases using Go's cross platform capabilities run ./release.sh
which will create 3 new zip files in the release
directory. This should only ever occur once PR are merged into the main branch.
From there create a new release on GitHub and attach the binaries for consumption by users.