From fd3e7c3093dbc863f1ae5a5614833c7df4935fa3 Mon Sep 17 00:00:00 2001 From: Simonmicro Date: Thu, 9 Jul 2020 09:05:46 +0200 Subject: [PATCH] Corrected default start params ...possible fix for #74 --- py-kms/pykms_Server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-kms/pykms_Server.py b/py-kms/pykms_Server.py index 694bdbd..47f2427 100755 --- a/py-kms/pykms_Server.py +++ b/py-kms/pykms_Server.py @@ -156,7 +156,7 @@ loggersrv = logging.getLogger('logsrv') # 'help' string - 'default' value - 'dest' string. srv_options = { - 'ip' : {'help' : 'The IP address to listen on. The default is \"0.0.0.0\" (all interfaces).', 'def' : "0.0.0.0", 'des' : "ip"}, + 'ip' : {'help' : 'The IPv6 address to listen on. The default is \"::\" (all interfaces).', 'def' : "::", 'des' : "ip"}, 'port' : {'help' : 'The network port to listen on. The default is \"1688\".', 'def' : 1688, 'des' : "port"}, 'epid' : {'help' : 'Use this option to manually specify an ePID to use. If no ePID is specified, a random ePID will be auto generated.', 'def' : None, 'des' : "epid"},