-
Notifications
You must be signed in to change notification settings - Fork 33
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
Docs && Advanced Features #6
Comments
[DNS] Fake DNS |
[DNS] DNS over HTTPS (with Local DNS) // DoH server
dns: {
servers: [
{ address: "https://dns.google/dns-query" }
]
}
// dns outbound
{
tag: "dns",
"protocol": "dns",
"settings": {
"address": "8.8.8.8", // follow your preference
"port": 53, // defined with dns address above
"network": "udp", // change to "tcp" if udp-disallowed server
"proxySettings": {
"tag": "proxy"
}
}
// proxy outbound
{
tag: "proxy",
...
}
// routing
"ip": [
"8.8.8.8" // if follow your remote dns ip // Kitsunebi Rewrite does Google dns forced
],
"port": "53", // port 53 only, as do not change this
"network": "udp", // do not receive tcp
"type": "field",
"outboundTag": "dns"
} |
[DNS] UDP over TCP (with Local DNS) // dns server
dns: {
servers: [
{ address: "8.8.8.8" }
]
}
// dns outbound
{
tag: "dns",
"protocol": "dns",
"settings": {
"address": "8.8.8.8", // follow your preference
"port": 53, // defined with dns address above
"network": "tcp", // over TCP
"proxySettings": {
"tag": "proxy"
}
}
// proxy outbound
{
tag: "proxy",
...
}
// routing
"ip": [
"8.8.8.8" // if follow your remote dns ip // Kitsunebi Rewrite does Google dns forced
],
"port": "53", // port 53 only, as do not change this
"network": "udp", // do not receive tcp
"type": "field",
"outboundTag": "dns"
} |
[DNS] what is Local DNS? // routing
"ip": [
"8.8.8.8" // if follow your remote dns ip // Kitsunebi Rewrite does Google dns forced
],
"port": "53", // port 53 only, as do not change this
"network": "udp", // do not receive tcp
"type": "field",
"outboundTag": ... // do your controller
} |
[DNS] DNS Transport over TCP (aka. DNS Fallback) v2fly/v2ray-core#415
preview is available at releases. |
Here lists all of advanced features could be done.
Below all of committed by custom configuration of v2ray-core.
Configuration Docs:
The text was updated successfully, but these errors were encountered: