Sync: Complete project state with all MEGA SPRINT V1-V3 features and Codex stubs
This commit is contained in:
20
firewall_fix.md
Normal file
20
firewall_fix.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# Firewall Fix for WSL2 -> Ableton MCP
|
||||
|
||||
Abrir PowerShell como **Administrador** y ejecutar:
|
||||
|
||||
```powershell
|
||||
New-NetFirewallRule -DisplayName "Ableton MCP WSL" -Direction Inbound -LocalPort 9877 -Protocol TCP -Action Allow
|
||||
```
|
||||
|
||||
Después de ejecutar, verificar:
|
||||
|
||||
```powershell
|
||||
netstat -an | findstr 9877
|
||||
```
|
||||
|
||||
Debe mostrar:
|
||||
```
|
||||
TCP 0.0.0.0:9877 0.0.0.0:0 LISTENING
|
||||
```
|
||||
|
||||
Y desde WSL debería poder conectarse.
|
||||
Reference in New Issue
Block a user