This commit is contained in:
snltty
2025-05-05 11:08:59 +08:00
parent 5c8692e1c9
commit 6251141b1c
8 changed files with 27 additions and 51 deletions

View File

@@ -63,6 +63,7 @@ Using P2P or server relay, connect multiple LANs to enable communication between
- [x] Custom authentication: via HTTP POST, you can define verification rules for allowing connection beacons, relays, and intranet penetration
- [x] Traffic statistics: monitors traffic for beacons, relays, and intranet penetration on the server
- [x] CD-KEY: temporarily unlocks certain restrictions, such as relays and intranet penetration
- [x] More<a href="https://linker-doc.snltty.com">Documentation</a>
## Development
- [x] Uses the linker.tunnel library for hole punching
@@ -70,28 +71,6 @@ Using P2P or server relay, connect multiple LANs to enable communication between
- [x] Uses the linker.snat library for NAT conversion
- [x] Uses linker.messenger.entry for full-feature integration
## Network Mapping
Network mapping can help you resolve conflicts between multiple internal network.
<div align="center">
<p><img src="./readme/mapto.jpg"></p>
</div>
## Src NAT
Built-in SNAT enables you to use the point-to-site functionality even on Windows 7/8 and Windows Server 2008/2012 where NetNat is unavailable.
<div align="center">
<p><img src="./readme/snat.jpg"></p>
</div>
## Plan Task
Schedule tasks to control activation and deactivation timing.
<div align="center">
<p><img src="./readme/plan.jpg"></p>
</div>
## Management Website
<div align="center">

View File

@@ -48,14 +48,14 @@
## 主要功能
##### 打洞中继
- [x] 打洞连接支持TCP、UDP、IPV4、IPV6
- [x] 中继连接,自建中继节点,支持多中继节点
- [x] 打洞连接,支持`TCP、UDP、IPV4、IPV6`
- [x] 中继连接,自建中继节点,支持`多中继节点`
##### 通信方式
- [x] 异地组网,点对点、点对网、网对网、自动分配虚拟IP网段映射(处理多局域网网段冲突)
- [x] 异地组网,`点对点``点对网``网对网``自动分配虚拟IP``网段映射`(处理多局域网网段冲突)
- [x] 端口转发,将客户端的端口转发到其它客户端的端口
- [x] 服务器穿透,使用端口或域名访问内网服务(支持计划任务,定时定长自动开启关闭)
- [x] socks5代理端口转发需要指定端口`socks5代理`可以代理所有端口
- [x] 服务器穿透,使用端口或域名访问内网服务(支持`计划任务`,定时定长自动开启关闭)
- [x] socks5代理端口转发需要指定端口而socks5代理可以代理所有端口
##### 其它功能
- [x] 配置文件加密
@@ -63,6 +63,7 @@
- [x] 自定义验证,通过`HTTP POST`让你可以自定义认证是否允许`连接信标``中继``内网穿透`
- [x] 流量统计,统计服务器`信标``中继``内网穿透` 的流量情况
- [x] CDKEY可以临时解锁一些限制中继内外穿透什么的
- [x] 更多功能,<a href="https://linker-doc.snltty.com">使用说明文档</a>
## 二开集成
- [x] 使用`linker.tunnel`打洞库
@@ -70,35 +71,14 @@
- [x] 使用`linker.snat`NAT转换库
- [x] 使用`linker.messenger.entry`集成完整功能
## 网段映射
网段映射可以帮你解决多个内网网段冲突的问题
<div align="center">
<p><img src="./readme/mapto.jpg"></p>
</div>
## SNAT
内置的SNAT让你在无法使用NetNat的 win7/8win server 2008/2012上也可以使用点对网功能
<div align="center">
<p><img src="./readme/snat.jpg"></p>
</div>
## 计划任务
内网穿透使用计划任务决定开启和关闭的时机
<div align="center">
<p><img src="./readme/plan.jpg"></p>
</div>
## 管理页面
<div align="center">
<p><img src="./readme/full.jpg"></p>
</div>
## 可怜作者
## 支持作者
<div align="center">
请作者喝一杯咖啡,让作者更有动力更新代码

View File

@@ -4,7 +4,12 @@ sidebar_position: 101
# 8.101、单独使用应用层SNAT
:::tip[说明]
### 1、使用
有效解决win7/8win server2008/2012无法使用`NetNat`的问题
如果你使用的是`linker.tun`类库已经集成应用层SNAT使用`LinkerTunDeviceAdapter.SetSystemNat`使用系统NAT和`LinkerTunDeviceAdapter.SetAppNat`使用应用层SNAT即可
@@ -44,4 +49,8 @@ internal class Program
}
```
### 1、原理图
![Docusaurus Plushie](./img/snat.jpg)
:::

View File

@@ -5,6 +5,9 @@ sidebar_position: 102
# 8.102、单独使用网段映射
:::tip[说明]
### 1、使用
有效解决使用虚拟网卡组网时,多个设备内网网段冲突的问题
如果你使用的是`linker.tun`类库,已经集成网段映射,使用`LinkerTunDeviceAdapter.SetMap`设置映射即可
@@ -43,4 +46,9 @@ internal class Program
}
```
### 2、原理图
![Docusaurus Plushie](./img/mapto.jpg)
:::

View File

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 90 KiB

View File

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 153 KiB

View File

@@ -1,5 +1,5 @@
v1.7.7
2025-05-05 01:47:38
2025-05-05 11:08:59
1. 一些累计更新
2. 优化ssl证书兼容安卓
3. 打洞和中继优化显示loading增加手动尝试打洞