csf.deny IP format

johannes

Verified User
Joined
Feb 18, 2007
Messages
882
As it is possible in .htaccess, to use IP4 format with only two first numbergroups, example:
35.83.
35.84.
35.85.
my question is if i can use this format also in csf.deny?
 
nope, it only CIDR format.
Code:
35.83.1.1/32 = 35.83.1.1
35.83.1.0/24 = 35.83.1.*
35.83.0.0/16 = 35.83.*.*
35.0.0.0/8 = 35.*.*.*

if you compare with subnetmask
Code:
/32 = 255.255.255.255
/24 = 255.255.255.0
/16 = 255.255.0.0
/8 = 255.0.0.0
 
Back
Top