script-server icon indicating copy to clipboard operation
script-server copied to clipboard

Connect with IPV6 address

Open olm52 opened this issue 2 years ago • 3 comments

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.

olm52 avatar Aug 27 '23 07:08 olm52

It seems that adding

"address": "::"

to /opt/script-server/conf/conf.json is solving the problem. How to accept both IPV4 and IPV6?

olm52 avatar Aug 27 '23 08:08 olm52

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

bugy avatar Aug 27 '23 15:08 bugy

Just done and is working both local and remote. Thanks

olm52 avatar Aug 27 '23 16:08 olm52