Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mcfly722 committed Sep 15, 2024
1 parent 3632cb8 commit b84ce9b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,24 @@ Cloak and Wireguard configs locations:
| Location | File |
| :------- | :--- |
| Local Gateway | /etc/cloak/cloak-client.json |
| External VM | /etc/cloak/cloak-server.json |
| Local Gateway | /etc/wireguard/wg0.conf |
| External VM | /etc/cloak/cloak-server.json |
| External VM | /etc/wireguard/wg0.conf |
<br>
### view logs:
### view logs

```
# view journals
sudo journalctl -u cloak-server.service -f
sudo journalctl -u cloak-client.service -f
# for internal gateway
ss -nltu 'sport = 1984'
sudo tcpdump -i any -nn src host <YOUR EXTERNAL VM IP> and port 443
# for remote VM
ss -nltu 'sport = 443'
ss -nltu 'sport = 51820'
sudo tcpdump -nei ens3 tcp port 443
sudo tcpdump -nei ens3 udp port 51820
```

0 comments on commit b84ce9b

Please sign in to comment.