A simple Python Pydantic model for Honkai: Star Rail parsed data from the Mihomo API.
Go to file
2023-02-19 16:20:30 +08:00
.github chore: combine workflows 2023-02-19 01:23:06 +08:00
adapter feat: add sni field for tuic 2023-02-19 16:20:30 +08:00
common style: run go fmt on every .go file (#392) 2023-02-17 16:31:37 +08:00
component style: run go fmt on every .go file (#392) 2023-02-17 16:31:37 +08:00
config fix: parsing ipv6 doh error 2023-02-17 23:30:38 +08:00
constant fix: socks5 serialize error #376 2023-02-18 17:18:58 +08:00
context
dns chore: combine workflows 2023-02-19 01:23:06 +08:00
docker
docs chore: update docs/config.yml 2023-02-07 13:19:19 +08:00
hub chore: cleanup natTable's api 2023-02-18 13:16:07 +08:00
listener chore: reset tunName in macos when it isn't startWith "utun" 2023-02-19 10:10:27 +08:00
log chore: better log time 2023-02-15 22:39:28 +08:00
patch chore: add patch for debug api,better workflow. 2023-01-30 20:19:44 +08:00
rules fix: socks5 serialize error #376 2023-02-18 17:18:58 +08:00
test
transport fix: ensure return a nil interface not an interface with nil value 2023-02-18 14:16:03 +08:00
tunnel chore: cleanup natTable's api 2023-02-18 13:16:07 +08:00
.gitignore
.golangci.yaml
check_amd64.sh
Dockerfile
flake.lock
flake.nix
go.mod fix: disable header protection in vmess server 2023-02-18 16:42:54 +08:00
go.sum fix: disable header protection in vmess server 2023-02-18 16:42:54 +08:00
LICENSE
main.go
Makefile chore: Considering remove GOAMD64=v2 of linux-amd64-compatible 2023-02-18 13:32:26 +08:00
Meta.png
README.md Update README.md 2023-02-05 23:36:08 +08:00

Meta Kennel
Meta Kernel

Another Clash Kernel.

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.
  • 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

Wiki

Documentation and configuring examples are available on wiki and Clash.Meta Wiki.

Build

You should install golang first.

Then get the source code of Clash.Meta:

git clone https://github.com/MetaCubeX/Clash.Meta.git
cd Clash.Meta && go mod download

If you can't visit github,you should set proxy first:

go env -w GOPROXY=https://goproxy.io,direct

Now you can build it:

go build

If you need gvisor for tun stack, build with:

go build -tags with_gvisor

IPTABLES configuration

Work on Linux OS which supported iptables

# Enable the TPROXY listener
tproxy-port: 9898

iptables:
  enable: true # default is false
  inbound-interface: eth0 # detect the inbound interface, default is 'lo'

General installation guide for Linux

  • Create user given name clash-meta

  • Download and decompress pre-built binaries from releases

  • Rename executable file to Clash-Meta and move to /usr/local/bin/

  • Create folder /etc/Clash-Meta/ as working directory

Run Meta Kernel by user clash-meta as a daemon.

Create the systemd configuration file at /etc/systemd/system/Clash-Meta.service:

[Unit]
Description=Clash-Meta Daemon, Another Clash Kernel.
After=network.target NetworkManager.service systemd-networkd.service iwd.service

[Service]
Type=simple
User=clash-meta
Group=clash-meta
LimitNPROC=500
LimitNOFILE=1000000
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_RAW CAP_NET_BIND_SERVICE
Restart=always
ExecStartPre=/usr/bin/sleep 1s
ExecStart=/usr/local/bin/Clash-Meta -d /etc/Clash-Meta

[Install]
WantedBy=multi-user.target

Launch clashd on system startup with:

$ systemctl enable Clash-Meta

Launch clashd immediately with:

$ systemctl start Clash-Meta

Display Process name

Clash add field Process to Metadata and prepare to get process name for Restful API GET /connections.

To display process name in GUI please use Razord-meta.

Dashboard

We also made a custom fork of yacd provide better support for this project, check it out at Yacd-meta

Development

If you want to build an application that uses clash as a library, check out the the GitHub Wiki

Debugging

Check wiki to get an instruction on using debug API.

Credits

License

This software is released under the GPL-3.0 license.

FOSSA Status