首页
随机
最近更改
特殊页面
社群首页
参数设置
关于WHY42
免责声明
WHY42
搜索
用户菜单
登录
欢迎来到Riguz的小站!这是一个私人wiki,用来记录一些我的笔记。
查看“︁V2Ray global proxy”︁的源代码
←
V2Ray global proxy
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
= Install V2Ray (Server side) = == Install == https://github.com/v2fly/fhs-install-v2ray <syntaxhighlight lang="bash"> # switch to root user and then install $ sudo su - $ bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh) $ systemctl enable v2ray $ systemctl start v2ray $ bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-dat-release.sh) $ v2ray version V2Ray 5.22.0 (V2Fly, a community-driven edition of V2Ray.) Custom (go1.23.2 linux/amd64) A unified platform for anti-censorship. </syntaxhighlight> == Basic Config == <syntaxhighlight lang="bash"> $ systemctl status v2ray ● v2ray.service - V2Ray Service Loaded: loaded (/etc/systemd/system/v2ray.service; enabled; preset: enable> Drop-In: /etc/systemd/system/v2ray.service.d └─10-donot_touch_single_conf.conf Active: active (running) since Fri 2025-04-18 14:11:22 UTC; 5 months 17 da> Docs: https://www.v2fly.org/ Main PID: 719 (v2ray) Tasks: 14 (limit: 9441) Memory: 35.8M (peak: 103.4M) CPU: 8h 56min 41.528s CGroup: /system.slice/v2ray.service └─719 /usr/local/bin/v2ray run -config /usr/local/etc/v2ray/config> Warning: some journal files were not opened due to insufficient permissions. </syntaxhighlight> /usr/local/etc/v2ray/config.json <syntaxhighlight lang="json"> { "inbounds": [{ "port": 10086, "protocol": "vmess", "settings": { "clients": [{ "id": "b831381d-6324-4d53-ad4f-8cda48b30811" }] } }], "outbounds": [{ "protocol": "freedom", "settings": {} }] } </syntaxhighlight> restart v2ray server: <syntaxhighlight lang="cpp"> $ sudo systemctl restart v2ray </syntaxhighlight> == V2RayU Client == Configure -> add v2ray server, input ip/port and client id. Git ssh over socks proxy: <syntaxhighlight lang="bash"> # vim ~/.ssh/config Host github.com HostName github.com User git ProxyCommand nc -v -x 127.0.0.1:1080 %h %p </syntaxhighlight> [[Category:Linux/Unix]]
返回
V2Ray global proxy
。