Closed mozi1924 closed 3 days ago
根据 https://github.com/openwrt/luci/blob/63d8b79c79ed90bbb967483addd9e5fca350932d/applications/luci-app-natmap/htdocs/luci-static/resources/view/natmap.js#L83
我询问了gpt
在这个 OpenWRT LuCI 代码中,stun_server 字段的 datatype 设置为 host,这意味着它只能接受主机名或 IP 地址,而不支持自定义端口。如果你需要使用带端口的服务器(如 turn.cloud-rtc.com:80),可以尝试修改 datatype 为 string,这样就能接受完整的地址格式,但请确保后端处理能够正确解析端口信息。你可以考虑在服务端逻辑中进行额外的解析。
根据 https://github.com/openwrt/luci/blob/63d8b79c79ed90bbb967483addd9e5fca350932d/applications/luci-app-natmap/htdocs/luci-static/resources/view/natmap.js#L83
我询问了gpt
在这个 OpenWRT LuCI 代码中,stun_server 字段的 datatype 设置为 host,这意味着它只能接受主机名或 IP 地址,而不支持自定义端口。如果你需要使用带端口的服务器(如 turn.cloud-rtc.com:80),可以尝试修改 datatype 为 string,这样就能接受完整的地址格式,但请确保后端处理能够正确解析端口信息。你可以考虑在服务端逻辑中进行额外的解析。