script-server
script-server copied to clipboard
Connect with IPV6 address
Is connecting with IPV6 address possible? I have tried in a browser something like:
but is not working, The IPV6 address used is fine with ssh also from remote location.
It seems that adding
"address": "::"
to /opt/script-server/conf/conf.json is solving the problem. How to accept both IPV4 and IPV6?
Hi @olm52, could you try editing source code src/model/server_conf.py and change this line:
address = "0.0.0.0"
to
address = None
And remove "address" configuration from conf.json file
Just done and is working both local and remote. Thanks