-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86fe9d0
commit beafd4c
Showing
9 changed files
with
80 additions
and
450 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# marimoVPN | ||
|
||
marimoVPN is a simple automation tool for setting up an OpenVPN Server. It's Easy to setup OpenVPN Server using marimoVPN because the tool is faster. Your VPN Server will be up and running in just a few seconds. | ||
|
||
## Download marimoVPN | ||
- Clone this Repository <br> | ||
```git clone https://github.com/baguskokow/marimoVPN.git``` | ||
|
||
## Using marimoVPN | ||
- Ensure the OpenSSL and OpenVPN packages are installed in your server | ||
- Copy the "config.txt" file from the "examples" directory <br> | ||
```cp examples/config.txt .``` | ||
- Define your VPN server configuration. See the example below <br> | ||
``` | ||
port = 1194 | ||
protocol = udp | ||
ip server = 10.6.6.25 | ||
subnet tunnel = 192.168.10.0 255.255.255.0 | ||
``` | ||
- Running <br> | ||
```sudo bash marimovpn.sh``` <br> | ||
<b>Note</b> : You must use a privileged user (root user) <br><br> | ||
![running](./images/running.png) | ||
|
||
- Verify the OpenVPN service<br> | ||
```sudo systemctl status openvpn@server```<br><br> | ||
![verify-server](./images/verify-server.png) | ||
|
||
## Client Testing | ||
![client-testing](./images/client-test.png) | ||
|
||
## Supported Linux Distros | ||
- Ubuntu | ||
|
||
## Troubleshoting | ||
If you get an error during installation., you can check the log at /var/log/marimo.log. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
port = 1194 | ||
protocol = udp | ||
ip server = 172.16.10.50 | ||
subnet tunnel = 10.20.20.0 255.255.255.0 | ||
ip server = 10.6.6.25 | ||
subnet tunnel = 192.168.10.0 255.255.255.0 |
Oops, something went wrong.