Skip to content

Commit

Permalink
Release : Version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
baguskokow committed Oct 7, 2023
1 parent 86fe9d0 commit beafd4c
Show file tree
Hide file tree
Showing 9 changed files with 80 additions and 450 deletions.
1 change: 0 additions & 1 deletion .gitigonore

This file was deleted.

36 changes: 36 additions & 0 deletions README.md
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.
127 changes: 0 additions & 127 deletions examples/client.conf

This file was deleted.

4 changes: 2 additions & 2 deletions examples/config.txt
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
Loading

0 comments on commit beafd4c

Please sign in to comment.