clash/README.md

198 lines
6.2 KiB
Markdown
Raw Normal View History

2018-06-22 16:44:28 +00:00
<h1 align="center">
<img src="https://github.com/Dreamacro/clash/raw/master/docs/logo.png" alt="Clash" width="200">
2019-02-11 07:55:17 +00:00
<br>Clash<br>
2018-06-22 16:44:28 +00:00
</h1>
<h4 align="center">A rule-based tunnel in Go.</h4>
2018-06-22 16:44:28 +00:00
<p align="center">
2019-12-08 04:34:05 +00:00
<a href="https://github.com/Dreamacro/clash/actions">
<img src="https://img.shields.io/github/workflow/status/Dreamacro/clash/Go?style=flat-square" alt="Github Actions">
</a>
2018-06-22 16:44:28 +00:00
<a href="https://goreportcard.com/report/github.com/Dreamacro/clash">
2019-02-11 07:55:17 +00:00
<img src="https://goreportcard.com/badge/github.com/Dreamacro/clash?style=flat-square">
2018-06-22 16:44:28 +00:00
</a>
2021-09-20 09:22:40 +00:00
<img src="https://img.shields.io/github/go-mod/go-version/Dreamacro/clash?style=flat-square">
2018-06-22 16:44:28 +00:00
<a href="https://github.com/Dreamacro/clash/releases">
<img src="https://img.shields.io/github/release/Dreamacro/clash/all.svg?style=flat-square">
</a>
2021-09-20 09:22:40 +00:00
<a href="https://github.com/Dreamacro/clash/releases/tag/premium">
<img src="https://img.shields.io/badge/release-Premium-00b4f0?style=flat-square">
</a>
2018-06-22 16:44:28 +00:00
</p>
2018-06-10 14:50:03 +00:00
## Features
- Local HTTP/HTTPS/SOCKS server with authentication support
- VMess, Shadowsocks, Trojan, Snell protocol support for remote connections
- Built-in DNS server that aims to minimize DNS pollution attack impact, supports DoH/DoT upstream and fake IP.
2021-09-20 09:22:40 +00:00
- Rules based off domains, GEOIP, IPCIDR or Process to forward packets to different nodes
- Remote groups allow users to implement powerful rules. Supports automatic fallback, load balancing or auto select node based off latency
- Remote providers, allowing users to get node lists remotely instead of hardcoding in config
- Netfilter TCP redirecting. Deploy Clash on your Internet gateway with `iptables`.
- Comprehensive HTTP RESTful API controller
2018-08-14 10:06:56 +00:00
## Getting Started
Documentations are now moved to [GitHub Wiki](https://github.com/Dreamacro/clash/wiki).
## Advanced usage for this branch
### DNS configuration
Support resolve ip with a proxy tunnel.
Support `geosite` with `fallback-filter`.
```yaml
dns:
enable: true
use-hosts: true
ipv6: false
enhanced-mode: fake-ip
fake-ip-range: 198.18.0.1/16
listen: 127.0.0.1:6868
default-nameserver:
- 119.29.29.29
- 114.114.114.114
nameserver:
- https://doh.pub/dns-query
- tls://223.5.5.5:853
fallback:
- 'https://1.0.0.1/dns-query#Proxy' # append the proxy adapter name to the end of DNS URL with '#' prefix.
- 'tls://8.8.4.4:853#Proxy'
fallback-filter:
geoip: false
geosite:
2022-03-08 21:08:35 +00:00
- gfw # `geosite` filter only use fallback server to resolve ip, prevent DNS leaks to untrusted DNS providers.
domain:
- +.example.com
ipcidr:
- 0.0.0.0/32
```
2021-07-01 14:49:29 +00:00
### TUN configuration
2021-09-23 20:37:04 +00:00
Supports macOS, Linux and Windows.
2021-07-01 14:49:29 +00:00
2022-03-08 21:08:35 +00:00
On Windows, you should download the [Wintun](https://www.wintun.net) driver and copy `wintun.dll` into the system32 directory.
2021-07-01 14:49:29 +00:00
```yaml
# Enable the TUN listener
tun:
enable: true
2022-03-08 21:08:35 +00:00
stack: gvisor # System or gVisor
# device: tun://utun8 # or fd://xxx, it's optional
dns-hijack:
- 0.0.0.0:53 # hijack all
2021-07-01 14:49:29 +00:00
auto-route: true # auto set global route
```
### Rules configuration
2021-07-08 18:19:43 +00:00
- Support rule `GEOSITE`.
- Support `multiport` condition for rule `SRC-PORT` and `DST-PORT`.
- Support `network` condition for all rules.
2022-02-23 06:01:53 +00:00
- Support `process` condition for all rules.
2021-09-23 20:37:04 +00:00
- Support source IPCIDR condition for all rules, just append to the end.
2021-07-01 14:49:29 +00:00
The `GEOSITE` databases via https://github.com/Loyalsoldier/v2ray-rules-dat.
2021-07-01 14:49:29 +00:00
```yaml
rules:
2021-09-23 20:37:04 +00:00
# network condition for all rules
2022-02-23 06:01:53 +00:00
- DOMAIN-SUFFIX,example.com,DIRECT,tcp
- DOMAIN-SUFFIX,example.com,REJECT,udp
2022-03-05 10:04:04 +00:00
# process condition for all rules (add 'P:' prefix)
2022-02-23 06:01:53 +00:00
- DOMAIN-SUFFIX,example.com,REJECT,P:Google Chrome Helper
2021-07-08 18:19:43 +00:00
# multiport condition for rules SRC-PORT and DST-PORT
- DST-PORT,123/136/137-139,DIRECT,udp
2021-07-01 14:49:29 +00:00
# rule GEOSITE
- GEOSITE,category-ads-all,REJECT
- GEOSITE,icloud@cn,DIRECT
- GEOSITE,apple@cn,DIRECT
2021-07-06 15:55:34 +00:00
- GEOSITE,apple-cn,DIRECT
2021-07-01 14:49:29 +00:00
- GEOSITE,microsoft@cn,DIRECT
- GEOSITE,facebook,PROXY
2021-07-01 14:49:29 +00:00
- GEOSITE,youtube,PROXY
- GEOSITE,geolocation-cn,DIRECT
2022-03-05 10:04:04 +00:00
- GEOSITE,geolocation-!cn,PROXY
2021-07-01 14:49:29 +00:00
2022-03-05 10:04:04 +00:00
# source IPCIDR condition for all rules in gateway proxy
#- GEOSITE,geolocation-!cn,REJECT,192.168.1.88/32,192.168.1.99/32
- GEOIP,telegram,PROXY,no-resolve
2022-03-08 21:08:35 +00:00
- GEOIP,lan,DIRECT,no-resolve
2021-07-01 14:49:29 +00:00
- GEOIP,cn,DIRECT
- MATCH,PROXY
```
2021-07-06 15:55:34 +00:00
### Proxies configuration
2021-07-08 18:19:43 +00:00
Support outbound transport protocol `VLESS`.
The XTLS only support TCP transport by the XRAY-CORE.
2021-07-06 15:55:34 +00:00
```yaml
proxies:
2021-07-08 18:19:43 +00:00
- name: "vless-tcp"
2021-07-06 15:55:34 +00:00
type: vless
server: server
port: 443
uuid: uuid
2021-07-08 18:19:43 +00:00
network: tcp
servername: example.com
2021-07-08 18:19:43 +00:00
# flow: xtls-rprx-direct # xtls-rprx-origin # enable XTLS
2021-07-06 15:55:34 +00:00
# skip-cert-verify: true
```
2021-07-01 14:49:29 +00:00
### IPTABLES auto-configuration
Only work on Linux OS who support `iptables`, Clash will auto-configuration iptables for tproxy listener when `tproxy-port` value isn't zero.
If `TPROXY` is enabled, the `TUN` must be disabled.
2021-07-01 14:49:29 +00:00
```yaml
# Enable the TPROXY listener
tproxy-port: 9898
# Disable the TUN listener
tun:
enable: false
```
Run Clash as a daemon.
2021-07-01 14:49:29 +00:00
Create the systemd configuration file at /etc/systemd/system/clash.service:
```shell
[Unit]
Description=Clash daemon, A rule-based proxy in Go.
After=network.target
[Service]
Type=simple
CapabilityBoundingSet=cap_net_admin
Restart=always
ExecStart=/usr/local/bin/clash -d /etc/clash
[Install]
WantedBy=multi-user.target
```
Launch clashd on system startup with:
```shell
$ systemctl enable clash
```
Launch clashd immediately with:
```shell
$ systemctl start clash
```
### Display Process name
2021-07-08 18:19:43 +00:00
Add field `Process` to `Metadata` and prepare to get process name for Restful API `GET /connections`.
2021-07-01 14:49:29 +00:00
2021-07-08 18:19:43 +00:00
To display process name in GUI please use https://yaling888.github.io/yacd/.
2021-07-01 14:49:29 +00:00
## Development
If you want to build an application that uses clash as a library, check out the the [GitHub Wiki](https://github.com/Dreamacro/clash/wiki/use-clash-as-a-library)
## Credits
2018-08-11 20:22:14 +00:00
* [riobard/go-shadowsocks2](https://github.com/riobard/go-shadowsocks2)
* [v2ray/v2ray-core](https://github.com/v2ray/v2ray-core)
2021-09-20 09:22:40 +00:00
* [WireGuard/wireguard-go](https://github.com/WireGuard/wireguard-go)
2018-09-16 15:08:04 +00:00
## License
2018-08-11 20:22:14 +00:00
This software is released under the GPL-3.0 license.
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FDreamacro%2Fclash.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2FDreamacro%2Fclash?ref=badge_large)