- Create zones
zone security INSIDE
zone security OUTSIDE
- Map zones to interfaces
interface Serial1/0
zone-member security OUTSIDE
!
interface GigabitEthernet0/0
zone-member security INSIDE
!
- Create class-maps to classify inter-zone traffic
class-map type inspect match-any SERVERS
match protocol http
match protocol smtp
!
- Create policy-maps to filter inter-zone traffic
policy-map type inspect INBOUND_POLICY
class type inspect SERVERS
pass
!
policy-map type inspect OUTBOUND_POLICY
class-default
inspect
!
- Configure zone-pairs to apply policies to traffic
zone-pair security IN2OUT source INSIDE destination OUTSIDE
service-policy type inspect OUTBOUND_POLICY
!
zone-pair security OUT2IN source OUTSIDE destination INSIDE
service-policy type inspect INBOUND_POLICY
!
- Verify
show policy-map type inspect zone-pair
I like your style of this, its a very handy short quick reference. Just want I need to tick off the IOS IPS box on the R&S blueprint.