about ban ip

Pain

Member
Feb 20, 2016
102
17
53
Hallo,

I wanted to ban a person's ip, but I did not want the person's name to appear on the ban list, I put the person's ip on the blacklist inside the teamspeak home folder, but it still gets to the server, is there any other way to do this without the ip appearing on the ban list?
Thanks
 

FarisDev

L oryh brx
Contributor
Jun 9, 2016
277
111
107
I think they changed his own IP Address.
I don't think there's other way to block him. because every time you blocked him they will change his IP Address.
 

walross99

Some random Guy
Jul 29, 2016
42
14
40
The Blacklist is for Query only, you can "ban" him using IP-Tables:
Use this to "ban":
Code:
sudo iptables -I INPUT -s (IP) -j DROP
and use this to "unban":
Code:
sudo iptables -D INPUT -s (IP) -j DROP
Leave out the brackets at the ip of cause
 
Top