User Tools

Site Tools


computing:miscadmin

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
computing:miscadmin [2024/11/03 14:28] oemb1905computing:miscadmin [2024/12/07 19:48] (current) oemb1905
Line 375: Line 375:
   sudo systemctl restart networking   sudo systemctl restart networking
      
-After you restart networking, run ''cat /etc/resolv.conf'' and make sure the DNS is what you desired. +After you restart networking, run ''cat /etc/resolv.conf'' and make sure the DNS is what you desired. In order to test whether there are DNS leaks, use tcpdump and adjust port to 53, 5335, 853, etc.
  
- --- //[[webmaster@haacksnetworking.org|oemb1905]] 2024/11/03 14:24//+  tcpdump -vv -x -X -s 1500 -i eth0 'port 853' 
 + 
 +In order to set a policy on Chrome to stop DOT, or DNS over TLS/https, do the following: 
 + 
 +  sudo nano /etc/opt/chrome/policies/managed/policies.json 
 +  { 
 +  "BrowserGuestModeEnabled": false, 
 +  "BrowserAddPersonEnabled": false, 
 +  "IncognitoModeAvailability": 1, 
 +  "DnsOverHttpsMode": false, 
 +  "ExtensionSettings": {"*": {"installation_mode": "blocked"}} 
 +  } 
 + 
 +Running Debian testing/unstable and your zfs modules suddenly won't load after a reboot and upgrade, well do the following: 
 + 
 +  sudo apt-get install linux-headers-$(uname -r) 
 + 
 +Alright .... 
 + 
 + --- //[[webmaster@haacksnetworking.org|oemb1905]] 2024/12/07 19:48//
computing/miscadmin.1730644132.txt.gz · Last modified: 2024/11/03 14:28 by oemb1905