How can I increase network bandwidth limit?

You can tweak the following values of the GameNetworkManager to adjust the bandwidth better to your game:

[/Script/Engine.GameNetworkManager]
TotalNetBandwidth=32000
MaxDynamicBandwidth=7000
MinDynamicBandwidth=4000

Just add it to your DefaultEngine.ini file of your game. Let us go through what those values actually mean.

  • TotalNetBandwidth: Total available bandwidth between all connections
  • Min/MaxDynamicBandwidth: Min and max per connection
1 Like