mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-06-13 21:54:13 +08:00
documentation: Bump version
This commit is contained in:
parent
6875a33c28
commit
28880453a2
@ -2,6 +2,51 @@
|
|||||||
icon: material/alert-decagram
|
icon: material/alert-decagram
|
||||||
---
|
---
|
||||||
|
|
||||||
|
#### 1.10.0-alpha.4
|
||||||
|
|
||||||
|
* Fix auto redirect **1**
|
||||||
|
* Improve auto route on linux **2**
|
||||||
|
|
||||||
|
**1**:
|
||||||
|
|
||||||
|
Tun inbounds with `auto_route` and `auto_redirect` now works as expected on routers.
|
||||||
|
|
||||||
|
**2**:
|
||||||
|
|
||||||
|
Tun inbounds with `auto_route` and `strict_route` now works as expected on routers and servers,
|
||||||
|
but the usages of [exclude_interface](/configuration/inbound/tun/#exclude_interface) need to be updated.
|
||||||
|
|
||||||
|
#### 1.10.0-alpha.2
|
||||||
|
|
||||||
|
* Move auto redirect to Tun **1**
|
||||||
|
* Fixes and improvements
|
||||||
|
|
||||||
|
**1**:
|
||||||
|
|
||||||
|
Linux support are added.
|
||||||
|
|
||||||
|
See [Tun](/configuration/inbound/tun/#auto_redirect).
|
||||||
|
|
||||||
|
#### 1.10.0-alpha.1
|
||||||
|
|
||||||
|
* Add tailing comma support in JSON configuration
|
||||||
|
* Add simple auto redirect for Android **1**
|
||||||
|
* Add BitTorrent sniffer **2**
|
||||||
|
|
||||||
|
**1**:
|
||||||
|
|
||||||
|
It allows you to use redirect inbound in the sing-box Android client
|
||||||
|
and automatically configures IPv4 TCP redirection via su.
|
||||||
|
|
||||||
|
This may alleviate the symptoms of some OCD patients who think that
|
||||||
|
redirect can effectively save power compared to the system HTTP Proxy.
|
||||||
|
|
||||||
|
See [Redirect](/configuration/inbound/redirect/).
|
||||||
|
|
||||||
|
**2**:
|
||||||
|
|
||||||
|
See [Protocol Sniff](/configuration/route/sniff/).
|
||||||
|
|
||||||
### 1.9.0
|
### 1.9.0
|
||||||
|
|
||||||
* Fixes and improvements
|
* Fixes and improvements
|
||||||
|
@ -150,9 +150,10 @@ Enforce strict routing rules when `auto_route` is enabled:
|
|||||||
*In Linux*:
|
*In Linux*:
|
||||||
|
|
||||||
* Let unsupported network unreachable
|
* Let unsupported network unreachable
|
||||||
|
* Make ICMP traffic route to tun instead of upstream interfaces
|
||||||
* Route all connections to tun
|
* Route all connections to tun
|
||||||
|
|
||||||
It prevents address leaks and makes DNS hijacking work on Android.
|
It prevents IP address leaks and makes DNS hijacking work on Android.
|
||||||
|
|
||||||
*In Windows*:
|
*In Windows*:
|
||||||
|
|
||||||
@ -174,7 +175,7 @@ Automatically configure iptables to redirect TCP connections.
|
|||||||
*In Android*:
|
*In Android*:
|
||||||
|
|
||||||
* Only IPv4 is supported
|
* Only IPv4 is supported
|
||||||
* Only local connections is forwarded
|
* Only local connections are forwarded
|
||||||
|
|
||||||
To share your VPN connection over hotspot or repeater, use [VPNHotspot](https://github.com/Mygod/VPNHotspot).
|
To share your VPN connection over hotspot or repeater, use [VPNHotspot](https://github.com/Mygod/VPNHotspot).
|
||||||
|
|
||||||
@ -183,11 +184,10 @@ To share your VPN connection over hotspot or repeater, use [VPNHotspot](https://
|
|||||||
* iptables is required (optional ip6tables)
|
* iptables is required (optional ip6tables)
|
||||||
* `iptables_nat` module is required
|
* `iptables_nat` module is required
|
||||||
|
|
||||||
For OpenWrt 23.05, required extra packages are:
|
For OpenWrt 23.05, the following additional packages are required:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
opkg update
|
iptables-nft iptables-mod-nat-extra ip6tables-nft
|
||||||
opkg install iptables-nft iptables-mod-nat-extra ip6tables-nft
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### inet4_route_address
|
#### inet4_route_address
|
||||||
@ -248,6 +248,10 @@ Conflict with `exclude_interface`.
|
|||||||
|
|
||||||
#### exclude_interface
|
#### exclude_interface
|
||||||
|
|
||||||
|
!!! warning ""
|
||||||
|
|
||||||
|
When `strict_route` enabled, return traffic to excluded interfaces will not be automatically excluded, so add them as well (example: `br-lan` and `pppoe-wan`).
|
||||||
|
|
||||||
Exclude interfaces in route.
|
Exclude interfaces in route.
|
||||||
|
|
||||||
Conflict with `include_interface`.
|
Conflict with `include_interface`.
|
||||||
|
@ -150,9 +150,10 @@ tun 接口的 IPv6 前缀。
|
|||||||
*在 Linux 中*:
|
*在 Linux 中*:
|
||||||
|
|
||||||
* 让不支持的网络无法到达
|
* 让不支持的网络无法到达
|
||||||
|
* 使 ICMP 流量路由到 tun 而不是上游接口
|
||||||
* 将所有连接路由到 tun
|
* 将所有连接路由到 tun
|
||||||
|
|
||||||
它可以防止地址泄漏,并使 DNS 劫持在 Android 上工作。
|
它可以防止 IP 地址泄漏,并使 DNS 劫持在 Android 上工作。
|
||||||
|
|
||||||
*在 Windows 中*:
|
*在 Windows 中*:
|
||||||
|
|
||||||
@ -184,11 +185,10 @@ tun 接口的 IPv6 前缀。
|
|||||||
* 需要 iptables(可选 ip6tables)
|
* 需要 iptables(可选 ip6tables)
|
||||||
* 需要 `iptables_nat` 模块
|
* 需要 `iptables_nat` 模块
|
||||||
|
|
||||||
对于 OpenWrt 23.05,所需的额外软件包是:
|
对于 OpenWrt 23.05,需要以下附加软件包:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
opkg update
|
iptables-nft iptables-mod-nat-extra ip6tables-nft
|
||||||
opkg install iptables-nft iptables-mod-nat-extra ip6tables-nft
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### inet4_route_address
|
#### inet4_route_address
|
||||||
@ -245,6 +245,10 @@ TCP/IP 栈。
|
|||||||
|
|
||||||
#### exclude_interface
|
#### exclude_interface
|
||||||
|
|
||||||
|
!!! warning ""
|
||||||
|
|
||||||
|
当 `strict_route` 启用,到被排除接口的回程流量将不会被自动排除,因此也要添加它们(例:`br-lan` 与 `pppoe-wan`)。
|
||||||
|
|
||||||
排除路由的接口。
|
排除路由的接口。
|
||||||
|
|
||||||
与 `include_interface` 冲突。
|
与 `include_interface` 冲突。
|
||||||
|
@ -4,10 +4,6 @@ icon: material/arrange-bring-forward
|
|||||||
|
|
||||||
## 1.9.0
|
## 1.9.0
|
||||||
|
|
||||||
!!! warning "Unstable"
|
|
||||||
|
|
||||||
This version is still under development, and the following migration guide may be changed in the future.
|
|
||||||
|
|
||||||
### `domain_suffix` behavior update
|
### `domain_suffix` behavior update
|
||||||
|
|
||||||
For historical reasons, sing-box's `domain_suffix` rule matches literal prefixes instead of the same as other projects.
|
For historical reasons, sing-box's `domain_suffix` rule matches literal prefixes instead of the same as other projects.
|
||||||
|
@ -4,10 +4,6 @@ icon: material/arrange-bring-forward
|
|||||||
|
|
||||||
## 1.9.0
|
## 1.9.0
|
||||||
|
|
||||||
!!! warning "不稳定的"
|
|
||||||
|
|
||||||
该版本仍在开发中,迁移指南可能将在未来更改。
|
|
||||||
|
|
||||||
### `domain_suffix` 行为更新
|
### `domain_suffix` 行为更新
|
||||||
|
|
||||||
由于历史原因,sing-box 的 `domain_suffix` 规则匹配字面前缀,而不与其他项目相同。
|
由于历史原因,sing-box 的 `domain_suffix` 规则匹配字面前缀,而不与其他项目相同。
|
||||||
|
Loading…
x
Reference in New Issue
Block a user