How can i ban multiple ip-c classes? is there a short way instead of putting lots of lines like that i would like to ban this ip-c classes; x09.y5.128.0 - x09.y5.255.255
According to the apache manual, addresses can be specified as: So, in your case, it would be deny from x09.y5.128.0/255.255.128.0 which would ban x09.y5.128.0 - x09.y5.255.255 or, using the other format deny from x09.y5.128.0/17 both having the same affect.