mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-03-04 02:14:40 +01:00
Nits
parent
81736df6ac
commit
f799aa7533
2 changed files with 7 additions and 4 deletions
|
@ -6,7 +6,7 @@ The easiest way to use `dnscrypt-proxy` on Windows is via [Simple DNSCrypt](http
|
|||
|
||||
## Overview
|
||||
|
||||
### Step 1: Get a root shell
|
||||
### Step 1: Get a Powershell prompt
|
||||
|
||||
Launch Powershell with Administrative privileges.
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ Type the following command:
|
|||
ss -lp 'sport = :domain'
|
||||
```
|
||||
|
||||
THis may ouptut something similar to:
|
||||
This may ouptut something similar to:
|
||||
|
||||
```text
|
||||
tcp LISTEN 0 128 127.0.0.1:domain *:* users:(("unbound",pid=28146,fd=6))
|
||||
|
@ -45,9 +45,12 @@ tcp LISTEN 0 128 127.0.0.1:domain *:*
|
|||
|
||||
Uninstall the corresponding package (in the above example: `unbound`), with a distribution-specific command such as `apt-get uninstall` or `pacman -R`, then check again with `ss -lp 'sport = :domain'`: there shouldn't be anything listening to the `domain` port any more.
|
||||
|
||||
You may also see the port being served by `systemd-resolved`. That one cannot be uninstalled, but can be disabled with the following command:
|
||||
You may also see the port being served by `systemd-resolve`. That one cannot be uninstalled, but can be disabled with the following commands:
|
||||
|
||||
...
|
||||
```sh
|
||||
systemctl stop systemd-resolved
|
||||
systemctl disable systemd-resolved
|
||||
```
|
||||
|
||||
Check that nothing is listening to port 53 any more:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue