Featured image of post sing-box noob

sing-box noob

the record of sing-box noob

preface

Bing a noob of sing-box, a proxy tool written in go, I’m trying to use it with vmess-h2-tls protocol failing in clash.

sing-box

Please refer to the videos made by this author.

tun

tun 是现在常见的. 比 redirect/tproxy 高一个版本呢.

tproxy

1
2
3
# redirect, tproxy
iptables -t mangle -A XRAY -p tcp -j TPROXY --on-port 12345 --tproxy-mark 1
iptables -t mangle -A XRAY -p udp -j TPROXY --on-port 12345 --tproxy-mark 1
  • mangle 表, 用于修改数据包
  • -A XRAY: add new rule to a chain named XRAY
  • -j TPROXY: use TPROXY target, which is a feature of phantom proxy
  • –on-port 12345: forward the packet to the port 12345
  • –tproxy-mark 1: set the mark of the packet to 1

inbound

1
2
3
4
5
6
7
8
9
{
    "tag": "tun-in",
    "type": "tun",
    "address": [
    "172.19.0.0/30"
    ],
    "auto_route": true,
    "strict_route": true
},

ip rule

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
$ ip rule
0: from all lookup local # all source packet lookup local route table
# ---
9000: from all to 172.20.0.0/30 lookup 2022 # all source packet to 172.20.0.0/30 lookup 2022(route table)
9001: from all lookup 2022 suppress_prefixlength 0 # suppress the zero-length-prefixed packet, which means the default route
9002: not from all dport 53 lookup main suppress_prefixlength 0
9002: from all ipproto icmp goto 9010
9002: from all iif tun0 goto 9010
9003: not from all iif lo lookup 2022
9003: from 0.0.0.0 iif lo lookup 2022
9003: from 172.20.0.0/30 iif lo lookup 2022
9010: from all nop
# ---
32766: from all lookup main
32767: from all lookup default

ip route

这个 2022 路由表是: sing-box 的.

1
2
$ ip route show 2022
default dev tun0

vmess-h2-tls

Please refer to this repo.

sing-box + wireguard

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
{
  "log": {
    "level": "debug",
    "timestamp": true
  },
  "experimental": {
    "cache_file": {
      "enabled": true,
      "store_fakeip": true
    }
  },
  "dns": {
    "servers": [
      {
        "tag": "proxyDns",
        "address": "tls://8.8.8.8",
        "detour": "proxy"
      },
      {
        "tag": "localDns",
        "address": "local",
        "detour": "direct"
      }
    ],
    "rules": [
      {
        "outbound": "any", // 如果是 outbound 的服务器需要 dns 解析, 那么走 localDns
        "server": "localDns"
      },
      {
        "rule_set": "geosite-cn",
        "server": "localDns"
      },
      {
        "rule_set": "geoip-cn",
        "server": "localDns"
      },
      {
        "rule_set": "geosite-noncn",
        "server": "proxyDns"
      }
    ],
    "final": "proxyDns",
    "strategy": "prefer_ipv4"
  },
  "inbounds": [
    {
      "tag": "tun-in",
      "type": "tun",
      "address": ["172.19.0.0/30"],
      "auto_route": true,
      "strict_route": true,
      "stack": "system",
      "platform": {
        "http_proxy": {
          "enabled": true,
          "server": "127.0.0.1",
          "server_port": 2080
        }
      }
    },
    {
      "tag": "mixed-in",
      "type": "mixed",
      "listen": "127.0.0.1",
      "listen_port": 2080
    }
  ],
  "outbounds": [
    {
      "type": "direct",
      "tag": "direct"
    },
    {
      "tag": "proxy",
      "type": "vmess",
      "server": "xxx",
      "server_port": xxx,
      "uuid": "xxx",
      "security": "auto",
      "alter_id": 0,
      "packet_encoding": "xudp",
      "tls": {
        "enabled": true,
        "insecure": true,
        "server_name": "xxx"
      },
      "transport": {
        "type": "http",
        "host": "xxx",
        "path": "xxx"
      }
    }
  ],
  "endpoints": [
    {
      "type": "wireguard",
      "tag": "wg-out",
      "address": ["10.10.0.102/32"],
      "private_key": "xxx",
      "peers": [
        {
          "address": "xxx",
          "port": xxx,
          "public_key": "xxx",
          "allowed_ips": [
            "192.168.100.1/24",
            "10.10.0.1/32"
          ]
        },
        {
          "address": "xxx",
          "port": xxx,
          "public_key": "xxx",
          "allowed_ips": [
            "192.168.200.1/24",
            "10.10.0.2/32",
            "192.168.2.1/24",
            "192.168.3.1/24"
          ]
        }
      ],
      "detour": "direct"
    }
  ],
  "route": {
    "auto_detect_interface": true,
    "final": "proxy",
    "rules": [
      {
        "inbound": ["tun-in", "mixed-in"],
        "action": "sniff"
      },
      {
        "type": "logical",
        "mode": "or",
        "rules": [
          {
            "port": 53
          },
          {
            "protocol": "dns"
          }
        ],
        "action": "hijack-dns"
      },
      {
        "rule_set": "geosite-category-ads-all",
        "action": "reject"
      },
      {
        "rule_set": "geosite-cn",
        "action": "direct"
      },
      {
        "rule_set": "geosite-noncn",
        "outbound": "proxy"
      },
      {
        "ip_cidr": [
          "192.168.100.0/24",
          "192.168.200.0/24",
          "192.168.2.0/24",
          "192.168.3.0/24"
        ],
        "outbound": "wg-out"
      }
    ],
    "rule_set": [
      {
        "tag": "geosite-category-ads-all",
        "type": "remote",
        "format": "binary",
        "url": "https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@sing/geo/geosite/category-ads-all.srs",
        "download_detour": "direct"
      },
      {
        "tag": "geoip-cn",
        "type": "remote",
        "format": "binary",
        "url": "https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@sing/geo/geoip/cn.srs",
        "download_detour": "direct"
      },
      {
        "tag": "geosite-cn",
        "type": "remote",
        "format": "binary",
        "url": "https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@sing/geo/geosite/cn.srs",
        "download_detour": "direct"
      },
      {
        "tag": "geosite-noncn",
        "type": "remote",
        "format": "binary",
        "url": "https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@sing/geo/geosite/geolocation-!cn.srs",
        "download_detour": "direct"
      }
    ]
  }
}
Licensed under CC BY-NC-SA 4.0