kali安装clash

kali安装clash

Brathon

直接解决掉kali科学上网的全部

下载clash

clash:https://github.com/Dreamacro/clash/releases

下载后安装并修改权限

1
chmod +x clash

先启动一下clash,让clash自动下载和生成必需文件

配置文件:

1
cd /root/.config/clash

删除配置文件:

1
rm -rf config.yaml

下载配置文件:

1
wget  [链接]

从机场下载yaml文件

并放在/root/.config/clash目录下
clash的配置文件在~/.config/clash/config.yaml

修改外部控制设置(external-controller)地址为:0.0.0.0:9890,使内外网都可以访问这个地址

clash图像化配置地址:http://clash.razord.top/

设置系统代理

1
vim /etc/environment

填写:

1
2
3
export http_proxy="http://127.0.0.1:7890"
export https_proxy="http://127.0.0.1:7890"
export no_proxy="localhost, 127.0.0.1"

修改sudo文件

1
vim /etc/sudoers

在文件中填入

1
Defaults env_keep+="http_proxy https_proxy no_proxy"

重启

设置开机启动

将配置文件移动到etc

1
mv ~/.config/clash /etc

添加启动信息

1
vim /etc/systemd/system/clash.service

填入

1
2
3
4
5
6
7
8
9
10
11
[Unit]
Description=clash daemon

[Service]
Type=simple
User=root
ExecStart=/opt/clash/clash -d /etc/clash/
Restart=on-failure

[Install]
WantedBy=multi-user.target

这里要注意配置文件的路径
即第7行的内容,clash -d 是指定配置文件的路径

重新加载systemctl daemon

1
systemctl daemon-reload

启动clash

1
systemctl start clash.service

Bash

设置开机启动clash

1
systemctl enable clash.service

重启clash

1
systemctl restart clash.service

查看clash运行状态

1
systemctl status clash.service

Bash

定期更新订阅

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash

# 设置clash路径
clash_path="/opt/clash"

# 停止clash
systemctl stop clash.service

# 取消代理
unset https_proxy

# 如果配置文件存在,备份后下载,如果不存在,直接下载
if [ -e $clash_path/config.yaml ]; then
mv $clash_path/config.yaml $clash_path/configbackup.yaml
wget -O $clash_path/config.yaml "[你的订阅链接]"
else
wget -O $clash_path/config.yaml "[你的订阅链接]"
fi

# 重启clash
systemctl restart clash.service

# 重设代理
export https_proxy="http://127.0.0.1:7890"

设置定时任务:

1
crontab -e

填写:

1
30 4 1,15 * * sh [脚本目录]/[脚本名称]

重启crontab

1
systemctl restart cron.service

搞定!

  • 标题: kali安装clash
  • 作者: Brathon
  • 创建于: 2023-04-23 15:58:34
  • 更新于: 2023-09-23 02:56:51
  • 链接: https://fiddling.blog/2023/04/23/kali安装clash/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
推荐阅读
破解,再给新下载的burp加个快捷方式 破解,再给新下载的burp加个快捷方式 简单记录pixel 3XL刷KaliNetHunter的过程 简单记录pixel 3XL刷KaliNetHunter的过程 红队的夜行衣——反反制的那些事 红队的夜行衣——反反制的那些事
 评论