Updated FAQ (markdown)

4s3ti 2019-05-14 10:10:25 +01:00
parent dee66cba95
commit 010143137a

11
FAQ.md

@ -53,4 +53,15 @@ Example:
192.168.1.4 CatPC 192.168.1.4 CatPC
192.168.1.5 DogPC 192.168.1.5 DogPC
``` ```
## How to kick a connected client
from Issue #577
1. Stop the server with `sudo systemctl openvpn stop`
2. Edit the server config with `sudo nano /etc/openvpn/server.conf`
3. Add this line`management 127.0.0.1 PORT` (replace PORT with a port number, like 1234)
3. Save the file and exit
5. Start the server with `sudo systemctl openvpn start`
To connect to the management interface, use `nc 127.0.0.1 PORT`, then disconnect a client with `kill CLIENTNAME`, use CTRL-C to exit.