Build Cisco IOS and iptables access control rules visually. Add permit/deny entries and copy the ready-to-paste config.
| Action | Protocol | Source | Destination | Port | |
|---|---|---|---|---|---|
| 10.0.0.0 0.255.255.255 | |||||
| 10.0.0.0 0.255.255.255 | |||||
ip access-list extended OUTSIDE_IN permit tcp 10.0.0.0 0.255.255.255 any eq 443 permit tcp 10.0.0.0 0.255.255.255 any eq 80 deny ip any any
ACL Generator builds Cisco IOS extended access control lists and iptables firewall rules from a visual rule table. Add permit and deny entries with protocol, source IP, destination IP, and port -the tool generates the correct syntax for your chosen platform instantly. Use wildcard masks for Cisco IOS (e.g. 10.0.0.0 0.0.0.255 for /24) and CIDR notation for iptables. Rule order matters -entries are matched top to bottom, so place more specific rules before general ones.