27 lines
992 B
Plaintext
27 lines
992 B
Plaintext
CHUNICHUNIMatch
|
||
===============
|
||
|
||
Remote LAN multiplayer matching by virtualizing members into the local LAN.
|
||
|
||
*No VPN required*
|
||
|
||
Instructions
|
||
------------
|
||
|
||
***Project is currently in experimentation***
|
||
|
||
* 配置IP别名。提权cmd运行以下指令在主网卡上新增192.168.139.11-14(如果必要,替换Ethernet为网卡名)
|
||
```
|
||
netsh interface ipv4 set interface interface="Ethernet" dhcpstaticipcoexistence=enabled
|
||
netsh interface ipv4 add address "Ethernet" 192.168.139.11 255.255.255.0 store=active
|
||
netsh interface ipv4 add address "Ethernet" 192.168.139.12 255.255.255.0 store=active
|
||
netsh interface ipv4 add address "Ethernet" 192.168.139.13 255.255.255.0 store=active
|
||
netsh interface ipv4 add address "Ethernet" 192.168.139.14 255.255.255.0 store=active
|
||
```
|
||
* 确保使用的segatools更新到至少forcebind
|
||
* 修改segatools.ini添加下面的新section以使用CCM在连接时自动生成的INI
|
||
```
|
||
[override]
|
||
netenv="D:\path\to\ccm\segatools-override.ini"
|
||
```
|