Forwarded from Togo Fire
Use v2rayNG or v2raytun
In Settings (Traffic Settings):
Enable:
Allow connections from the LAN
Mode set to: Proxy Only
In AdGuard app:
Settings > Filtering > Network > Routing Mode > Automatic Proxy
In v2ray app set and save this json config:
After that, just plug and play. Everything's fine.
Note:
The "Per-app proxy" feature allows you to force AdGuard to use the local proxy of V2Ray, solving the compatibility problem between the two applications.
To this work need disable dns in AdGuard, and enable manual proxy in AdGuard.
Example: Gold V2ray app, Alpha V2ray.
In Settings (Traffic Settings):
Enable:
Allow connections from the LAN
Mode set to: Proxy Only
In AdGuard app:
Settings > Filtering > Network > Routing Mode > Automatic Proxy
In v2ray app set and save this json config:
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"tag": "inbound_proxy",
"listen": "127.0.0.1",
"port": 1081,
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true
}
}
],
"outbounds": [
{
"tag": "out_adguard",
"protocol": "socks",
"settings": {
"servers": [
{
"address": "127.0.0.1",
"port": 8080
}
]
}
},
{
"tag": "direct",
"protocol": "freedom"
}
],
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
"type": "field",
"outboundTag": "out_adguard",
"network": "tcp,udp"
},
{
"type": "field",
"outboundTag": "direct",
"domain": [
"domain-to-bypass-adguard.com"
]
}
]
}
}
After that, just plug and play. Everything's fine.
Note:
The "Per-app proxy" feature allows you to force AdGuard to use the local proxy of V2Ray, solving the compatibility problem between the two applications.
To this work need disable dns in AdGuard, and enable manual proxy in AdGuard.
Example: Gold V2ray app, Alpha V2ray.
I can help you create and manage Telegram bots. If you're new to the Bot API, please see the manual.
You can control me by sending these commands:
/newbot - create a new bot
/mybots - edit your bots
Edit Bots
/setname - change a bot's name
/setdescription - change bot description
/setabouttext - change bot about info
/setuserpic - change bot profile photo
/setcommands - change the list of commands
/deletebot - delete a bot
Bot Settings
/token - get authorization token
/revoke - revoke bot access token
/setinline - toggle inline mode
/setinlinegeo - toggle inline location requests
/setinlinefeedback - change inline feedback settings
/setjoingroups - can your bot be added to groups?
/setprivacy - toggle privacy mode in groups
Web Apps
/myapps - edit your web apps
/newapp - create a new web app
/listapps - get a list of your web apps
/editapp - edit a web app
/deleteapp - delete an existing web app
Games
/mygames - edit your games
/newgame - create a new game
/listgames - get a list of your games
/editgame - edit a game
/deletegame - delete an existing game
You can control me by sending these commands:
/newbot - create a new bot
/mybots - edit your bots
Edit Bots
/setname - change a bot's name
/setdescription - change bot description
/setabouttext - change bot about info
/setuserpic - change bot profile photo
/setcommands - change the list of commands
/deletebot - delete a bot
Bot Settings
/token - get authorization token
/revoke - revoke bot access token
/setinline - toggle inline mode
/setinlinegeo - toggle inline location requests
/setinlinefeedback - change inline feedback settings
/setjoingroups - can your bot be added to groups?
/setprivacy - toggle privacy mode in groups
Web Apps
/myapps - edit your web apps
/newapp - create a new web app
/listapps - get a list of your web apps
/editapp - edit a web app
/deleteapp - delete an existing web app
Games
/mygames - edit your games
/newgame - create a new game
/listgames - get a list of your games
/editgame - edit a game
/deletegame - delete an existing game
core.telegram.org
Bots: An introduction for developers
Bots are small applications that run entirely within the Telegram app. Users interact with bots through flexible interfaces…
❤1