有时会遇到多IP服务器,这个时候俺们可以通过配置v2ray来指定出口IP,很简单,下面是一个wss简单配置,指定出口IP:
{
"inbounds": [
{
"port": 8080,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "1613660c-5ca6-4955-ac9a-0c4b86a00fae"
}
]
},
"streamSettings": {
"network": "ws",
"wsSettings": {
"path": "/v2path"
}
}
}
],
"outbounds": [
{
"sendThrough": "1.2.3.4",
"protocol": "freedom",
"settings": {}
}
]
}