shadowsock配置

二维码生成规则:

https://shadowsocks.org/en/config/quick-guide.html

以下是软件的配置json文件

{
      "server": "104.192.83.34",
      "server_port": 8386,
      "password": "Sin1234qwer",
      "method": "aes-256-cfb",
      "plugin": "",
      "plugin_opts": "",
      "plugin_args": "",
      "remarks": "",
      "timeout": 5
    }

生成二维码的规则:

适用于Android / iOS的Shadowsocks也接受BASE64编码的URI格式配置:

    ss://BASE64-ENCODED-STRING-WITHOUT-PADDING#TAG
普通URI应该是:

    ss://method:password@hostname:port
base64_encode('aes-256-cfb:[email protected]:8386');然后在前面加上 ss://就行了

猜你喜欢

转载自blog.csdn.net/lorraine_40t/article/details/81482839