2018-06-23 00:44:28 +08:00
< h1 align = "center" >
< img src = "https://github.com/Dreamacro/clash/raw/master/docs/logo.png" alt = "Clash" width = "200" >
2019-02-11 15:55:17 +08:00
< br > Clash< br >
2018-06-23 00:44:28 +08:00
< / h1 >
2018-12-11 00:25:05 +08:00
< h4 align = "center" > A rule-based tunnel in Go.< / h4 >
2018-06-23 00:44:28 +08:00
< p align = "center" >
2019-12-08 12:34:05 +08: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-23 00:44:28 +08:00
< a href = "https://goreportcard.com/report/github.com/Dreamacro/clash" >
2019-02-11 15:55:17 +08:00
< img src = "https://goreportcard.com/badge/github.com/Dreamacro/clash?style=flat-square" >
2018-06-23 00:44:28 +08:00
< / a >
2021-09-20 17:22:40 +08:00
< img src = "https://img.shields.io/github/go-mod/go-version/Dreamacro/clash?style=flat-square" >
2018-06-23 00:44:28 +08: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 17:22:40 +08: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-23 00:44:28 +08:00
< / p >
2018-06-10 22:50:03 +08:00
## Features
2020-06-28 10:39:30 +08:00
- 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 17:22:40 +08:00
- Rules based off domains, GEOIP, IPCIDR or Process to forward packets to different nodes
2020-03-20 12:35:30 +08:00
- 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
2020-06-28 10:39:30 +08:00
- Netfilter TCP redirecting. Deploy Clash on your Internet gateway with `iptables` .
- Comprehensive HTTP RESTful API controller
2018-08-14 18:06:56 +08:00
2020-06-28 10:39:30 +08:00
## Getting Started
Documentations are now moved to [GitHub Wiki ](https://github.com/Dreamacro/clash/wiki ).
2019-04-15 19:05:01 +08:00
2021-10-15 14:11:14 +08:00
## Advanced usage for this branch
2021-07-01 22:49:29 +08:00
### TUN configuration
2021-09-24 04:37:04 +08:00
Supports macOS, Linux and Windows.
2021-07-01 22:49:29 +08:00
2021-10-15 14:11:14 +08:00
Support lwIP stack, a lightweight TCP/IP stack, it's recommended set to tun.
2021-09-30 04:05:52 +08:00
2021-09-24 04:37:04 +08:00
On Windows, you should download the [Wintun ](https://www.wintun.net ) driver and copy `wintun.dll` into Clash home directory.
2021-07-01 22:49:29 +08:00
```yaml
# Enable the TUN listener
tun:
enable: true
2021-10-15 14:11:14 +08:00
stack: lwip # lwip(recommended), system or gvisor
2021-07-01 22:49:29 +08:00
dns-listen: 0.0.0.0:53 # additional dns server listen on TUN
auto-route: true # auto set global route
```
### Rules configuration
2021-07-09 02:19:43 +08:00
- Support rule `GEOSITE` .
2021-10-15 14:11:14 +08:00
- Support rule `SCRIPT` .
2021-07-09 02:19:43 +08:00
- Support `multiport` condition for rule `SRC-PORT` and `DST-PORT` .
- Support `network` condition for all rules.
2021-09-24 04:37:04 +08:00
- Support source IPCIDR condition for all rules, just append to the end.
2021-07-01 22:49:29 +08:00
2021-10-15 14:11:14 +08:00
The `GEOSITE` databases via https://github.com/Loyalsoldier/v2ray-rules-dat.
2021-07-01 22:49:29 +08:00
```yaml
2021-10-15 14:11:14 +08:00
mode: rule
script:
shortcuts:
quic: 'network == "udp" and dst_port == 443'
privacy: '"analytics" in host or "adservice" in host or "firebase" in host or "safebrowsing" in host or "doubleclick" in host'
2021-07-01 22:49:29 +08:00
rules:
2021-10-21 20:22:23 +08:00
# rule SCRIPT
- SCRIPT,quic,REJECT # Disable QUIC, same as rule "DST-PORT,443,REJECT,udp"
- SCRIPT,privacy,REJECT
# network(tcp/udp) condition for all rules
2021-07-06 15:07:05 +08:00
- DOMAIN-SUFFIX,bilibili.com,DIRECT,tcp
- DOMAIN-SUFFIX,bilibili.com,REJECT,udp
2021-07-09 02:19:43 +08:00
# multiport condition for rules SRC-PORT and DST-PORT
2021-07-06 15:07:05 +08:00
- DST-PORT,123/136/137-139,DIRECT,udp
2021-07-01 22:49:29 +08:00
# rule GEOSITE
- GEOSITE,category-ads-all,REJECT
- GEOSITE,icloud@cn,DIRECT
- GEOSITE,apple@cn,DIRECT
2021-07-06 23:55:34 +08:00
- GEOSITE,apple-cn,DIRECT
2021-07-01 22:49:29 +08:00
- GEOSITE,microsoft@cn,DIRECT
2021-07-06 15:07:05 +08:00
- GEOSITE,facebook,PROXY
2021-07-01 22:49:29 +08:00
- GEOSITE,youtube,PROXY
- GEOSITE,geolocation-cn,DIRECT
2021-10-15 14:11:14 +08:00
- GEOSITE,geolocation-!cn,PROXY
# source IPCIDR condition for all rules in gateway proxy
#- GEOSITE,apple,PROXY,192.168.1.88/32,192.168.1.99/32
2021-07-01 22:49:29 +08:00
2021-07-06 15:07:05 +08:00
- GEOIP,telegram,PROXY,no-resolve
2021-07-01 22:49:29 +08:00
- GEOIP,private,DIRECT,no-resolve
- GEOIP,cn,DIRECT
2021-10-15 14:11:14 +08:00
- MATCH,PROXY
```
### Script configuration
Script enables users to programmatically select a policy for the packets with more flexibility.
```yaml
mode: script
rules:
2021-10-21 20:22:23 +08:00
# the rule GEOSITE just as a rule provider in mode script
2021-10-15 14:11:14 +08:00
- GEOSITE,category-ads-all,Whatever
- GEOSITE,youtube,Whatever
- GEOSITE,geolocation-cn,Whatever
script:
code: |
def main(ctx, metadata):
if metadata["process_name"] == 'apsd':
return "DIRECT"
if metadata["network"] == 'udp' and metadata["dst_port"] == 443:
return "REJECT"
2021-07-01 22:49:29 +08:00
2021-10-15 14:11:14 +08:00
host = metadata["host"]
for kw in ['analytics', 'adservice', 'firebase', 'bugly', 'safebrowsing', 'doubleclick']:
if kw in host:
return "REJECT"
2021-09-24 04:37:04 +08:00
2021-10-15 14:11:14 +08:00
now = time.now()
if (now.hour < 8 or now . hour > 17) and metadata["src_ip"] == '192.168.1.99':
return "REJECT"
if ctx.rule_providers["geosite:category-ads-all"].match(metadata):
return "REJECT"
if ctx.rule_providers["geosite:youtube"].match(metadata):
ctx.log('[Script] domain %s matched youtube' % host)
return "Proxy"
2021-07-01 22:49:29 +08:00
2021-10-15 14:11:14 +08:00
if ctx.rule_providers["geosite:geolocation-cn"].match(metadata):
ctx.log('[Script] domain %s matched geolocation-cn' % host)
2021-10-21 20:22:23 +08:00
return "DIRECT"
2021-10-15 14:11:14 +08:00
ip = metadata["dst_ip"]
if host != "":
ip = ctx.resolve_ip(host)
if ip == "":
return "Proxy"
code = ctx.geoip(ip)
if code == "LAN" or code == "CN":
return "DIRECT"
return "Proxy" # default policy for requests which are not matched by any other script
```
the context and metadata
2021-10-21 20:22:23 +08:00
```ts
2021-10-15 14:11:14 +08:00
interface Metadata {
2021-10-21 20:22:23 +08:00
type: string // socks5、http
network: string // tcp
host: string
process_name: string
src_ip: string
src_port: int
dst_ip: string
dst_port: int
2021-10-15 14:11:14 +08:00
}
interface Context {
2021-10-21 20:22:23 +08:00
resolve_ip: (host: string) => string // ip string
geoip: (ip: string) => string // country code
log: (log: string) => void
rule_providers: Record< string , { match: ( metadata: Metadata ) = > boolean }>
2021-10-15 14:11:14 +08:00
}
2021-07-01 22:49:29 +08:00
```
2021-07-06 23:55:34 +08:00
### Proxies configuration
2021-07-09 02:19:43 +08:00
Support outbound transport protocol `VLESS` .
The XTLS only support TCP transport by the XRAY-CORE.
2021-07-06 23:55:34 +08:00
```yaml
proxies:
2021-07-09 02:19:43 +08:00
- name: "vless-tcp"
2021-07-06 23:55:34 +08:00
type: vless
server: server
port: 443
uuid: uuid
2021-07-09 02:19:43 +08:00
network: tcp
servername: example.com # AKA SNI
# flow: xtls-rprx-direct # xtls-rprx-origin # enable XTLS
2021-07-06 23:55:34 +08:00
# skip-cert-verify: true
2021-07-09 02:19:43 +08:00
- name: "vless-ws"
type: vless
server: server
port: 443
uuid: uuid
udp: true
network: ws
servername: example.com # priority over wss host
# skip-cert-verify: true
ws-path: /path
ws-headers:
Host: example.com
2021-07-06 23:55:34 +08:00
```
2021-07-01 22:49:29 +08: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.
2021-07-06 15:07:05 +08:00
If `TPROXY` is enabled, the `TUN` must be disabled.
2021-07-01 22:49:29 +08:00
```yaml
# Enable the TPROXY listener
tproxy-port: 9898
# Disable the TUN listener
tun:
enable: false
```
2021-07-09 02:19:43 +08:00
Create user given name `clash` .
2021-07-01 22:49:29 +08:00
Run Clash by user `clash` as a daemon.
Create the systemd configuration file at /etc/systemd/system/clash.service:
2021-10-21 20:22:23 +08:00
```
2021-07-01 22:49:29 +08:00
[Unit]
Description=Clash daemon, A rule-based proxy in Go.
After=network.target
[Service]
Type=simple
User=clash
Group=clash
CapabilityBoundingSet=cap_net_admin
AmbientCapabilities=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-10-21 20:22:23 +08:00
Clash add field `Process` to `Metadata` and prepare to get process name for Restful API `GET /connections` .
2021-07-01 22:49:29 +08:00
2021-07-09 02:19:43 +08:00
To display process name in GUI please use https://yaling888.github.io/yacd/.
2021-07-01 22:49:29 +08:00
2021-06-13 23:11:49 +08: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 )
2020-03-20 12:35:30 +08:00
## Credits
2018-08-12 04:22:14 +08:00
2020-06-28 10:39:30 +08:00
* [riobard/go-shadowsocks2 ](https://github.com/riobard/go-shadowsocks2 )
* [v2ray/v2ray-core ](https://github.com/v2ray/v2ray-core )
2021-09-20 17:22:40 +08:00
* [WireGuard/wireguard-go ](https://github.com/WireGuard/wireguard-go )
2018-09-16 23:08:04 +08:00
2018-07-15 22:32:20 +08:00
## License
2018-08-12 04:22:14 +08:00
2020-06-28 10:39:30 +08:00
This software is released under the GPL-3.0 license.
2018-07-15 22:32:20 +08:00
[![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)