dnscrypt-proxy update: 1.4.1
[tomato.git] / release / src / router / dnscrypt / README-WINDOWS.markdown
bloba2cf2a55e2d150f70c139c38d37c36aeca5778ed
1 Using DNSCrypt on Windows
2 =========================
4 On Windows, `dnscrypt-proxy` can be started from the command-line the same way
5 as on other operating systems.
7 Alternatively, it can run as a Windows Service.
9 Note: Also check out Dominus Temporis' excellent tutorial on
10 [DNSCrypt on Windows](http://dominustemporis.com/2014/05/dnscrypt-on-windows-update/)
12 Quickstart
13 ----------
15 1) Download and extract the latest
16 [Windows package for dnscrypt](http://dnscrypt.org) and open the `bin`
17 directory.
19 2) Copy the `dnscrypt-proxy.exe` file to any location, as well as the
20 dnscrypt-resolvers.csv file and the DLL files.
21 All the files should be in the same location.
23 3) Open an elevated command prompt and type (you may need to specify
24 the full path to the file):
26     dnscrypt-proxy.exe -R "name" -L "<full path to the dnscrypt-resolvers.csv file>" --test=0
28 Replace `name` with one of the resolvers from CSV file. The (possibly
29 updated) file can also be viewed online:
30 [public DNS resolvers supporting DNSCrypt](https://github.com/jedisct1/dnscrypt-proxy/blob/master/dnscrypt-resolvers.csv)
32 This command should display the server key fingerprint and exit. If
33 this is not the case, try a different server. If this is the case,
34 install the service:
36     dnscrypt-proxy.exe -R "name" -L "<full path to the dnscrypt-resolvers.csv file>" --install
38 4) Change your DNS settings to `127.0.0.1`
40 Congratulations, you're now using DNSCrypt.
42 How to open an elevated command prompt
43 --------------------------------------
45 On Windows 8.1, press the Windows key + the X key and select "Windows
46 Command Prompt (Admin)" or "Windows PowerShell (Admin)".
48 Advanced usage
49 --------------
51 The Windows build of `dnscrypt-proxy` adds the following command-line
52 options:
54 - `--install`: install the proxy as a service.
55 - `--uninstall`: uninstall the service.
57 Startup options should specified as subkeys from this registry key:
58 `HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dnscrypt-proxy\Parameters`
60 The service is named `dnscrypt-proxy`.
62 The following subkeys are recognized and should be self-explanatory:
64     Plugins           (REG_MULTI_SZ)
65     LocalAddress      (REG_SZ)
66     ProviderKey       (REG_SZ)
67     ProviderName      (REG_SZ)
68     ResolverAddress   (REG_SZ)
69     ResolverName      (REG_SZ)
70     ResolversList     (REG_SZ)
71     EDNSPayloadSize   (DWORD)
72     MaxActiveRequests (DWORD)
73     TCPOnly           (DWORD)
75 For example, in order to listen to local address `127.0.0.7` instead
76 of `127.0.0.1`, the string value `127.0.0.7` should be set for the key
77 `HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dnscrypt-proxy\Parameters\LocalAddress`.
79 Mandatory entries to run `dnscrypt-proxy` as a Windows service are:
80 - `ResolversList`: has to be set to the full path to the `dnscrypt-resolvers.csv` file.
81 - `ResolverName`: has to be set to the resolver name to be used. See
82 the `dnscrypt-resolvers.csv` file for a list of compatible public resolvers.
84 These entries are automatically created/updated when installing the service.
86 Plugins should be listed as full paths to .DLL files, optionally
87 followed by a coma and plugin-specific arguments.
89 The service should be restarted after the registry has been updated.