A simple Python Pydantic model for Honkai: Star Rail parsed data from the Mihomo API.
Go to file
2024-01-07 23:32:22 +08:00
.github chore: update release note 2024-01-02 16:24:44 +08:00
adapter chore: return more information for the api 2024-01-07 23:32:22 +08:00
common chore: read waiter for pipe 2024-01-02 18:34:34 +08:00
component fix: resolve IPv6 rule-set issue #959. 2024-01-06 17:54:09 +08:00
config feat: add include-all to proxy-groups 2023-12-31 09:43:52 +08:00
constant chore: change DefaultTestUrl 2023-12-27 14:24:21 +08:00
context
dns chore: stop retry when couldn't find ip 2024-01-02 21:49:27 +08:00
docker
docs chore: update docs 2023-12-31 03:22:01 +08:00
hub chore: add a new cors response header 2023-12-27 16:28:17 +08:00
listener chore: read waiter for pipe 2024-01-02 18:34:34 +08:00
log
ntp
rules fix: SUB-RULE with PROCESS-NAME rule payload not working (#953) 2024-01-06 22:29:30 +08:00
test
transport chore: read waiter for pipe 2024-01-02 18:34:34 +08:00
tunnel chore: stop retry when couldn't find ip 2024-01-02 21:49:27 +08:00
.gitignore
.golangci.yaml
check_amd64.sh
Dockerfile
flake.lock
flake.nix
go.mod chore: support waitRead in windows 2023-12-21 21:18:26 +08:00
go.sum chore: support waitRead in windows 2023-12-21 21:18:26 +08:00
LICENSE
main.go chore: Redundant function calls. (#956) 2024-01-05 15:07:49 +08:00
Makefile
Meta.png
README.md

Meta Kennel
Meta Kernel

Another Mihomo Kernel.

Features

  • Local HTTP/HTTPS/SOCKS server with authentication support
  • VMess, VLESS, Shadowsocks, Trojan, Snell, TUIC, Hysteria protocol support
  • 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 hard-coding in config
  • Netfilter TCP redirecting. Deploy Mihomo on your Internet gateway with iptables.
  • Comprehensive HTTP RESTful API controller

Dashboard

A web dashboard with first-class support for this project has been created; it can be checked out at metacubexd.

Configration example

Configuration example is located at /docs/config.yaml.

Docs

Documentation can be found in mihomo Docs.

For development

Requirements: Go 1.20 or newer

Build mihomo:

git clone https://github.com/MetaCubeX/mihomo.git
cd mihomo && go mod download
go build

Set go proxy if a connection to GitHub is not possible:

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

Build with gvisor tun stack:

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'

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