目 录CONTENT

文章目录

debain使用系统代理+界面管理

兜兜管理员
2024-09-27 / 0 评论 / 0 点赞 / 84 阅读 / 0 字
温馨提示:
本文最后更新于2025-01-24,若内容或图片失效,请留言反馈。 部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

linux下部署Clash+dashboard

安装

先在用户目录建立clash的文件夹,

mkdir -p /root/.config/clash && cd /root/.config/clash

clash的一个主要原因就是因为支持订阅, 比较方便,
前提是你支持clash订阅
所以我们先把机场给我们的config.yaml给下载下来, 比如你可以使用wget

wget "机场给你的订阅链接https://xxx.xxx.xxx&flag=clash" -O config.yaml
# 如果下载失败或文件内容,可在订阅后面新增&flag=clash

然后我们去git上把clash二进制文件和yacd dashboard给下载下来

wget https://github.com/Dreamacro/clash/releases/download/v1.11.12/clash-linux-amd64-v1.11.12.gz
wget https://github.com/haishanh/yacd/releases/download/v0.3.7/yacd.tar.xz
# 如果下载失败或链接丢失,可用我提供的链接
clash-linux-amd64:https://vip.123pan.cn/1820462490/11799188
yacd.tar.xz:https://vip.123pan.cn/1820462490/11799186

因为我是debain系统, 所以这里clash系统架构我们选择linux-amd64`

将这两个文件进行解压

gzip -d clash-linux-amd64-v1.11.12.gz
tar -zxvf yacd.tar.xz

将下载下来的clash重命名方便操作, 并赋予可执行权限

mv clash-linux-amd64-v1.11.12 clash
chmod +x clash

将下来下来的yacd更名为dashboard

mv public dashboard

然后我们对config.yaml进行配置使其加载dashboard

port: 7890
socks-port: 7891
allow-lan: true
mode: Rule
log-level: info
secert: 123456 // 增加这一行, 如果你希望你的clash
web要密码访问可以在这块配置密码, 如果不需要直接注释掉即可
external-ui: dashboard // 增加这一行
external-controller: 0.0.0.0:9090

接下来验证你的操作是否有效可以执行

./clash -d .

root@VM-8-11-debian:~/.config/clash# ./clash -d .
23:59:26 INF [Config] initial compatible provider name=🍃 应用净化
23:59:26 INF [Config] initial compatible provider name=📺 巴哈姆特
23:59:26 INF [Config] initial compatible provider name=🌍 国外媒体
23:59:26 INF [Config] initial compatible provider name=更新订阅
23:59:26 INF [Config] initial compatible provider name=🚀 手动切换
23:59:26 INF [Config] initial compatible provider name=🚀 节点选择
23:59:26 INF [Config] initial compatible provider name=🎮 游戏平台
23:59:26 INF [Config] initial compatible provider name=📢 谷歌FCM
23:59:26 INF [Config] initial compatible provider name=🎥 奈飞视频
23:59:26 INF [Config] initial compatible provider name=📹 油管视频
23:59:26 INF [Config] initial compatible provider name=🎥 奈飞节点
23:59:26 INF [Config] initial compatible provider name=🍎 苹果服务
23:59:26 INF [Config] initial compatible provider name=🛑 广告拦截
23:59:26 INF [Config] initial compatible provider name=🎯 全球直连
23:59:26 INF [Config] initial compatible provider name=🌏 国内媒体
23:59:26 INF [Config] initial compatible provider name=🐟 漏网之鱼
23:59:26 INF [Config] initial compatible provider name=🎶 网易音乐
23:59:26 INF [Config] initial compatible provider name=📺 哔哩哔哩
23:59:26 INF [Config] initial compatible provider name=♻️ 自动选择
23:59:26 INF [Config] initial compatible provider name=💬 OpenAi
23:59:26 INF [Config] initial compatible provider name=📲 xx消息
23:59:26 INF [API] listening addr=[::]:9090
23:59:26 INF inbound create success inbound=mixed addr=:7890 network=tcp
23:59:26 INF inbound create success inbound=mixed addr=:7890 network=udp

接下来把clash, 移到/usr/local/bin #后续步骤可不进行操作

mv clash /usr/local/bin

然后配置service文件, 方便我们管理

vim /etc/systemd/system/clash.service
[Unit]
Description=clash service
After=network.target

[Service]
Type=simple
User=root
ExecStart=/usr/local/bin/clash/clash
#这里要注意,是clash文件夹内的clash文件
Restart=on-failure # or always, on-abort, etc

[Install]
WantedBy=multi-user.target

然后使其生效

systemctl daemon-reload
systemctl enable clash
systemctl start clash

这时候你在status就应该是成功部署上了

systemctl statu clash

linux下连接的时候, 你可以直接可以在终端

export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890

当然, 如果你觉得每次都输入太麻烦, 也有个好的办法,你可以将这个脚本保存到你的主目录下,或任何方便的位置,例如 ~/proxy.sh

# Proxy auto start
export https_proxy=http://127.0.0.1:7890
export http_proxy=http://127.0.0.1:7890
export all_proxy=socks5://127.0.0.1:7890
# Open proxy
on() {
#    export https_proxy=http://127.0.0.1:1087
#    export http_proxy=http://127.0.0.1:1087
#    export all_proxy=socks5://127.0.0.1:1086
    export https_proxy=http://127.0.0.1:7890
    export http_proxy=http://127.0.0.1:7890
    export all_proxy=socks5://127.0.0.1:7890
    echo "HTTP/HTTPS Proxy on"
}

# Close proxy
off() {
    unset http_proxy
    unset https_proxy
    unset all_proxy
    echo "HTTP/HTTPS Proxy off"
}

给执行权限,并加载脚本使其生效

chmod +x ~/proxy.sh
source ~/.bashrc
或者使用简写
. ~/proxy.sh

这样我们每次想让他走代理的时候直接

使用:on
不使用:off

或者你也可以直接用proxychains-ng, 安装也很简单

apt install proxychains-ng

然后配置

echo "socks5 	127.0.0.1 7891" > /etc/proxychains4.conf //
也许你的配置文件不是这个, 看情况而变

验证

curl -I https://www.google.com
或
wget --spider https://www.google.com

0

评论区