-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Netch fails to stop, stuck on "Stopping" after Windows 11 24H2 update #1145
Comments
Tested this, and it does stop the tunnel, but it doesn’t proceed with the justification that it's ended. The current workaround is a force close via Task Manager. Suggest bumping this issue for further investigation. |
I had the same issue, and now it won’t even start. If I start with LAN Bypass, it closes automatically. I'm trying to debug the situation. I think the app can't create a network interface on my PC, so it tries to find the interface 20 times before exiting the program after getting null. Nekobox also took too long to connect TUN in Windows 11 (Version 24H2). Maybe need to try increasing these numbers for (var i = 0; i < 100; i++)
{
await Task.Delay(300);
try
{
_tun.InterfaceIndex = NetworkInterfaceUtils.Get(ni => ni.Name.StartsWith(interfaceName)).GetIndex();
break;
}
catch
{
// ignored
}
} |
This issue is stale because it has been open for 30 days with no activity. |
Describe the bug
After updating to Windows 11 24H2, when I try to stop Netch, it remains stuck on "Stopping" and never fully stops. The only way to close it is by ending it from Task Manager.
This issue started occurring only after the 24H2 update.
To Reproduce
Log
Xray.log
application.log
Environment
Additional information
No response
The text was updated successfully, but these errors were encountered: