A minecraft reverse proxy server with server address rewrite.
Supports Minecraft Servers and Clients with version 12w04a or later. (Basically means release 1.2.1 and later.)
Minecraft Versions before 12w04a are NOT SUPPORTED!
- Support reverse proxy for Minecraft servers by server address in the handshake packet which client send to.
- Support rewrite server address and server port to camouflage connection which using official server address. (eg: pretend to be a normal connection to Hypixel, avoiding their server address check.)
- Support IP forwarding using HAProxy's Proxy Protocol. (But refuses any incoming connection using this protocol.)
- Linux
- libresolv.so (usually pre-installed)
- libcjson.so (on debian-like systems, contained in package "libcjson1")
Due to Minecraft Handshake restrictions, this server supports:
- Game relay on server & client with version 12w04a and later, except version 12w17a, 13w41a and 13w41b.
- MOTD relay / MOTD status notice on server & client with version 1.6.1 and later, except version 13w41a and 13w41b.
- CMakeLists.txt: CMake configuration for compiling
- doc: Folder of documents
- doc/loglevel.info: Definations of log levels
- doc/versions.json: Version manifest
- examples: File templates
- examples/config: Folder of example configurations
- examples/systemd: Folder of example systemd service files
- src: Folder of source codes
Before compiling, you need to install cJSON at first.
For example, you can install it on a debian-like systems by apt install libcjson-dev
.
Then you can use CMake to compile it, by following:
mkdir build cd build cmake .. make
Additionally, if you want cross compiling, following CMake properties will helpful:
-DCMAKE_C_COMPILER
: Specify an alternative compiler, CMake usingcc
by default.-DEXEC_SUFFIX
: Add a suffix to the final binary file, the file will generated calledmcrelay
.
mcrelay < arguments | config_file >
The program will run as a non-exit-style program by default.
When using "-f" or "--forking" option, the program will become daemonized, and store its main process' PID into /tmp/mcrelay.pid.
See "examples/config/config.json" for instructions.
If you are using a SRV record to provide your service, you should follow the instructions below.
Otherwise, your user will see the message of using a wrong address to connect.
For example, your SRV record should be like this:
_minecraft._tcp.srvrecord.example.com. => PRIVORITY WEIGHT PORT host.example.com
If you provide "srvrecord.example.com" to your user, you should set your vhostname in the configuration file as follow:
- For most Minecraft versions, use "host.example.com".
- For Minecraft version from 21w20a to 1.17, use "srvrecord.example.com".
For compatibility, it's recommended to add both of them to your configuration.
You can provide the real client address and port through HAProxy's Proxy Protocol by this feature.
It's compatible with any server which support this protocol. (e.g. Bungeecord)
To use this feature correctly, turn on the "proxy_protocol" in the "config.yml". ("false" to "true")