Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V2RAY是否支持把DNS解析转发到服务器,由服务器解析以后把结果发回来? #286

Open
chainofhonor opened this issue Jul 16, 2023 · 1 comment
Labels
enhancement New feature or request

Comments

@chainofhonor
Copy link

比如V2RAY监听5353端口
然后把dnsmasq的上游服务器设置为127.0.0.1#5353

类似于trojan里面的forward模式

这个需求是因为我总感觉移动的dns有问题,经常卡一下
我就想把DNS解析发送到国内的云服务器上,用云服务器解析应该就不会这样莫名的卡了

请问v2ray有这样的功能吗 配置文件要怎么写?

@chainofhonor chainofhonor added the enhancement New feature or request label Jul 16, 2023
@rp-hello
Copy link

你好,可以实现的。
我这边没有类似的环境,可以说一下思路

  1. 如何让dns走v2ray
    1. 可以通过tproxy来劫持所有的dns请求(在路由器上这样做比较方便)
    2. 也可以像你说的,将dnsmasq的上游设置为127.0.0.1#5353
  2. v2ray如何代理dns协议
    1. 加一个inbound,监听5353端口
    2. 这个inbound的流量全部转发到proxy outbound上(类似v2ray将所有的5353端口流量转发到proxy上,不对内容做解析)
    3. 或者,如果你需要dns分流的话,将这个inbound的流量转发到任意一个dns协议的outbound上,然后经过dns分流查询

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants