Posts: 228
Threads: 25
Joined: Jan 2015
Reputation:
0
Anyone know if there's a way to block people using a VPN Or a Proxy...
So if PlayerX Is using a VPN Or Proxy -- The server doesn't let them connect..
Example
OnPlayerConnect(playerid) {
If they have a proxy or vpn
It kicks them
Posts: 2,137
Threads: 37
Joined: Oct 2012
Reputation:
0
The best way for me to ban a VPN IP is to ban them all the time they are joining.
Just collect all the VPN IPs they are joining with and then RCON-BAN their IPs.
About proxy i dont think you can block Proxies.
Posts: 228
Threads: 25
Joined: Jan 2015
Reputation:
0
Yea, I keep banning the same person over n over n over n over n over...
It just gets tiresom
Posts: 10,066
Threads: 38
Joined: Sep 2007
Reputation:
0
Use a GeoIP database. I use GeoLite from MaxMind (imported into MySQL). It contains CIDR IP ranges and their associated country. You can just outright ban any IP with country code 'A1', which stands for Anonymous Proxy. Some, but by no means all, VPN services also fall into this category. The ones that aren't in A1 will need to be manually blocked. You can use the CIDR range thread that's sticked in the Server Support section as a guideline.