Browse Source

added instructions for making router use dnsmasq for local caching

master
Mario Alegre 5 years ago
parent
commit
4589e79284
  1. 5
      android/increase-volume.md
  2. 11
      linux/router/dnsmasq.md

5
android/increase-volume.md

@ -0,0 +1,5 @@
# increase volume
edit `/system/vendor/etc/mixer_paths*.xml`
for volume steps, edit `/system/build.prop`

11
linux/router/dnsmasq.md

@ -83,3 +83,14 @@ then take the interface down and bring it back up with:
ifdown lan0 ifdown lan0
ifup lan0 ifup lan0
``` ```
## Configure NetworkManager
If you want the router itself to also send DNS requests through dnsmasq, you need to configure NetworkManager to use dnsmasq. Edit the file `/etc/NetworkManager/NetworkManager.conf`, and under the header `[main]` add the line:
```
dns=dnsmasq
```
then restart NetworkManager to make the changes take effect:
```
systemctl restart NetworkManager
```

Loading…
Cancel
Save