xray节点配置里不支持raw(原tcp)选项配置
Welcome
- [X] Yes, I'm using the latest major release. Only such installations are supported.
- [X] Yes, I'm using the supported system. Only such systems are supported.
- [X] Yes, I have read all WIKI document,nothing can help me in my problem.
- [X] Yes, I've searched similar issues on GitHub and didn't find any.
- [X] Yes, I've included all information below (version, config, log, etc).
Description of the problem,screencshot would be good
xray核心StreamSettingsObject的network字段配置tcp变成了raw,但面板目前无法配置 https://xtls.github.io/config/transport.html#streamsettingsobject
Version of xray-ui
24.11.15
xray-ui log reports or xray log
那个是传输协议 raw是配置设置 现在已经是raw了你可以配置一个看看配置文件。
那个是传输协议 raw是配置设置 现在已经是raw了你可以配置一个看看配置文件。
配了,一个是ui没有raw只有tcp选项,选tcp新建一个入站配出来的配置文件network字段还是tcp没有raw,只不过把tcpSettings改成了rawSettings
生成的配置是:
"streamSettings": {
"network": "tcp",
"security": "none",
"rawSettings": {
"header": {
"type": "none"
}
}
}
``` 有问题么。
"network": "tcp",
v24.9.30 版本后,为了更贴近实际行为,tcp传输方式已更名为raw, 为了兼容性,"network": "raw" 和 "network": "tcp", rawSettings和tcpSettings 互为别名 这个没区别把。两个都一样的。
生成的配置是:
"streamSettings": { "network": "tcp", "security": "none", "rawSettings": { "header": { "type": "none" } } } ``` 有问题么。
是不是应该是”network":"raw", psw那边有问题,xray内部好像是说这两个等同,但psw一升级后,如果客户端是raw,server端这个字段是tcp好像就会有问题,不通,只是想保持一致会不会能定位问题和规范一点。
那我还真没注意这个
xray 版本要新版本才支持的。我添加上去了你测试看看把