split socks5 (#36)

This commit is contained in:
Sijie.Sun
2024-08-26 17:37:24 +08:00
committed by GitHub
parent 89afa7d6c4
commit 3231dda499
6 changed files with 14 additions and 6 deletions
+1
View File
@@ -23,6 +23,7 @@ export const cn = defineConfig({
{ text: '网对网', link: '/guide/network/network-to-network' },
{ text: '无公网IP', link: '/guide/network/networking-without-public-ip' },
{ text: '使用 WireGuard 客户端接入', link: '/guide/network/use-easytier-with-wirefuard-client' },
{ text: 'SOCKS5', link: '/guide/network/socks5' },
{ text: '无 TUN 模式 (免 Root 权限)', link: '/guide/network/no-root' },
{ text: '自建公共服务器', link: '/guide/network/host-public-server' },
{ text: '注册为windows服务(开机自启)', link: '/guide/network/install-as-a-windows-service' },
+1
View File
@@ -23,6 +23,7 @@ export const en = defineConfig({
{ text: 'Network to Network', link: '/en/guide/network/network-to-network' },
{ text: 'Without Public IP', link: '/en/guide/network/networking-without-public-ip' },
{ text: 'Use WireGuard Client', link: '/en/guide/network/use-easytier-with-wirefuard-client' },
{ text: 'SOCKS5', link: '/en/guide/network/socks5' },
{ text: 'No TUN Mode (No Root Permission Required', link: '/en/guide/network/no-root' },
{ text: 'Self-Hosted Public Server', link: '/en/guide/network/host-public-server' },
{ text: 'Installing as a Windows Service (Auto-Start on Boot)', link: '/en/guide/network/install-as-a-windows-service' },
+1 -3
View File
@@ -4,6 +4,4 @@ Since creating a TUN device requires ROOT permission, EasyTier also provides a m
When networking in No TUN mode, nodes can be accessed via virtual IPs (supporting TCP, UDP, and ICMP), and can also act as subnet proxies (using the -n parameter). However, they cannot initiate visits to other nodes.
To actively access other nodes in No TUN mode, EasyTier supports the creation of a SOCKS5 server. Other programs on the node can access the virtual network and other proxy subnets within the virtual network by setting the proxy to EasyTier's SOCKS5 service.
The parameter for starting the SOCKS5 service is `--socks5 12333`. By adding this parameter to the easytier-core start command, the local port 12333 can serve SOCKS5 clients. Currently, the SOCKS5 server does not require username and password authentication and can be used directly.
To actively access other nodes in No TUN mode, you can use EasyTier's [SOCKS5 server functionality](/en/guide/network/socks5).
+5
View File
@@ -0,0 +1,5 @@
# SOCKS5
EasyTier supports the creation of a SOCKS5 server, allowing other programs on the node to access the virtual network and other proxy subnets within the virtual network by setting their proxy to the EasyTier SOCKS5 service.
The parameter to start the SOCKS5 service is `--socks5 12333`. By adding this parameter to the easytier-core startup command, the local port 12333 can serve SOCKS5 clients. Currently, the SOCKS5 server does not require username and password authentication and can be used directly.
+1 -3
View File
@@ -4,6 +4,4 @@
使用无 TUN 模式组网时,节点可以通过虚拟 IP 被访问(TCP、UDP 和 ICMP 都支持),也可以做子网代理(使用 -n 参数)。但是无法主动发起对其他节点的访问。
为了在无 TUN 模式下主动访问其他节点,EasyTier 支持创建 SOCKS5 服务器,节点上的其他程序可以通过将代理设置为 EasyTier 的 SOCKS5 服务,即可访问虚拟网和虚拟网中的其他代理子网
SOCKS5 服务的开启参数形为 `--socks5 12333`,将此参数加入 easytier-core 启动命令后,本机的 12333 端口即可服务于 SOCKS5 客户端。目前 SOCKS5 服务端无需用户名和密码验证,可直接使用。
为了在无 TUN 模式下主动访问其他节点,可使用 EaayTier 的 [SOCKS5 服务器功能](/guide/network/socks5)
+5
View File
@@ -0,0 +1,5 @@
# SOCKS5
EasyTier 支持创建 SOCKS5 服务器,节点上的其他程序可以通过将代理设置为 EasyTier 的 SOCKS5 服务,即可访问虚拟网和虚拟网中的其他代理子网。
SOCKS5 服务的开启参数形为 `--socks5 12333`,将此参数加入 easytier-core 启动命令后,本机的 12333 端口即可服务于 SOCKS5 客户端。目前 SOCKS5 服务端无需用户名和密码验证,可直接使用。