cbeuw / GoQuiet

A Shadowsocks obfuscation plugin utilising domain fronting to evade deep packet inspection

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ver 1.1.1 || ipv6 problem : "address already in use"

HoldOnBro opened this issue · comments

@cbeuw

[root@new_one ~]# ss-server -c /etc/shadowsocks-libev/config.json --plugin gq-server --plugin-opts "gqserver.json"
 2018-03-24 23:12:36 INFO: using tcp fast open
 2018-03-24 23:12:36 INFO: plugin "gq-server" enabled
 2018-03-24 23:12:36 INFO: initializing ciphers... aes-256-gcm
 2018-03-24 23:12:36 INFO: tcp server listening at 127.0.0.1:44443
 2018-03-24 23:12:36 INFO: running from root user
2018/03/24 23:12:36 Listening on 0.0.0.0:443
2018/03/24 23:12:36 Listening on [::0]:443
2018/03/24 23:12:36 address already in use
 2018-03-24 23:12:36 ERROR: plugin service exit unexpectedly

something is still wrong with the ipv6 support...

In linux, binding to [::] will also bind to 0.0.0.0 when sysctl net.ipv6.bindv6only is set to 0, which is the default.
In your case just delete 0.0.0.0 from shadowsocks' configuration and gq-server should still accept IPv4 traffic.

thank you!!!