mirror of
https://github.com/wangyu-/udp2raw.git
synced 2025-01-19 14:29:34 +08:00
Created 在win10的linux子系统上原生运行udp2raw (markdown)
parent
554439908f
commit
740c08fc4d
23
在win10的linux子系统上原生运行udp2raw.md
Normal file
23
在win10的linux子系统上原生运行udp2raw.md
Normal file
@ -0,0 +1,23 @@
|
||||
udp2raw可以运行在win10的linux子系统上。
|
||||
|
||||
但是因为win10 linux子系统上没有iptables,所以你需要在windows防火墙里添加规则。
|
||||
|
||||
### 具体方法
|
||||
比如你本来在linux上需要运行:
|
||||
```
|
||||
./udp2raw_amd64 -s -l0.0.0.0:4096 -r 127.0.0.1:7777 -a -k "passwd" --raw-mode faketcp
|
||||
```
|
||||
|
||||
现在去掉`-a`选项,添加`-g`选项,运行:
|
||||
|
||||
```
|
||||
./udp2raw_amd64 -s -l0.0.0.0:4096 -r 127.0.0.1:7777 -k "passwd" --raw-mode faketcp -g
|
||||
```
|
||||
|
||||
这样程序会生成一条iptables规则,你在win10的防火墙里照猫画虎地添加一条类似地规则,屏蔽掉指定的端口号(只需要添加一次)。
|
||||
|
||||
之后只要使用如下命令就可以正常运行了:
|
||||
```
|
||||
./udp2raw_amd64 -s -l0.0.0.0:4096 -r 127.0.0.1:7777 -k "passwd" --raw-mode faketcp
|
||||
```
|
||||
(不带`-a`也不带`-g`选项)
|
Loading…
x
Reference in New Issue
Block a user