-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df1443b
commit 1971778
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
knowledgebase/bliss-bass/features/dns-internet-restriction.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Internet Restriction (DNS) | ||
|
||
In some cases, the system is equipped with an internet restriction method that is active while the device is in Lockdown mode. | ||
|
||
|
||
### Updating the DNS configuration | ||
|
||
In order to configure what websites and IP addresses are allowed to be accessed, we use a DNS configuration that follows the server rules found in Googles [dnsmasq.conf example](https://android.googlesource.com/platform/external/dnsmasq/+/refs/heads/main/dnsmasq.conf.example) . By default, the blissdns.conf file contains the following settings: | ||
|
||
|
||
``` | ||
no-resolv | ||
server=1.1.1.1 | ||
# Add domains here: | ||
server=/github.com/1.1.1.1 | ||
server=/blissos.org/1.1.1.1 | ||
server=/vendorname_update.blisscolabs.dev/1.1.1.1 | ||
server=/yourcompanysite.com/1.1.1.1 | ||
server=/yourcustomprovidersite.com/1.1.1.1 | ||
address=/#/127.0.0.1 | ||
``` |