From dc363bbd381240da28a522909f26523e4a0642e1 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Thu, 20 Oct 2016 09:56:27 +0200 Subject: [PATCH] Disable binding to an IPV6 Ref https://github.com/GNS3/gns3-server/issues/725 --- gns3server/run.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gns3server/run.py b/gns3server/run.py index e1a59446..a3ce89d6 100644 --- a/gns3server/run.py +++ b/gns3server/run.py @@ -252,6 +252,11 @@ def run(): CrashReport.instance() host = server_config["host"] + + # https://github.com/GNS3/gns3-server/issues/725 + if ":" in host: + log.critical("Binding server to an IPV6 is not supported") + return port = int(server_config["port"]) server = WebServer.instance(host, port)