I am facing a significant issue with my ISP. They have blocked access to almost everything except YouTube, Likee, TikTok, and Snapchat. To bypass these restrictions, I want to route all traffic through my OpenWrt router so that it appears as YouTube traffic to my ISP.
I’ve been using a temporary solution with V2Ray, but it’s not a permanent fix since the server I use only remains valid for 3 days, and I need to update it constantly. Here’s the V2Ray configuration I’ve been using:
{
"inbounds": [
{
"port": 1080,
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true,
"ip": "127.0.0.1"
}
}
],
"outbounds": [
{
"tag": "VMESS",
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "sg2-v2ray.ipracevpn.com",
"port": 2083,
"users": [
{
"id": "b1e734b8-36ce-4749-9941-c61aa181da23",
"alterId": 0,
"security": "auto",
"level": 8
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"allowInsecure": true,
"serverName": "http://cdn.snapchat.com"
}
},
"mux": {
"enabled": false
}
}
],
"policy": {
"levels": {
"8": {
"connIdle": 300,
"uplinkOnly": 1,
"downlinkOnly": 1,
"handshake": 4
}
}
}
}
While this works temporarily, constantly changing the server is frustrating.
What I’m Looking For:
- A permanent solution where all traffic (HTTP/HTTPS, including apps and websites) can appear as YouTube traffic.
- OpenWrt configuration scripts or packages that could help achieve this goal.
- Any advice on setting up a local or self-hosted V2Ray or alternative proxy server that can mimic YouTube traffic.
I believe there might be a way to utilize DNS manipulation, HTTPS spoofing, or some advanced tunneling to achieve this, but I need guidance from the experts here.
If anyone has experience dealing with such restrictions or knows how to configure OpenWrt to handle this kind of traffic routing, please share your insights.
Thanks in advance for your help!