Xray Configuration Best Practice
Background and History
In China, due to Great Firewall, proxy is a required for developers.
Here are some requirements for proxy software:
- Flexible. sometimes all netflow need to be proxied, sometimes just need to proxy oversea netflow.
- Run everywhere. It needs to run at macOS, Windows, Linux, Android, OpenWRT.
- Proxy protocols. It should support encryped proxy protocol, obfuscated, and should support obfuscate as websocket.
Here are some of the agent software in history, ordered by time:
- etageerF. At the time, I just using Windows, the standalone browser by etageerF is a good fit for me. I was just use it to visit some website.
- GoAgent. I was using Firefox, so deploy GoAgent over GAE. But GoAgent is built over web, is not a real proxy, so have to add a fake cert.
- shadowsocks(Python version). bought a VPS, deploying a real proxy, which provide proxy over a socks port.
- shadowsocks-libev. For use on Android, start using shadowsocks client.
- shadowsocks+simple-obfs. Later, found that shadowsocks protocol was too badly banned, so start use
shadowsocks/simple-obfs
. Of course, during the configuration process, it was also noted that CloudFlare can proxy the websocket protocol, so this CloudFlare was added.- Proxy flow is masqueraded as websocket netflow, which is not easily recognized.
- Websocket netflow is also could forward by CloudFlare, for some VPS with bad net route with china, there is a certain improvement for speed and latency.
- Also, VPS’s real IP is hidden. So real IP is not banned easily.
- clash. shadowsocks has almost no traffic splitting/routing capabilities. Either all traffic goes through the proxy, or the traffic splitting ability is achieved through browser extensions.
Clash is still quite good. It can set forwarding rules according to IP addresses and domain names, and it can run on OpenWRT. There is also a wide range of client support.
However, the routing ability of Clash is not flexible enough. The main problem is that it doesn’t have a relatively clear “routing chain”.
For example, for the traffic from port 27890, all of it should go through the proxy. And for the traffic from port 17890, the overseas traffic should go through the proxy while the domestic traffic should be directly connected. Such a configuration is difficult to achieve through Clash.
Speaking of which, isn’t it somewhat similar to iptables?
Iptables forwards traffic based on the source address, destination address, and kernel markings of IP packets.
What we need is to forward traffic according to IP addresses, ports, and traffic domain names.
- V2Ray can meet these requirements very well.
- Xray. As I discovered some bugs in V2Ray and noticed that the V2Ray community wasn’t very active, while the Xray community seemed quite vibrant, I decided to switch to Xray.
And there might be some better proxy software, why don’t using xxx software?
Well, what will replace Xray definitely won’t be another Xray. I think the next proxy software has additional capabilty, such as 2x faster, mesh-network.
Xray’s config logic
Here is a brief introduction to the logic of Xray configuration:
- Define inbound rules for traffic reception
- SOCKS traffic inbound: It is most suitable as the proxy for browsers.
- HTTP traffic inbound: Some tools do not support the SOCKS5 proxy protocol and will use the HTTP proxy protocol instead.
- Dokodemo-door: It can be used as a transparent proxy. The traffic from the entire LAN exit can be redirected here and then forwarded through the proxy.
- Define outbound rules as traffic exits
- Some outbounds forward traffic directly, some use a secondary proxy, and some simply drop the traffic.
- Define routing rules for traffic forwarding
The logic of this part is as follows:- Direct connection for specific domains: Domains that require direct connection, such as mainland Chinese domains and the domains of underlying proxies, are sent directly.
- Direct connection for specific IPs: IPs that need direct connection, like mainland Chinese IP addresses and internal network domains, follow the “direct” logic.
- Proxy for remaining traffic: The remaining traffic is sent through the proxy.
- Define DNS functions
- Non-Chinese domains: For non-Chinese domains, queries are made through Google Public DNS via the proxy.
- Chinese domains and whitelisted domain: For Chinese domains or some whitelisted domain, such as company - internal domains, queries are made directly within the internal network.
Xray config example
Xray-server
Just receive the proxy traffic disguised as the WebSocket protocol and then forward it.
1 |
|
Nginx config
In order to better obfuscate the traffic, you can choose to set up both a proxy and a website on the same domain name. For proxy traffic, Nginx needs to parse the WSS traffic into WS traffic and forward it to the Xray server.
1 |
|
Xray-client config
Xray-client will start http&socks proxy. Browser need to set up proxy, such as set proxy of Chrome as socks5://127.0.0.1:17891
.
1 |
|
Xray-router config
For Xray runs on client, router will pass all traffic to xray via tproxy, the proxy protocol is dokodemo-door
.
The special point here is that if the traffic is on port 53, it should be treated as DNS traffic and forwarded to the DNS module. Other traffic can be processed according to the original path.
1 |
|