From 010143137a6d071bc2f86ede4ddd04c0c0b4737f Mon Sep 17 00:00:00 2001 From: 4s3ti Date: Tue, 14 May 2019 10:10:25 +0100 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/FAQ.md b/FAQ.md index 8a93d02..71582c1 100644 --- a/FAQ.md +++ b/FAQ.md @@ -53,4 +53,15 @@ Example: 192.168.1.4 CatPC 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.