I
I
iamdivine2018-10-30 18:59:44
Debian
iamdivine, 2018-10-30 18:59:44

How to secure the UDP port of a game server?

Good evening sirs. There is a game server, DDoS protection is good, but the game server is attacked at the application level, UDP port. They flood in packets and you can’t connect to it, but the players are not knocked out. How to be?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vladimir, 2018-10-30
@MechanID

set a rate limit in iptables, something like:
iptables -I INPUT -p udp -i eth0 --dport $portnumber -m state --state NEW -m recent --update --seconds 60 --hitcount 10 -j
DROP calculate the rate of an ordinary player in order to set the threshold twice as high, you can select by making a chain with -j ACCEPT for some known ip of an ordinary player and using iptables -vnL to look at the packet counter in this rule.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question