OpenBSD VPSにXTLS Xrayサーバー(バージョン1.8.3)を設定しようとしています。 CAによって発行された証明書を使用せずにxray tls cert
サーバーの匿名性を維持するために生成された証明書を使用しています。
サーバー構成は次のとおりです。
{
"log": {
"loglevel": "warning"
},
"dns": {
"servers": [
"<dns server address>"
]
},
"inbounds": [
{
"listen": "0.0.0.0",
"port": 1234,
"protocol": "vless",
"settings": {
"clients": [
{
"id": "<client id>",
"level": 0,
"email": "[email protected]",
"flow": "xtls-rprx-vision"
}
],
"decryption": "none"
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"serverName": "<server ip>",
"alpn": [
"h2",
"http/1.1"
],
"certificates": [
{
"certificate": [
<certificate>
],
"key": [
<key>
]
}
]
}
}
}
],
"outbounds": [
{
"protocol": "freedom",
"tag": "direct"
}
]
}
クライアント構成は次のとおりです。
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true,
"ip": "127.0.0.1"
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "<server ip address>,
"port": 1234,
"users": [
{
"id": "<client id>",
"encryption": "none",
"level": 0,
"flow": "xtls-rprx-vision"
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"serverName": "<server ip address>",
"allowInsecure": true,
"fingerprint": "chrome"
}
},
"tag": "proxy"
}
],
"routing": {
"domainStrategy": "AsIs"
}
}
サーバー側に次のエラーが表示され、connection ends > proxy/vless/inbound: id is not able to use "". Note that the pure TLS proxy has certain TLS in TLS characters.
クライアントはインターネットにアクセスできません。
それでは、何が問題であり、どのように解決するのですか?