Zodiac : Mesaje : 285 Data de inscriere : 21/07/2012 Varsta : 27 Localizare : Falticeni
Subiect: PLUGIN - Banarea celor cu IP dinamic ! Joi Iul 26, 2012 5:45 am
Ban Mac - solutie de banare a celor cu ip dinamic
din cate am inteles, cei care au servere de caounter hostate pe linux pot da ban la mac-ul playerilor . si din cate stiu serverul vostru este pe linux. singura setare este aceea de filtrare a mac-ului din firewall-ul de la linux ....
Firewall with iptables using mac address filtering There are times when you might need to filter the traffic on your firewall using MAC addresses instead of IP addresses, iptables has the option to do it. From the man page of iptables: Note that this only makes sense for packets coming from an Ethernet device and entering the PREROUTING, FORWARD or INPUT chains. You may want to insert this line in you firewall script. iptables -A INPUT -m mac --mac-source 00:11:2f:8f:f8:f8 -j DROP This way the packets comming from the network element with the MAC address 00:11:2f:8f:f8:f8 will be denied. That is if you want to block the incoming packets to the firewall, but the blocked machine may still be able to send packets across the firewall, so to block those packets, you may want to add also this line.
iptables -A FORWARD -m mac --mac-source 00:11:2f:8f:f8:f8 -j DROP