Configuring player information forwarding
Velocity supports forwarding information about your players to your servers, such as IP addresses, UUIDs and skins. Velocity supports three forwarding formats:
- Velocity modern forwarding is a custom forwarding format (modern forwarding) that is more secure.
- BungeeCord forwarding (also known as legacy forwarding) which has better compatibility but is less secure.
- BungeeGuard, which is the same as BungeeCord forwarding but includes a secret key. It is better than BungeeCord forwarding alone, but it is less ideal than Velocity modern forwarding.
Configuring modern forwarding
modern
forwarding is a Velocity-native format. It forwards all player information in an efficient binary format and employs a MAC code to make it much more difficult to trick the server into impersonating your Velocity proxy. However, it is only available for Minecraft 1.13 or higher.
To use modern forwarding with any supported server implementation, set the player-info-forwarding
setting in velocity.toml
to modern
. Then, you need to ensure your server is properly configured to use Velocity forwarding.
Configuring modern forwarding for Paper
Paper 1.14+ and above, along with Paper 1.13.1/1.13.2 build 377 and above support Velocity modern forwarding natively.
First, you need to disable BungeeCord forwarding if you had it enabled beforehand. Make sure settings.bungeecord
is set to false
in your spigot.yml
.
In paper.yml
, set settings.velocity-support.enabled
to true and settings.velocity-support.secret
to match the secret in your velocity.toml
. You must also set settings.velocity-support.online-mode
to the online-mode
setting in your velocity.toml
. Once you're done editing paper.yml
, reboot your server.
Configuring modern forwarding for Fabric
A mod called FabricProxy-Lite allows you to use Velocity modern forwarding with a modded server using Fabric.
Configuring legacy BungeeCord-compatible forwarding
legacy
forwarding is the player information forwarding protocol that is used by BungeeCord when enabling IP forwarding from BungeeCord. Due to this, it is ubiquitous and well-supported by most server implementations. It has excellent compatibility (supporting versions as old as 1.7.2, released in 2013) and will work with Forge if you also install SpongeForge on your modded server and configure it correctly. However, it is not secure.
If you must use BungeeCord-compatible forwarding, simply set your player-info-forwarding
setting in velocity.toml
to legacy
. You will also need to make sure your server can accept the forwarded player data sent by Velocity.
To add some security, particularly for proxies hosted on shared hosting, Velocity optionally supports the BungeeGuard plugin. To use it, set the player-info-forwarding
setting in velocity.toml
to bungeeguard
, then add the value in forwarding-secret
to the token section in the BungeeGuard configuration.
Configuring legacy forwarding for Spigot / Paper
To make Spigot or Paper understand the data forwarded from Velocity, set settings.bungeecord
to true
in your spigot.yml
and then reboot your server.
Configuring legacy forwarding for Sponge
To configure Sponge to understand the data forwarded from Velocity, you will need to stop the server first, set modules.bungeecord
to true
and bungeecord.ip-forwarding
to true in your config/sponge/global.conf
file, and then restart your Sponge server.