Conversation
added 3 commits
March 22, 2026 01:39
Member
|
|
Contributor
Author
|
ready 了,我测试下来没啥问题 刚刚在纠结那个 localaddr,不手动创建 endpoint 好像没有这个信息, |
Member
|
|
Contributor
Author
|
writeRawUDPPacket 导出应该能共用一下,其他的不好动, |
Contributor
Author
|
哦对还有 udpConnectionHandler 和 udpConn, |
Member
|
@LjhAUMEM 说起来忘拉你 |
Member
我看了下它的配置解析本来是像 WS 0-RTT 支持任意格式的,你这改成了只支持 std,且会 break 现有非 std 的配置文件 |
Member
|
影响 |
Member
Contributor
Author
|
#5554 确实有效 (虽然还没细看是怎么修复成功的),我在本地加入了 5554 的修改,测试成功,下面是测试配置,在未加入修改前是失败 client {
"log": { "loglevel": "debug" },
"inbounds": [
{
"listen": "127.0.0.1",
"port": 1080,
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true
}
}
],
"outbounds": [
{
"protocol": "wireguard",
"settings": {
"secretKey": "YKjJrIBGR3QjDvhXSIK4ndxiyDgNOzTJOu8teRxHQGU=",
"peers": [
{
"endpoint": "127.0.0.1:1081",
"publicKey": "ZaUsMjS5OeCRHLMAtp3rMDBVRYur622DRL71Bx9kjno=",
"allowedIPs": ["65.108.151.63/32"]
},
{
"endpoint": "127.0.0.1:1082",
"publicKey": "sZ8uL19fcFIkymT4EpGCEV+eupreuMibTtL7UY+1lBg=",
"allowedIPs": ["2a01:4f9:c012:8091::1/128"]
}
],
"noKernelTun": true,
"domainStrategy": "ForceIPv4"
}
}
]
}server {
"log": { "loglevel": "debug" },
"inbounds": [
{
"listen": "127.0.0.1",
"port": 1081,
"protocol": "wireguard",
"settings": {
"secretKey": "uJX4Xm3JmWzYpqIZFiKP+JlDXUpD39eqHJ1Bsn5R5nc=",
"peers": [
{
"publicKey": "Eq5K/cMuaVF7NucLpSqzxOQ+/iMFj1ZU2PpeJAscvic="
}
],
"noKernelTun": true,
"domainStrategy": "ForceIP"
}
}
],
"outbounds": [
{
"protocol": "freedom"
}
]
}server2 {
"log": { "loglevel": "debug" },
"inbounds": [
{
"listen": "127.0.0.1",
"port": 1082,
"protocol": "wireguard",
"settings": {
"secretKey": "SAN0qVVGxYONUCdJVPnA6gb0bFlmD9o35QA2Cvc2/VI=",
"peers": [
{
"publicKey": "Eq5K/cMuaVF7NucLpSqzxOQ+/iMFj1ZU2PpeJAscvic="
}
],
"noKernelTun": true,
"domainStrategy": "ForceIP"
}
}
],
"outbounds": [
{
"protocol": "freedom"
}
]
}test cmd #5555 还不清楚预期行为是啥, |
Member
|
应该就是 #5554 (comment) |
5 tasks
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
close #5601
测试配置
{ "log": { "loglevel": "debug" }, "inbounds": [ { "listen": "127.0.0.1", "port": 1080, "protocol": "socks", "settings": { "auth": "noauth", "udp": true } } ], "outbounds": [ { "protocol": "wireguard", "settings": { "secretKey": "YKjJrIBGR3QjDvhXSIK4ndxiyDgNOzTJOu8teRxHQGU=", "peers": [ { "endpoint": "", "publicKey": "ZaUsMjS5OeCRHLMAtp3rMDBVRYur622DRL71Bx9kjno=" } ], "noKernelTun": true, "domainStrategy": "ForceIPv4" } } ] }{ "log": { "loglevel": "debug" }, "inbounds": [ { // "listen": "127.0.0.1", "port": 1081, "protocol": "wireguard", "settings": { "secretKey": "uJX4Xm3JmWzYpqIZFiKP+JlDXUpD39eqHJ1Bsn5R5nc=", "peers": [ { "publicKey": "Eq5K/cMuaVF7NucLpSqzxOQ+/iMFj1ZU2PpeJAscvic=" } ], "noKernelTun": true, "domainStrategy": "ForceIP" } } ], "outbounds": [ { "protocol": "freedom" } ] }