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.
클라이언트가 인터넷에 액세스할 수 없습니다.
그렇다면 무엇이 문제이고 어떻게 해결해야 할까요?