本帖最後由 mankowk 於 2019-5-9 18:47 編輯
小弟簡單咁加左個 mkcp 入去個 inbounds 度,
之後在香港試, 手機whatsapp 語音通話 去 人地個手機whatsapp度..
1. 手機用 v2rayNG, [手動鍵入(Vmess)]後, whatsapp語音通話 正常使用.
2. 手機用 BifrostV [手動設置(Vmess)]後, whatsapp語音通話 不能聽到對方說話等問題.
3. 手機用 BifrostV [import下面既 client side config.json]後, whatsapp語音通話 同樣是不能聽到對方說話等問題.
原諒我只想用 BifrostV, 因為可以寫定晒個 config.json, 然後 import from url入去, 極之方便.
睇黎個問題是在 BifrostV度...- v2ray Server Side config.json
- {
- "inbounds": [
- {
- "port": 10009,
- "protocol": "vmess",
- "settings": {
- "clients": [
- {
- "id": "59xxx0b6-bxx0-8xx6-9xxb-8cxxe27dxx0e",
- "level": 1,
- "alterId": 64
- }
- ]
- },
- "streamSettings": {
- "network": "mkcp",
- "kcpSettings": {
- "uplinkCapacity": 5,
- "downlinkCapacity": 100,
- "congestion": true,
- "header": {
- "type": "none"
- }
- }
- }
- }
- ],
- "outbounds": [
- {
- "protocol": "freedom",
- "settings": {},
- "tag": "direct"
- },
- {
- "protocol": "blackhole",
- "settings": {},
- "tag": "blocked"
- }
- ],
- "routing": {
- "domainStrategy": "IPIfNonMatch",
- "rules": [
- {
- "type": "field",
- "ip": [
- "geoip:private"
- ],
- "outboundTag": "blocked"
- }
- ]
- }
- }
複製代碼- v2ray Client Side config.json
- {
- "inbounds": [
- {
- "port": 1080,
- "listen": "127.0.0.1",
- "protocol": "socks",
- "settings": {
- "auth": "noauth"
- }
- }
- ],
- "outbounds": [
- {
- "protocol": "vmess",
- "settings": {
- "vnext": [
- {
- "address": "abc.com",
- "port": 10009,
- "users": [
- {
- "id": "59xxx0b6-bxx0-8xx6-9xxb-8cxxe27dxx0e",
- "alterId": 64,
- "level": 1
- }
- ]
- }
- ]
- },
- "streamSettings": {
- "network": "mkcp",
- "kcpSettings": {
- "uplinkCapacity": 5,
- "downlinkCapacity": 100,
- "congestion": true,
- "header": {
- "type": "none"
- }
- }
- },
- "mux": {
- "enabled": true,
- "concurrency": 8
- }
- },
- {
- "protocol": "freedom",
- "settings": {},
- "tag": "direct"
- },
- {
- "protocol": "blackhole",
- "settings": {},
- "tag": "blocked"
- }
- ],
- "dns": {
- "servers": [
- "8.8.8.8",
- "1.1.1.1",
- "114.114.114.114",
- "8.8.4.4",
- "localhost"
- ]
- },
- "routing": {
- "domainStrategy": "IPIfNonMatch",
- "rules": [
- {
- "type": "field",
- "domain": [
- "geosite:cn"
- ],
- "outboundTag": "direct"
- },
- {
- "type": "field",
- "ip": [
- "geoip:cn",
- "geoip:private"
- ],
- "outboundTag": "direct"
- }
- ]
- }
- }
複製代碼 |