Browse Source

stubby: add reload_config to documentation

Signed-off-by: Jonathan G. Underwood <jonathan.underwood@gmail.com>
lilik-openwrt-22.03
Jonathan G. Underwood 6 years ago
parent
commit
a3de18a2c7
1 changed files with 6 additions and 5 deletions
  1. +6
    -5
      net/stubby/files/README.md

+ 6
- 5
net/stubby/files/README.md View File

@ -1,3 +1,4 @@
# Stubby for OpenWRT # Stubby for OpenWRT
## Stubby Description ## Stubby Description
@ -86,7 +87,7 @@ command line:
uci add_list dhcp.@dnsmasq[-1].server='127.0.0.1#5453' uci add_list dhcp.@dnsmasq[-1].server='127.0.0.1#5453'
uci dhcp.@dnsmasq[-1].noresolv=1 uci dhcp.@dnsmasq[-1].noresolv=1
uci commit
uci commit && reload_config
The same outcome can be achieved in the LUCI web interface as follows: The same outcome can be achieved in the LUCI web interface as follows:
@ -114,7 +115,7 @@ loopback address for both the `wan` and `wan6` interfaces in the
uci set network.wan.dns='127.0.0.1' uci set network.wan.dns='127.0.0.1'
uci set network.wan6.peerdns='0' uci set network.wan6.peerdns='0'
uci set network.wan6.dns='0::1' uci set network.wan6.dns='0::1'
uci commit
uci commit && reload_config
The same outcome can also be achieved using the LUCI web interface as follows: The same outcome can also be achieved using the LUCI web interface as follows:
@ -156,7 +157,7 @@ configuration option `dnssec_return_status` to `'1'` in `/etc/config/stubby`,
which can be done by editing the file directly or by executing the commands: which can be done by editing the file directly or by executing the commands:
uci set stubby.global.dnssec_return_status=1 uci set stubby.global.dnssec_return_status=1
uci commit
uci commit && reload_config
With stubby performing DNSSEC validation, dnsmasq needs to be configured to With stubby performing DNSSEC validation, dnsmasq needs to be configured to
proxy the DNSSEC data to clients. This requires setting the option `proxydnssec` proxy the DNSSEC data to clients. This requires setting the option `proxydnssec`
@ -164,7 +165,7 @@ to 1 in the dnsmasq configuration in `/etc/config/dhcp`. That can be achieved by
the following commands: the following commands:
uci set dhcp.@dnsmasq[-1].proxydnssec=1 uci set dhcp.@dnsmasq[-1].proxydnssec=1
uci commit
uci commit && reload_config
#### DNSSEC by dnsmasq #### DNSSEC by dnsmasq
@ -176,7 +177,7 @@ commands:
uci set dhcp.@dnsmasq[-1].dnssec=1 uci set dhcp.@dnsmasq[-1].dnssec=1
uci set dhcp.@dnsmasq[-1].dnsseccheckunsigned=1 uci set dhcp.@dnsmasq[-1].dnsseccheckunsigned=1
uci commit
uci commit && reload_config
The same options can be set in the LUCI web interface as follows: The same options can be set in the LUCI web interface as follows:


Loading…
Cancel
Save