diff --git a/src/dashboard.py b/src/dashboard.py index 7080acd..a117d05 100644 --- a/src/dashboard.py +++ b/src/dashboard.py @@ -439,8 +439,6 @@ def gen_private_key(): with open('public_key.txt', encoding='utf-8') as file_object: public_key = file_object.readline().strip() data = {"private_key": private_key, "public_key": public_key, "preshared_key": preshare_key} - private.close() - public.close() return data @@ -896,7 +894,7 @@ def add_peer(config_name): public_key = data['public_key'] allowed_ips = data['allowed_ips'] endpoint_allowed_ip = data['endpoint_allowed_ip'] - DNS = data['DNS'] + dns_addresses = data['DNS'] enable_preshared_key = data["enable_preshared_key"] keys = get_conf_peer_key(config_name) if len(public_key) == 0 or len(dns_addresses) == 0 or len(allowed_ips) == 0 or len(endpoint_allowed_ip) == 0: @@ -1312,7 +1310,7 @@ Dashboard Tools Related # Get all IP for ping @app.route('/get_ping_ip', methods=['POST']) def get_ping_ip(): - config_name = request.form['config'] + config = request.form['config'] sem.acquire(timeout=1) db = TinyDB(os.path.join(db_path, config_name + ".json")) html = ""