V2rayU icon indicating copy to clipboard operation
V2rayU copied to clipboard

建议增加socks/http共享的用户密码验证和多端口功能

Open fx-k opened this issue 1 year ago • 0 comments

如题,实现类似v2rayn的效果:支持127.0.0.1的socks/http共享+局域网0.0.0.0的带验证功能的socks/http共享。

或支持inbounds手动配置也可以。 已经尝试在config配置文件的inbounds手动增加以下信息,但重启v2ray服务,配置仍然被覆盖。

    {
      "tag": "socks2",
      "port": 10810,
      "listen": "0.0.0.0",
      "protocol": "socks",
      "settings": {
        "auth": "password",
        "udp": true,
        "allowTransparent": false,
        "accounts": [
          {
            "user": "123",
            "pass": "1233"
          }
        ]
      }
    },

fx-k avatar Aug 13 '24 12:08 fx-k