Skip to content
Arne de Bruijn edited this page Sep 26, 2019 · 1 revision

Troubleshooting

  • Check the Overload server log in ~/.config/unity3d/Revival/Overload/Player.log

  • Use olproxy -v to show the broadcast addresses

  • If the only interface has netmask 255.255.255.255 the broadcast communication between olproxy and Overload server won't work. On linux you can add an extra local dummy interface for the broadcast communication with the commands:

ip link add dummy0 type dummy
ip addr add 10.0.99.1/24 dev dummy0
ip link set dummy0 up state up

Then if you run olproxy -v it should show the new 10.0.99.255 broadcast address.

Clone this wiki locally