FORMAT | SAMPLE OUTPUT |
Apache .htaccess Deny | deny from 8.8.8.0/24 |
Apache .htaccess Allow | allow from 8.8.8.0/24 |
CIDR | 8.8.8.0/24 |
Cisco ACL | deny ip 8.8.8.0 0.0.0.255 any |
Cisco bit bucket | ip route 8.8.8.0 255.255.255.0 Null0 |
Decimal/CIDR | 134744064/24 |
Inverse Netmask | 8.8.8.0 0.0.0.255 |
JSON Allow | {"ipAddress": "8.8.8.0/24","action": "Allow","tag": "Default","priority": 100,"name": "allowed access"} |
JSON Deny | {"ipAddress": "8.8.8.0/24","action": "Deny","tag": "Default","priority": 100,"name": "denied access"} |
Juniper Junos | 8.8.8.0 0.0.0.255 |
Linux iptables | iptables -A INPUT -s 8.8.8.8/24 -j DROP |
MicroTik | add address=8.8.8.0/24 comment="unsafe" list=Mysecurity |
Netmask | 8.8.8.0/255.255.255.0 |
network-object | network-object 8.8.8.0 255.255.255.0 |
PeerGuardian2 | HOST:8.8.8.0-8.255.255.255 |
Web.config allow | < ipSecurity allowUnlisted="false"><add ipAddress="8.8.8.0" subnetMask="255.255.255.0"/> |
Web.config deny | <ipSecurity allowUnlisted="true"><add ipAddress="8.8.8.0" subnetMask="255.255.255.0"/> |
Custom CIDR | XXX 8.8.8.0/28 ZZZ |
Custom Netmask | XXX 8.8.8.0/255.255.255.0 YYY |