mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-22 15:20:09 +01:00
v20210403.2
This commit is contained in:
parent
07678300da
commit
d5497843eb
54
README.md
54
README.md
@ -1,21 +1,51 @@
|
|||||||
# Wireguard Dashboard
|
# Wireguard Dashboard
|
||||||
Welcome to contribute or provide suggestions ;)
|
|
||||||
## Intro
|
|
||||||
Monitoring Wireguard is not convinient, need to login into server and type `wg show`. That's why this platform is being created, to view all configurations in a more straight forward way.
|
Monitoring Wireguard is not convinient, need to login into server and type `wg show`. That's why this platform is being created, to view all configurations in a more straight forward way.
|
||||||
## Installation
|
|
||||||
**Requirement:**
|
[TOC]
|
||||||
|
|
||||||
|
## 💡Features
|
||||||
|
|
||||||
|
- Add peers in configuration
|
||||||
|
- Manage peer names
|
||||||
|
- Delete peers
|
||||||
|
- And many more coming up! Welcome to contribute to this project!
|
||||||
|
|
||||||
|
## 📝Requirement
|
||||||
|
|
||||||
- Ubuntu 18.04.1 LTS, other OS might work, but haven't test yet.
|
- Ubuntu 18.04.1 LTS, other OS might work, but haven't test yet.
|
||||||
- Wireguard
|
- **Wireguard**
|
||||||
- Configuration files under **/etc/wireguard**
|
- Configuration files under **/etc/wireguard**
|
||||||
- Python 3.7
|
- Python 3.7
|
||||||
- Flask
|
|
||||||
|
|
||||||
**Install:**
|
## 🛠Install
|
||||||
1. `git clone https://github.com/donaldzou/Wireguard-Dashboard.git`
|
|
||||||
2. `cd Wireguard-Dashboard\src`
|
|
||||||
3. `python3 dashboard.py`
|
|
||||||
4. Access your server! e.g (http://your_server_ip:10086)
|
|
||||||
|
|
||||||
## Example
|
**1. Install Python Dependencies**
|
||||||
|
|
||||||
|
```
|
||||||
|
$ python3 -m pip install flask tinydb
|
||||||
|
```
|
||||||
|
|
||||||
|
**2. Install Wireguard Dashboard**
|
||||||
|
|
||||||
|
```
|
||||||
|
$ git clone https://github.com/donaldzou/Wireguard-Dashboard.git
|
||||||
|
$ cd Wireguard-Dashboard/src
|
||||||
|
$ python3 dashboard.py
|
||||||
|
```
|
||||||
|
|
||||||
|
Access your server with port `10086` ! e.g (http://your_server_ip:10086)
|
||||||
|
|
||||||
|
**3. Install with Production Mode (Optional)**
|
||||||
|
|
||||||
|
```
|
||||||
|
$ cd Wireguard-Dashboard/src
|
||||||
|
$ export FLASK_APP=dashboard.py
|
||||||
|
$ export FLASK_RUN_HOST=0.0.0.0
|
||||||
|
$ export FLASK_ENV=development
|
||||||
|
$ export FLASK_DEBUG=0
|
||||||
|
$ flask run
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🔍Example
|
||||||
![Index Image](https://github.com/donaldzou/Wireguard-Dashboard/raw/main/src/static/index.png)
|
![Index Image](https://github.com/donaldzou/Wireguard-Dashboard/raw/main/src/static/index.png)
|
||||||
![Conf Image](https://github.com/donaldzou/Wireguard-Dashboard/raw/main/src/static/configuration.png)
|
![Conf Image](https://github.com/donaldzou/Wireguard-Dashboard/raw/main/src/static/configuration.png)
|
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Flask==1.1.2
|
||||||
|
tinydb==4.3.0
|
@ -2,11 +2,7 @@ import os
|
|||||||
from flask import Flask, request, render_template, redirect, url_for
|
from flask import Flask, request, render_template, redirect, url_for
|
||||||
import subprocess
|
import subprocess
|
||||||
from datetime import datetime, date, time, timedelta
|
from datetime import datetime, date, time, timedelta
|
||||||
import sqlite3
|
|
||||||
import time
|
|
||||||
import requests
|
|
||||||
from operator import itemgetter
|
from operator import itemgetter
|
||||||
import collections
|
|
||||||
from tinydb import TinyDB, Query
|
from tinydb import TinyDB, Query
|
||||||
conf_location = "/etc/wireguard"
|
conf_location = "/etc/wireguard"
|
||||||
app = Flask("Wireguard Dashboard")
|
app = Flask("Wireguard Dashboard")
|
||||||
@ -14,9 +10,6 @@ app.config['TEMPLATES_AUTO_RELOAD'] = True
|
|||||||
css = ""
|
css = ""
|
||||||
conf_data = {}
|
conf_data = {}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def get_conf_peer_key(config_name):
|
def get_conf_peer_key(config_name):
|
||||||
keys = []
|
keys = []
|
||||||
try: peer_key = subprocess.check_output("wg show "+config_name+" peers", shell=True)
|
try: peer_key = subprocess.check_output("wg show "+config_name+" peers", shell=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user