From 203895f59037a471048c70144ac676941883de52 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 6 Mar 2021 20:10:38 +0100 Subject: [PATCH] fixed wrong ip address it also had the netmaks, but it should not be inserted --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 24fbde9..7b28215 100644 --- a/main.py +++ b/main.py @@ -113,7 +113,7 @@ def post_gateways(): ipid = '{:x}{:x}'.format(userid, subid) - address = '2001:470:c844::' + ipid + '0/64' + address = '2001:470:c844::' + ipid + '0' network = '2001:470:c844:' + ipid + '0::/60' staticclient = render_template('staticclient', address=address, network=network)