A re-introduction to Cisco Zone Based Firewalls
After a few years without having to think about it, I decided to dip my toe back into the murky waters of Zone Based Firewalls recently. Luckily, I'd written enough notes and comments in my previous configs that only a small amount of searching and reading was needed before I got back up to speed. In that vein, here's a very basic starter ZBF config (for when I forget again in six months *derp*)... Create an ACL to hold any firewall exceptions: ip access-list extended aclFirewallExceptions permit tcp any any eq 56881 permit tcp any any eq 10022 Then, add the ACL to a Class Map: class-map type inspect match-any cmFirewallExceptions match access-group name aclFirewallExceptions After that, the Class Map is added to a Policy Map: policy-map type inspect pmWanToLan class type inspect cmFirewallExceptions inspect class class-default drop The policy map is then applied to the relevant Zone Pair: zone-pair security zpWanToLan source WAN de...