安装v2rayA

添加公钥

wget -qO - https://apt.v2raya.org/key/public-key.asc | sudo tee /etc/apt/keyrings/v2raya.asc

添加 V2RayA 软件源

echo "deb [signed-by=/etc/apt/keyrings/v2raya.asc] https://apt.v2raya.org/ v2raya main" | sudo tee /etc/apt/sources.list.d/v2raya.list
sudo apt update

安装 V2RayA

sudo apt install v2raya v2ray

启动&配置

开机自启

启动 v2rayA

sudo systemctl start v2raya.service

设置开机自动启动

sudo systemctl enable v2raya.service

修改密码

sudo v2raya --reset-password

配置

访问v2rayA的地址http://localhost:2017/

安装&配置ProxyChain

安装

apt-get install -y proxychains4

配置

vim /etc/proxychains4.conf

往下拉到最后,改成socks5 127.0.0.1 20170

设置别名

如果觉得proxychains太长不好记,可以通过alias设置一个别名

vim ~/.profile

在最后空一行添加

alias proxy=proxychains4

刷新 profile

source ~/.profile

测试

不通过代理Ping Google

root@debian:~# ping google.com
PING google.com (59.24.3.174) 56(84) bytes of data.

通过代理Ping Google(proxy ping google.com)

root@debian:~# proxy ping 127.0.0.1
[proxychains] config file found: /etc/proxychains4.conf
[proxychains] preloading /usr/lib/x86_64-linux-gnu/libproxychains.so.4
[proxychains] DLL init: proxychains-ng 4.16
PING google.com (59.24.3.174) 56(84) bytes of data.
64 bytes from 59.24.3.174: icmp_seq=1 ttl=64 time=6.119 ms
最后修改:2024 年 05 月 07 日
如果觉得我的文章对你有用,请随意赞赏