v2raya等deb包为24/7/9能获取到的版本,除非有重大bug,本仓库不主动更新,请自行寻找最新版包
如遇到v2ray等重大安全bug欢迎提pr
首先想办法将这个项目解压在autodl-tmp文件夹下,然后执行以下
使用的是 v2raya,文档点这里
sudo apt install /root/autodl-tmp/autodl_proxy/installer_debian_x64_2.2.5.6.deb
sudo apt install /root/autodl-tmp/autodl_proxy/v2ray_5.16.1_amd64.deb
sudo apt install /root/autodl-tmp/autodl_proxy/xray_1.8.16_amd64.deb
v2raya
开启端口转发在本机电脑打开:$ssh -L 2017:localhost:2017 user@remote_server$
开启代理:
export http_proxy="http://127.0.0.1:20171" && export https_proxy="http://127.0.0.1:20171"
关闭代理:
unset http_proxy && unset https_proxy
可以直接将 pon
和 poff
命令加入到 ~/.bashrc
中,这样您可以在每次启动新终端时通过输入 pon
或 poff
来启用或禁用代理。
以下是具体步骤:
vim ~/.bashrc
# Function to enable proxy
function pon() {
export http_proxy="http://127.0.0.1:20171"
export https_proxy="http://127.0.0.1:20171"
echo "Proxy enabled: $http_proxy"
# Check connection to Google
if curl -s --head --request GET http://www.google.com | grep "200 OK" > /dev/null; then
echo "Connection to Google successful"
else
echo "Failed to connect to Google"
fi
}
# Function to disable proxy
function poff() {
unset http_proxy
unset https_proxy
echo "Proxy disabled"
}
按 Esc
键,然后输入 :wq
并按 Enter
键保存并退出编辑器。
运行以下命令使更改立即生效:
source ~/.bashrc
现在,您可以在终端中使用 pon
和 poff
命令来启用或禁用代理:
启用代理:
pon
禁用代理:
poff
这样,您就可以方便地在终端中控制代理的开关,而无需每次都编辑脚本文件。