mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-17 20:54:36 +03:00
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"type": "tun",
|
||||
"tag": "tun-in",
|
||||
"tag": "tun",
|
||||
"interface_name": "singbox_tun",
|
||||
"address": [
|
||||
"172.18.0.1/30",
|
||||
|
||||
@@ -87,8 +87,14 @@ public partial class CoreConfigSingboxService
|
||||
});
|
||||
_coreConfig.route.rules.Add(new()
|
||||
{
|
||||
protocol = ["dns"],
|
||||
action = "hijack-dns"
|
||||
type = "logical",
|
||||
mode = "or",
|
||||
action = "hijack-dns",
|
||||
rules =
|
||||
[
|
||||
new() { port = [53] },
|
||||
new() { protocol = ["dns"] },
|
||||
],
|
||||
});
|
||||
}
|
||||
else
|
||||
@@ -96,7 +102,7 @@ public partial class CoreConfigSingboxService
|
||||
_coreConfig.route.rules.Add(new()
|
||||
{
|
||||
port = [53],
|
||||
action = "hijack-dns"
|
||||
action = "hijack-dns",
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -27,6 +27,7 @@ public partial class CoreConfigV2rayService
|
||||
});
|
||||
_coreConfig.routing.rules.Add(new()
|
||||
{
|
||||
inboundTag = ["tun"],
|
||||
port = "53",
|
||||
outboundTag = Global.DnsOutboundTag,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user