Hello, The only way is to buy a vps having DDoS protection. If you have a vps without DDoS protection is not possible to protect without any additional hardware.
Try, www.digital-hosting.biz Have good ddos protection for ts3 OVH GAME cheap vps good luck
How Do I Protect My TeamSpeak Server From DDoS Attacks?
I'm getting attacked by DDOS on my TS3 server.
My server version is 3.0.13.6 on Linux
Do you have any general advices how can i deal with DDOS attacks? I use ubuntu 16.04, aws amazon
run a tcpdump during attack and save it as pcap file and open it with wireshark.
From there you can investigate which port is being attacked, who is attacking, and what kind of attack it is.
Easiest (and most CPU intensive) way is to block the attack by hex if the packets are all same..
For example one of my rules:
iptables -A PREROUTING -t raw -p udp --dport 9987 -m string --hex-string '|fa163eb402096ac8|' --algo kmp -j DROP
You can see that I had no other choice to block by hex since the attack is coming to port 9987. If it was coming to the port 5555 for example, I could just drop all traffic related to that port and not worry about the hex filtering taking up my CPU core to 80%. Even better way is to block the attack on network level using control panel of your hosting provider.
This is not necessary to be done with modern protection systems...
@ikfes Can you please make a tutorial how to run TCP dump? , And save it as pcap? I do not know. I search on google, no results
@ikfes Can you please make a tutorial how to run TCP dump? , And save it as pcap? I do not know. I search on google, no results
The solution for me is having many ips , so you can blackhole the current being ddosed. You must force the client to use the doman to connect. then having mnay ip there just a few users that cant join, they just retry to get another working ip.
Yes but, you must discover all the ip first. He can't know how many I got.You can simply write a script to attack all the IPs at once... :/
Yes but, you must discover all the ip first. He can't know how many I got.
its like another step that the attacker must do.
tsdns got nothing to do, because I point to a hostname with many A records, the dns answer with up to 10 ip.
I know it can be ddosed, but at least you get protected against script kiddies using a paid botnet
There is no protection 100% effective.