mirror of
https://github.com/router-for-me/EasyCLI.git
synced 2026-04-25 15:45:53 +03:00
[GH-ISSUE #6] 代理vpn时,好像不能运行这个软件 #4
Labels
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/EasyCLI#4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ZZZdragondYNGPHX on GitHub (Oct 14, 2025).
Original GitHub issue: https://github.com/router-for-me/EasyCLI/issues/6
当我代理vpn时,会显示错误,然后软件重启,重新进入后会白屏无响应,只有任务管理器强制关闭才行,而且每一次都这样

@benzntech commented on GitHub (Oct 22, 2025):
This issue appears to be related to the CLIProxyAPI port conflict. When using a VPN proxy, the application may fail to start properly if port 8317 is already in use.
Troubleshooting steps:
Check if port 8317 is already occupied:
netstat -ano | findstr :8317lsof -i :8317If a process is using port 8317, you can either:
If the app becomes unresponsive (white screen), force quit and restart after ensuring port 8317 is available.
Could you share the error message you're seeing when the VPN is active? This will help identify the specific issue.
@benzntech commented on GitHub (Oct 23, 2025):
I see the issue - CLIProxyAPI is listening on IPv6 (*:8317) but EasyCLI is trying to connect via IPv4 (localhost:8317). This mismatch can cause connection issues.
@ZZZdragondYNGPHX commented on GitHub (Oct 23, 2025):
Thank you for your help. I just tried but still can't solve the problem. I have given up debugging and tried other CLI agent software.
@benzntech commented on GitHub (Oct 23, 2025):
Implemented automatic port cleanup to address the port conflict issue. The app now automatically kills any process using port 8317 before starting CLIProxyAPI.
@ZZZdragondYNGPHX commented on GitHub (Oct 23, 2025):
Thanks for your help,bro