XrayR-doc/gong-neng-shuo-ming/zi-ding-yi-chu-kou-gong-neng-shuo-ming.md
2022-04-27 14:21:41 +10:00

30 lines
749 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 自定义出口功能说明
XrayR完整支持全部的Xray-core所提供的自定义出口功能具体启用方式如下
1. 编写 custom\_outbound.json文件此配置与Xray 出口配置完全相同,请查看:[https://xtls.github.io/config/outbound.html](https://xtls.github.io/config/outbound.html)获取帮助。
2.`config.yml`中配置`OutboundConfigPath`为custom\_outbound.json的路径。
### 自定义出口功能示例
```text
[
{
"tag": "IPv4_out",
"protocol": "freedom"
},
{
"tag": "IPv6_out",
"protocol": "freedom",
"settings": {
"domainStrategy": "UseIPv6"
}
},
{
"protocol": "blackhole",
"tag": "block"
}
]
```