• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved How to block IPS

Bug

New Member
Joined
Jan 7, 2011
Messages
111
Reaction score
1
I know how to block an ip using ip tables, but what i want to do is to block 80.108.148.0 - 80.109.127.255 Hostmaster Chello Broadband from Austria.
 
Last edited:
Code:
iptables -A INPUT -s 80.108.148.0 -j DROP >>>>> to block one ip
iptables -I INPUT -s 80.108.148.0/255.255.0.0 -j DROP >>>>> to block range
 
Back
Top