mirror of
https://github.com/trailofbits/algo.git
synced 2025-08-02 10:53:01 +02:00
Add road warrior instructions to FAQ
This commit is contained in:
parent
36ab7a7c40
commit
21433686ab
1 changed files with 5 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
* [Wasn't IPSEC backdoored by the US government?](#wasnt-ipsec-backdoored-by-the-us-government)
|
* [Wasn't IPSEC backdoored by the US government?](#wasnt-ipsec-backdoored-by-the-us-government)
|
||||||
* [What inbound ports are used?](#what-inbound-ports-are-used)
|
* [What inbound ports are used?](#what-inbound-ports-are-used)
|
||||||
* [How do I monitor user activity?](#how-do-i-monitor-user-activity)
|
* [How do I monitor user activity?](#how-do-i-monitor-user-activity)
|
||||||
|
* [How do I reach another connected client?](#how-do-i-reach-another-connected-client)
|
||||||
|
|
||||||
## Has Algo been audited?
|
## Has Algo been audited?
|
||||||
|
|
||||||
|
@ -85,3 +86,7 @@ You should only need 22/TCP, 500/UDP, 4500/UDP, and 51820/UDP opened on any fire
|
||||||
## How do I monitor user activity?
|
## How do I monitor user activity?
|
||||||
|
|
||||||
Your Algo server will track IPsec client logins by default in `/var/log/syslog`. This will give you client names, date/time of connection and reconnection, and what IP addresses they're connecting from. This can be disabled entirely by setting `strongswan_log_level` to `-1` in `config.cfg`. WireGuard doesn't save any logs, but entering `sudo wg` on the server will give you the last endpoint and contact time of each client. Disabling this is [paradoxically difficult](https://git.zx2c4.com/blind-operator-mode/about/). There isn't any out-of-the-box way to monitor actual user _activity_ (e.g. websites browsed, etc.)
|
Your Algo server will track IPsec client logins by default in `/var/log/syslog`. This will give you client names, date/time of connection and reconnection, and what IP addresses they're connecting from. This can be disabled entirely by setting `strongswan_log_level` to `-1` in `config.cfg`. WireGuard doesn't save any logs, but entering `sudo wg` on the server will give you the last endpoint and contact time of each client. Disabling this is [paradoxically difficult](https://git.zx2c4.com/blind-operator-mode/about/). There isn't any out-of-the-box way to monitor actual user _activity_ (e.g. websites browsed, etc.)
|
||||||
|
|
||||||
|
## How do I reach another connected client?
|
||||||
|
|
||||||
|
By default, your Algo server doesn't allow connections between connected clients. This can be changed at the time of deployment by enabling the `BetweenClients_DROP` flag in `config.cfg`. See the ["Road Warrior" instructions](/docs/deploy-to-ubuntu.md#road-warrior-setup) for more details.
|
||||||
|
|
Loading…
Add table
Reference in a new issue